OSDN Git Service

DO NOT MERGE. Grant MMS Uri permissions as the calling UID.
[android-x86/frameworks-base.git] / core / tests / utiltests / Android.mk
1 #########################################################################
2 # Build FrameworksUtilTests package
3 #########################################################################
4
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 LOCAL_SRC_FILES += src/android/util/IRemoteMemoryIntArray.aidl
14
15 LOCAL_JNI_SHARED_LIBRARIES := libmemoryintarraytest libcutils libc++
16
17 LOCAL_STATIC_JAVA_LIBRARIES := \
18     android-support-test \
19     mockito-target
20
21 LOCAL_JAVA_LIBRARIES := android.test.runner
22
23 LOCAL_PACKAGE_NAME := FrameworksUtilTests
24
25 LOCAL_CERTIFICATE := platform
26
27 include $(BUILD_PACKAGE)
28
29 include $(call all-makefiles-under,$(LOCAL_PATH))