Paul Jensen | d38fb766 | 2016-01-07 23:13:19 -0500 | [diff] [blame] | 1 | ######################################################################### |
| 2 | # Build FrameworksServicesTests package |
| 3 | ######################################################################### |
| 4 | |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 5 | LOCAL_PATH:= $(call my-dir) |
| 6 | include $(CLEAR_VARS) |
| 7 | |
| 8 | # We only want this apk build for tests. |
| 9 | LOCAL_MODULE_TAGS := tests |
| 10 | |
| 11 | # Include all test java files. |
| 12 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 13 | |
Jeff Sharkey | b7342ac | 2011-04-25 23:44:11 -0700 | [diff] [blame] | 14 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Christopher Wiley | 1cc6ffd | 2016-05-18 16:32:44 -0700 | [diff] [blame] | 15 | frameworks-base-testutils \ |
Phil Weaver | 8c1e36b | 2016-06-24 18:16:14 -0700 | [diff] [blame] | 16 | services.accessibility \ |
Sunny Goyal | 87a563e | 2017-01-01 19:42:45 -0800 | [diff] [blame] | 17 | services.appwidget \ |
Narayan Kamath | d8b54e8 | 2014-08-21 12:25:24 +0100 | [diff] [blame] | 18 | services.core \ |
| 19 | services.devicepolicy \ |
Lorenzo Colitti | a12bde3 | 2015-03-31 16:26:57 +0900 | [diff] [blame] | 20 | services.net \ |
Sudheer Shanka | d9fcb69 | 2016-08-02 12:56:50 -0700 | [diff] [blame] | 21 | services.retaildemo \ |
Amith Yamasani | a93542f | 2016-02-03 18:02:06 -0800 | [diff] [blame] | 22 | services.usage \ |
Jeff Sharkey | fb878b6 | 2012-07-26 18:32:30 -0700 | [diff] [blame] | 23 | guava \ |
Xiaohui Chen | f86676a | 2015-08-19 13:30:07 -0700 | [diff] [blame] | 24 | android-support-test \ |
Guang Zhu | 01c560f | 2016-08-24 10:49:23 -0700 | [diff] [blame] | 25 | mockito-target-minus-junit4 \ |
Wale Ogunwale | 5fc7096 | 2016-09-09 22:36:19 -0700 | [diff] [blame] | 26 | platform-test-annotations \ |
Daniel Nishi | a59272e | 2016-12-12 15:16:00 -0800 | [diff] [blame] | 27 | ShortcutManagerTestUtils \ |
| 28 | truth-prebuilt |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 29 | |
Sudheer Shanka | 686bb2d | 2017-03-20 12:16:32 -0700 | [diff] [blame] | 30 | LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/aidl |
| 31 | |
| 32 | LOCAL_SRC_FILES += aidl/com/android/servicestests/aidl/INetworkStateObserver.aidl |
| 33 | |
Narayan Kamath | d8b54e8 | 2014-08-21 12:25:24 +0100 | [diff] [blame] | 34 | LOCAL_JAVA_LIBRARIES := android.test.runner |
Svetoslav Ganov | 0b29a58 | 2010-04-16 18:52:49 -0700 | [diff] [blame] | 35 | |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 36 | LOCAL_PACKAGE_NAME := FrameworksServicesTests |
Simran Basi | 473a16e | 2017-03-15 14:43:58 -0700 | [diff] [blame] | 37 | LOCAL_COMPATIBILITY_SUITE := device-tests |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 38 | |
Neal Nguyen | 3433d3c | 2010-02-02 17:09:00 -0800 | [diff] [blame] | 39 | LOCAL_CERTIFICATE := platform |
| 40 | |
Robin Lee | cfe2669 | 2016-04-05 12:19:06 +0100 | [diff] [blame] | 41 | # These are not normally accessible from apps so they must be explicitly included. |
Colin Cross | e399468 | 2017-01-11 14:29:10 -0800 | [diff] [blame] | 42 | LOCAL_JNI_SHARED_LIBRARIES := \ |
Robin Lee | cfe2669 | 2016-04-05 12:19:06 +0100 | [diff] [blame] | 43 | libbacktrace \ |
| 44 | libbase \ |
| 45 | libbinder \ |
Paul Jensen | 5f3dec3 | 2016-02-07 21:55:45 -0500 | [diff] [blame] | 46 | libc++ \ |
Robin Lee | cfe2669 | 2016-04-05 12:19:06 +0100 | [diff] [blame] | 47 | libcutils \ |
| 48 | liblog \ |
| 49 | liblzma \ |
| 50 | libnativehelper \ |
| 51 | libnetdaidl \ |
| 52 | libui \ |
| 53 | libunwind \ |
| 54 | libutils |
| 55 | |
| 56 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Paul Jensen | d38fb766 | 2016-01-07 23:13:19 -0500 | [diff] [blame] | 57 | |
Allen Hair | aeaee4c | 2016-09-22 09:58:06 -0700 | [diff] [blame] | 58 | LOCAL_JACK_FLAGS := --multi-dex native |
Colin Cross | 7703249 | 2017-03-23 12:33:14 -0700 | [diff] [blame] | 59 | LOCAL_DX_FLAGS := --multi-dex |
Allen Hair | aeaee4c | 2016-09-22 09:58:06 -0700 | [diff] [blame] | 60 | |
Jorim Jaggi | 7b61437 | 2016-09-28 15:17:50 +0200 | [diff] [blame] | 61 | LOCAL_STATIC_JAVA_LIBRARIES += ub-uiautomator |
| 62 | |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 63 | include $(BUILD_PACKAGE) |