blob: 89c21b7fb60551b52fe7bb2d51046175bd762dfe [file] [log] [blame]
Joel Fernandesb5fbd412017-10-26 12:24:30 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := tests
5
6LOCAL_MANIFEST_FILE := app/src/main/AndroidManifest.xml
7
8LOCAL_SDK_VERSION := current
9
10LOCAL_USE_AAPT2 := true
11
12# omit gradle 'build' dir
13LOCAL_SRC_FILES := $(call all-java-files-under,app/src/main/java)
14
15# use appcompat/support lib from the tree, so improvements/
16# regressions are reflected in test data
17LOCAL_RESOURCE_DIR := \
18 $(LOCAL_PATH)/app/src/main/res \
19
20
21LOCAL_STATIC_ANDROID_LIBRARIES := \
Aurimas Liutikasd113f942019-01-30 22:08:37 -080022 com.google.android.material_material \
Aurimas Liutikas1d6c6da2018-04-03 17:08:29 -070023 androidx.legacy_legacy-support-v4 \
24 androidx.appcompat_appcompat \
25 androidx.cardview_cardview \
26 androidx.recyclerview_recyclerview \
27 androidx.leanback_leanback \
Joel Fernandesb5fbd412017-10-26 12:24:30 -070028
29LOCAL_STATIC_JAVA_LIBRARIES := \
30 apache-commons-math \
31 junit
32
33
34LOCAL_PACKAGE_NAME := JankBench
35
36LOCAL_COMPATIBILITY_SUITE := device-tests
37
38include $(BUILD_PACKAGE)