Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := tests |
Alan Viverette | db7423c | 2017-03-31 13:13:58 -0400 | [diff] [blame] | 5 | LOCAL_SDK_VERSION := current |
John Reck | 03a1edf | 2016-10-06 14:46:19 -0700 | [diff] [blame] | 6 | LOCAL_MIN_SDK_VERSION := 21 |
Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 7 | |
| 8 | # omit gradle 'build' dir |
| 9 | LOCAL_SRC_FILES := $(call all-java-files-under,src) |
| 10 | |
| 11 | # use appcompat/support lib from the tree, so improvements/ |
| 12 | # regressions are reflected in test data |
Dake Gu | bffef1f | 2017-11-07 18:50:29 -0800 | [diff] [blame] | 13 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 14 | |
Dake Gu | bffef1f | 2017-11-07 18:50:29 -0800 | [diff] [blame] | 15 | LOCAL_USE_AAPT2 := true |
Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 16 | |
Dake Gu | bffef1f | 2017-11-07 18:50:29 -0800 | [diff] [blame] | 17 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Alan Viverette | c0cf724 | 2018-02-01 15:52:24 -0500 | [diff] [blame] | 18 | $(ANDROID_SUPPORT_DESIGN_TARGETS) \ |
Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 19 | android-support-v4 \ |
Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 20 | android-support-v7-appcompat \ |
Md Haque | d68e8cb | 2015-09-01 12:00:34 -0700 | [diff] [blame] | 21 | android-support-v7-cardview \ |
Dake Gu | 5e6f438 | 2017-07-18 16:12:43 -0700 | [diff] [blame] | 22 | android-support-v7-recyclerview \ |
| 23 | android-support-v17-leanback |
Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 24 | |
| 25 | LOCAL_PACKAGE_NAME := UiBench |
| 26 | |
Dan Shi | 7f2afd2 | 2017-03-17 10:21:28 -0700 | [diff] [blame] | 27 | LOCAL_COMPATIBILITY_SUITE := device-tests |
| 28 | |
Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 29 | include $(BUILD_PACKAGE) |