Jiyong Park | c5d7c8a | 2017-01-14 19:40:33 +0900 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | ################################################################################ |
| 4 | include $(CLEAR_VARS) |
Sundong Ahn | b162f3f | 2017-07-10 13:56:10 +0900 | [diff] [blame] | 5 | LOCAL_MODULE := android.hardware.configstore@1.0-service |
| 6 | LOCAL_REQUIRED_MODULES_arm64 := configstore@1.0.policy |
Jiyong Park | c5d7c8a | 2017-01-14 19:40:33 +0900 | [diff] [blame] | 7 | LOCAL_PROPRIETARY_MODULE := true |
| 8 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 9 | LOCAL_MODULE_RELATIVE_PATH := hw |
Sundong Ahn | b162f3f | 2017-07-10 13:56:10 +0900 | [diff] [blame] | 10 | LOCAL_INIT_RC := android.hardware.configstore@1.0-service.rc |
Jiyong Park | c5d7c8a | 2017-01-14 19:40:33 +0900 | [diff] [blame] | 11 | LOCAL_SRC_FILES:= service.cpp |
| 12 | |
Jaesoo Lee | 2d66f61 | 2017-03-20 13:57:10 +0900 | [diff] [blame] | 13 | include $(LOCAL_PATH)/surfaceflinger.mk |
| 14 | |
Jiyong Park | c5d7c8a | 2017-01-14 19:40:33 +0900 | [diff] [blame] | 15 | LOCAL_SHARED_LIBRARIES := \ |
Jiyong Park | c5d7c8a | 2017-01-14 19:40:33 +0900 | [diff] [blame] | 16 | libhidlbase \ |
| 17 | libhidltransport \ |
Jaesoo Lee | 2d66f61 | 2017-03-20 13:57:10 +0900 | [diff] [blame] | 18 | libbase \ |
Jeff Vander Stoep | ed95043 | 2017-07-06 22:29:12 -0700 | [diff] [blame] | 19 | libhwminijail \ |
Jaesoo Lee | 2d66f61 | 2017-03-20 13:57:10 +0900 | [diff] [blame] | 20 | liblog \ |
| 21 | libutils \ |
Sundong Ahn | b162f3f | 2017-07-10 13:56:10 +0900 | [diff] [blame] | 22 | android.hardware.configstore@1.0 |
Jiyong Park | c5d7c8a | 2017-01-14 19:40:33 +0900 | [diff] [blame] | 23 | |
| 24 | include $(BUILD_EXECUTABLE) |
Jeff Vander Stoep | ed95043 | 2017-07-06 22:29:12 -0700 | [diff] [blame] | 25 | |
| 26 | # seccomp filter for configstore |
| 27 | ifeq ($(TARGET_ARCH), $(filter $(TARGET_ARCH), arm64)) |
| 28 | include $(CLEAR_VARS) |
Sundong Ahn | b162f3f | 2017-07-10 13:56:10 +0900 | [diff] [blame] | 29 | LOCAL_MODULE := configstore@1.0.policy |
Jeff Vander Stoep | ed95043 | 2017-07-06 22:29:12 -0700 | [diff] [blame] | 30 | LOCAL_MODULE_CLASS := ETC |
| 31 | LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR)/etc/seccomp_policy |
Sundong Ahn | b162f3f | 2017-07-10 13:56:10 +0900 | [diff] [blame] | 32 | LOCAL_SRC_FILES := seccomp_policy/configstore@1.0-$(TARGET_ARCH).policy |
Jeff Vander Stoep | ed95043 | 2017-07-06 22:29:12 -0700 | [diff] [blame] | 33 | include $(BUILD_PREBUILT) |
| 34 | endif |