Paul Lawrence | eabc352 | 2016-11-11 11:33:42 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| 6 | LOCAL_MODULE := libseccomp_policy |
| 7 | LOCAL_CLANG := true |
Paul Lawrence | dfe8434 | 2017-02-16 09:24:39 -0800 | [diff] [blame^] | 8 | LOCAL_SRC_FILES := seccomp_policy.cpp arm_policy.cpp arm64_policy.cpp |
Paul Lawrence | eabc352 | 2016-11-11 11:33:42 -0800 | [diff] [blame] | 9 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) |
Paul Lawrence | dfe8434 | 2017-02-16 09:24:39 -0800 | [diff] [blame^] | 10 | LOCAL_SHARED_LIBRARIES := libbase |
Paul Lawrence | eabc352 | 2016-11-11 11:33:42 -0800 | [diff] [blame] | 11 | |
| 12 | include $(BUILD_STATIC_LIBRARY) |
| 13 | |