TouchLatency is needed by test TouchLatencyJankTestWear UiBench is needed by test UiBenchJankTests Details about test configs changes are tracked in doc https://docs.google.com/document/d/1EWUjJ7fjy8ge_Nk0YQbFdRp8DSHo3z6GU0R8jLgrAcw/edit# Bug: 35882476 Test: local test make -j32 TouchLatency TouchLatencyJankTestWear && \ tradefed.sh run template/local --template:map test=TouchLatencyJankTestWear \ --test-tag testname --log-level-display VERBOSE make -j32 UiBenchJankTests UiBench && \ tradefed.sh run template/local --template:map test=UiBenchJankTests \ --test-tag testname --log-level-display VERBOSE Change-Id: I63f23e3a21ad1343607953958fb7bb0a5fb8c343
30 lines
726 B
Makefile
30 lines
726 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_MANIFEST_FILE := app/src/main/AndroidManifest.xml
|
|
|
|
# omit gradle 'build' dir
|
|
LOCAL_SRC_FILES := $(call all-java-files-under,app/src/main/java)
|
|
|
|
# use appcompat/support lib from the tree, so improvements/
|
|
# regressions are reflected in test data
|
|
LOCAL_RESOURCE_DIR := \
|
|
$(LOCAL_PATH)/app/src/main/res \
|
|
frameworks/support/v7/appcompat/res
|
|
|
|
LOCAL_AAPT_FLAGS := \
|
|
--auto-add-overlay \
|
|
--extra-packages android.support.v7.appcompat
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-v4 \
|
|
android-support-v7-appcompat
|
|
|
|
LOCAL_PACKAGE_NAME := TouchLatency
|
|
|
|
LOCAL_COMPATIBILITY_SUITE := device-tests
|
|
|
|
include $(BUILD_PACKAGE)
|