blob: 6735c7c8f7871c13a50f34c58630d04173dfe71e [file] [log] [blame]
Adam Lesinskie159e2e2014-07-22 15:55:50 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := tests
5
6# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8
Adam Lesinski7f61e962014-09-02 16:43:52 -07009LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4
10
Makoto Onukiad623012017-05-15 09:29:34 -070011LOCAL_CERTIFICATE := platform
12
Adam Lesinskie159e2e2014-07-22 15:55:50 -070013LOCAL_PACKAGE_NAME := UsageStatsTest
Anton Hanssonab6ec612018-02-23 12:57:51 +000014LOCAL_PRIVATE_PLATFORM_APIS := true
Adam Lesinskie159e2e2014-07-22 15:55:50 -070015
16include $(BUILD_PACKAGE)