1d6c6dab01
Bug: 76692459 Test: make -j EasterEgg JankBench UiBench Change-Id: Id9bed936dd1cb1cb4e1c0792618c9a3d608c1fb8
30 lines
727 B
Makefile
30 lines
727 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
LOCAL_SDK_VERSION := current
|
|
LOCAL_MIN_SDK_VERSION := 21
|
|
|
|
# omit gradle 'build' dir
|
|
LOCAL_SRC_FILES := $(call all-java-files-under,src)
|
|
|
|
# use appcompat/support lib from the tree, so improvements/
|
|
# regressions are reflected in test data
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
|
androidx.design_design \
|
|
androidx.legacy_legacy-support-v4 \
|
|
androidx.appcompat_appcompat \
|
|
androidx.cardview_cardview \
|
|
androidx.recyclerview_recyclerview \
|
|
androidx.leanback_leanback
|
|
|
|
LOCAL_PACKAGE_NAME := UiBench
|
|
|
|
LOCAL_COMPATIBILITY_SUITE := device-tests
|
|
|
|
include $(BUILD_PACKAGE)
|