summaryrefslogtreecommitdiffstats
path: root/tests/notification/Android.mk
diff options
context:
space:
mode:
authorDan Sandler <dsandler@android.com>2015-04-06 16:49:28 -0400
committerDaniel Sandler <dsandler@android.com>2015-05-11 23:32:08 -0400
commit7edddb4961c7c64f8d2a06495f742e04b5cc7696 (patch)
tree8e820f471ffe72f3a17359e5270db77abba67e9e /tests/notification/Android.mk
parentcbcbb828e8e3d1f901be00c896d816d01c17b19d (diff)
downloadframeworks_base-7edddb4961c7c64f8d2a06495f742e04b5cc7696.zip
frameworks_base-7edddb4961c7c64f8d2a06495f742e04b5cc7696.tar.gz
frameworks_base-7edddb4961c7c64f8d2a06495f742e04b5cc7696.tar.bz2
Tests for Notification object construction and parceling.
The tests use the new hidden Parcel APIs (if available on the running platform) to emit statistics about ashmem usage. Bug: 20153922 Bug: 20079551 Change-Id: I400d2a932f297e582c335389570f93c0d4a19fc9
Diffstat (limited to 'tests/notification/Android.mk')
-rw-r--r--tests/notification/Android.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/notification/Android.mk b/tests/notification/Android.mk
new file mode 100644
index 0000000..0669553
--- /dev/null
+++ b/tests/notification/Android.mk
@@ -0,0 +1,16 @@
+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)
+
+LOCAL_JAVA_LIBRARIES := android.test.runner
+LOCAL_PACKAGE_NAME := NotificationTests
+
+LOCAL_SDK_VERSION := 21
+
+include $(BUILD_PACKAGE)
+