blob: c8e6c2091d8f0d66c3314757fa3c7445fe761e73 [file] [log] [blame]
Chris Craik8a1c0e82015-08-26 10:47:18 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := tests
Alan Viverettedb7423c2017-03-31 13:13:58 -04005LOCAL_SDK_VERSION := current
John Reck03a1edf2016-10-06 14:46:19 -07006LOCAL_MIN_SDK_VERSION := 21
Chris Craik8a1c0e82015-08-26 10:47:18 -07007
8# omit gradle 'build' dir
9LOCAL_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 Gubffef1f2017-11-07 18:50:29 -080013LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
Chris Craik8a1c0e82015-08-26 10:47:18 -070014
Dake Gubffef1f2017-11-07 18:50:29 -080015LOCAL_USE_AAPT2 := true
Chris Craik8a1c0e82015-08-26 10:47:18 -070016
Dake Gubffef1f2017-11-07 18:50:29 -080017LOCAL_STATIC_ANDROID_LIBRARIES := \
Alan Viverettec0cf7242018-02-01 15:52:24 -050018 $(ANDROID_SUPPORT_DESIGN_TARGETS) \
Chris Craik8a1c0e82015-08-26 10:47:18 -070019 android-support-v4 \
Chris Craikbaf41292015-08-31 14:51:03 -070020 android-support-v7-appcompat \
Md Haqued68e8cb2015-09-01 12:00:34 -070021 android-support-v7-cardview \
Dake Gu5e6f4382017-07-18 16:12:43 -070022 android-support-v7-recyclerview \
23 android-support-v17-leanback
Chris Craik8a1c0e82015-08-26 10:47:18 -070024
25LOCAL_PACKAGE_NAME := UiBench
26
Dan Shi7f2afd22017-03-17 10:21:28 -070027LOCAL_COMPATIBILITY_SUITE := device-tests
28
Chris Craik8a1c0e82015-08-26 10:47:18 -070029include $(BUILD_PACKAGE)