blob: 291ba78758b460c30fd7429daa516730d43d1fed [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 := \
Alan Viverettec0cf7242018-02-01 15:52:24 -050022 $(ANDROID_SUPPORT_DESIGN_TARGETS) \
Joel Fernandesb5fbd412017-10-26 12:24:30 -070023 android-support-v4 \
24 android-support-v7-appcompat \
25 android-support-v7-cardview \
26 android-support-v7-recyclerview \
27 android-support-v17-leanback \
28
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)