Remove Treble violations. Bug: 36867326 Bug: 62387246 Test: loaded on taimen, checked dmesg, and tested daemon with magnet Change-Id: I4662b41206b94cae6ac9843b5dc7e1452003c63c
22 lines
404 B
Makefile
Executable file
22 lines
404 B
Makefile
Executable file
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libandroid \
|
|
libcutils \
|
|
liblog
|
|
|
|
LOCAL_SRC_FILES := \
|
|
main.cpp
|
|
|
|
LOCAL_C_INCLUDES :=
|
|
|
|
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"folio_daemon\" -DLOG_NDEBUG=0
|
|
|
|
LOCAL_CFLAGS += -Wall -Werror
|
|
|
|
LOCAL_MODULE := folio_daemon
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_OWNER := google
|
|
|
|
include $(BUILD_EXECUTABLE)
|