blob: cf8ac94ca5f369341c297ef7f9728996e9ea8f62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := eng tests
LOCAL_JAVA_LIBRARIES := framework-tests android.test.runner
LOCAL_STATIC_JAVA_LIBRARIES := googlelogin-client
# Resource unit tests use a private locale
LOCAL_AAPT_FLAGS = -c xx_YY -c cs
LOCAL_SRC_FILES := \
$(call all-subdir-java-files) \
src/com/android/unit_tests/os/IAidlTest.aidl
LOCAL_PACKAGE_NAME := AndroidTests
LOCAL_CERTIFICATE := platform
include $(BUILD_PACKAGE)
include $(call all-makefiles-under,$(LOCAL_PATH))
|