Joel Fernandes | b5fbd41 | 2017-10-26 12:24:30 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := tests |
| 5 | |
| 6 | LOCAL_MANIFEST_FILE := app/src/main/AndroidManifest.xml |
| 7 | |
| 8 | LOCAL_SDK_VERSION := current |
| 9 | |
| 10 | LOCAL_USE_AAPT2 := true |
| 11 | |
| 12 | # omit gradle 'build' dir |
| 13 | LOCAL_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 |
| 17 | LOCAL_RESOURCE_DIR := \ |
| 18 | $(LOCAL_PATH)/app/src/main/res \ |
| 19 | |
| 20 | |
| 21 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Aurimas Liutikas | 1d6c6da | 2018-04-03 17:08:29 -0700 | [diff] [blame] | 22 | androidx.design_design \ |
| 23 | androidx.legacy_legacy-support-v4 \ |
| 24 | androidx.appcompat_appcompat \ |
| 25 | androidx.cardview_cardview \ |
| 26 | androidx.recyclerview_recyclerview \ |
| 27 | androidx.leanback_leanback \ |
Joel Fernandes | b5fbd41 | 2017-10-26 12:24:30 -0700 | [diff] [blame] | 28 | |
| 29 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 30 | apache-commons-math \ |
| 31 | junit |
| 32 | |
| 33 | |
| 34 | LOCAL_PACKAGE_NAME := JankBench |
| 35 | |
| 36 | LOCAL_COMPATIBILITY_SUITE := device-tests |
| 37 | |
| 38 | include $(BUILD_PACKAGE) |