2009-06-15 10:40:56 -07:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
# We only want this apk build for tests.
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
|
|
|
|
# Include all test java files.
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
|
2012-07-10 12:37:54 -07:00
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner telephony-common
|
2009-06-15 10:40:56 -07:00
|
|
|
LOCAL_PACKAGE_NAME := FrameworkPermissionTests
|
|
|
|
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|