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