0d3bf4beac
This is causing more harm than good. We'll just make these all link
libc++ again and work out the CTS issues if they still exist.
Bug: 19778891
This reverts commit 3812cf58cb
.
Change-Id: Iaea8f6acb147da4275633a760ccb32951db7f8b6
49 lines
No EOL
1.2 KiB
Makefile
49 lines
No EOL
1.2 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := checkseapp
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := external/libsepol/include/
|
|
LOCAL_CFLAGS := -DLINK_SEPOL_STATIC -Wall -Werror
|
|
LOCAL_SRC_FILES := check_seapp.c
|
|
LOCAL_STATIC_LIBRARIES := libsepol
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
###################################
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := checkfc
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := external/libsepol/include \
|
|
external/libselinux/include
|
|
LOCAL_CFLAGS := -Wall -Werror
|
|
LOCAL_SRC_FILES := checkfc.c
|
|
LOCAL_STATIC_LIBRARIES := libsepol libselinux
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
##################################
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := insertkeys.py
|
|
LOCAL_SRC_FILES := insertkeys.py
|
|
LOCAL_MODULE_CLASS := EXECUTABLES
|
|
LOCAL_IS_HOST_MODULE := true
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_PREBUILT)
|
|
###################################
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := sepolicy-check
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := external/libsepol/include
|
|
LOCAL_CFLAGS := -Wall -Werror
|
|
LOCAL_SRC_FILES := sepolicy-check.c
|
|
LOCAL_STATIC_LIBRARIES := libsepol
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH)) |