| Jan Nordqvist | ee699a6 | 2016-02-05 15:30:26 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 5 | |
| 6 | LOCAL_MODULE_TAGS := optional |
| 7 | |
| 8 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| Jan Nordqvist | 0701952 | 2016-03-18 16:02:45 -0700 | [diff] [blame^] | 9 | LOCAL_SRC_FILES += \ |
| 10 | src/com/android/hotspot2/app/IOSUAccessor.aidl \ |
| 11 | src/com/android/hotspot2/flow/IFlowService.aidl |
| Jan Nordqvist | ee699a6 | 2016-02-05 15:30:26 -0800 | [diff] [blame] | 12 | |
| 13 | LOCAL_JAVA_LIBRARIES := telephony-common ims-common bouncycastle conscrypt |
| 14 | |
| 15 | LOCAL_PACKAGE_NAME := Osu |
| 16 | LOCAL_CERTIFICATE := platform |
| 17 | LOCAL_PRIVILEGED_MODULE := true |
| 18 | |
| 19 | include $(BUILD_PACKAGE) |
| 20 | |
| 21 | ######################## |
| 22 | include $(call all-makefiles-under,$(LOCAL_PATH)) |