blob: 0551eb6b75ad44ee149a7d080f1f477f1a3557f3 [file] [log] [blame]
Tsu Chiang Chuanga760e552011-06-22 11:33:16 -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 := \
9 $(call all-java-files-under, src)
10
11LOCAL_JAVA_LIBRARIES := android.test.runner
12LOCAL_PACKAGE_NAME := NotificationStressTests
13
Bennie Ouyanga6b8e9c2016-04-06 16:34:07 -070014LOCAL_STATIC_JAVA_LIBRARIES := \
Paul Duffin8aeb59e2017-01-10 12:08:23 +000015 junit \
16 legacy-android-test \
Bennie Ouyanga6b8e9c2016-04-06 16:34:07 -070017 ub-uiautomator
18
Tsu Chiang Chuanga760e552011-06-22 11:33:16 -070019include $(BUILD_PACKAGE)
20
21include $(call all-makefiles-under,$(LOCAL_PATH))