blob: 54688c8910466ab5437c5bb4b0e384e89f424835 [file] [log] [blame]
Brett Chabot9faa04f2009-06-15 10:40:56 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
7# Include all test java files.
8LOCAL_SRC_FILES := $(call all-java-files-under, src)
9
Wink Savillea639b312012-07-10 12:37:54 -070010LOCAL_JAVA_LIBRARIES := android.test.runner telephony-common
Paul Duffin8aeb59e2017-01-10 12:08:23 +000011LOCAL_STATIC_JAVA_LIBRARIES := junit legacy-android-test
Brett Chabot9faa04f2009-06-15 10:40:56 -070012LOCAL_PACKAGE_NAME := FrameworkPermissionTests
13
14include $(BUILD_PACKAGE)
15