androidx.design_design was a target created temporarily while the com.google.android.material_material was being added. This migrated to the final material design class packages. Test: make -j UiBench JankBench Change-Id: I86540efbe706049fd05938eec0634ba63971b45a
30 lines
741 B
Makefile
30 lines
741 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 := \
|
|
com.google.android.material_material \
|
|
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)
|