The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Jean-Baptiste Queru | 42266cd | 2010-01-05 16:27:29 -0800 | [diff] [blame] | 4 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 5 | |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 6 | LOCAL_PRIVILEGED_MODULE := true |
| 7 | |
Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 8 | LOCAL_SRC_FILES := $(call all-java-files-under,src) |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 9 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 10 | LOCAL_PACKAGE_NAME := TelephonyProvider |
| 11 | LOCAL_CERTIFICATE := platform |
| 12 | |
Ye Wen | 0276edb | 2014-07-07 17:30:06 -0700 | [diff] [blame] | 13 | LOCAL_JAVA_LIBRARIES += telephony-common |
Tom Taylor | b1bae65 | 2010-03-08 16:33:42 -0800 | [diff] [blame] | 14 | LOCAL_STATIC_JAVA_LIBRARIES += android-common |
| 15 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 16 | include $(BUILD_PACKAGE) |
Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 17 | |
| 18 | include $(call all-makefiles-under,$(LOCAL_PATH)) |