diff options
| author | 2015-04-08 15:43:26 -0700 | |
|---|---|---|
| committer | 2015-04-15 14:27:56 -0700 | |
| commit | 2ad0bb46a42476f91b63baa95f0bcf97a337a4fc (patch) | |
| tree | 038cec3cde560e9d898ef8c3aa0f1d5cff58fa14 /tests/LockTaskTests/Android.mk | |
| parent | 15df08abd8190353e1430f88c2ed6462d72a5b25 (diff) | |
Add tests for android:lockTaskMode.
Android app to exercise the new attribute.
For bug 19995702.
Change-Id: I0794301a6b677ec6367dd3ad99a40b5d3f9f1d7c
Diffstat (limited to 'tests/LockTaskTests/Android.mk')
| -rw-r--r-- | tests/LockTaskTests/Android.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/LockTaskTests/Android.mk b/tests/LockTaskTests/Android.mk new file mode 100644 index 000000000000..ed5864304b67 --- /dev/null +++ b/tests/LockTaskTests/Android.mk @@ -0,0 +1,15 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := optional +LOCAL_MODULE_PATH := $(PRODUCT_OUT)/system/priv-app + +LOCAL_PACKAGE_NAME := LockTaskTests +LOCAL_CERTIFICATE := platform + +LOCAL_SRC_FILES := $(call all-Iaidl-files-under, src) $(call all-java-files-under, src) + +include $(BUILD_PACKAGE) + +# Use the following include to make our test apk. +include $(call all-makefiles-under,$(LOCAL_PATH)) |