Files
frameworks_base/tests/TouchLatency/Android.mk
Ian Lake c694d04682 Remove AppCompat from TouchLatency test
Ensure the TouchLatency test accurately reflects the latest
framework and removes the need to update TouchLatency test
as Support Library evolves.

Test: ./gradlew assembleDebug works
BUG: 28983951
Change-Id: Icce773f47674f94cad5f9057cce4913b7efce834
2017-07-10 18:12:46 +00:00

22 lines
439 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)
LOCAL_RESOURCE_DIR := \
$(LOCAL_PATH)/app/src/main/res
LOCAL_AAPT_FLAGS := \
--auto-add-overlay
LOCAL_PACKAGE_NAME := TouchLatency
LOCAL_COMPATIBILITY_SUITE := device-tests
include $(BUILD_PACKAGE)