summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/Android.mk
diff options
context:
space:
mode:
authorJorim Jaggi <jjaggi@google.com>2015-01-20 16:41:01 +0100
committerJorim Jaggi <jjaggi@google.com>2015-01-20 16:41:01 +0100
commitfb0d644b2bdbf9cbf05071ca6b6d24596ac83247 (patch)
tree468c3ac1afc5faa43fc0519528ceea6664a48293 /packages/SystemUI/Android.mk
parentd6fe549b5027d390985cdf97985103f0ad1209ae (diff)
downloadframeworks_base-fb0d644b2bdbf9cbf05071ca6b6d24596ac83247.zip
frameworks_base-fb0d644b2bdbf9cbf05071ca6b6d24596ac83247.tar.gz
frameworks_base-fb0d644b2bdbf9cbf05071ca6b6d24596ac83247.tar.bz2
Add option to exclude SystemUI tests
Setting the environment variable EXCLUDE_SYSTEMUI_TESTS to something excludes the tests package during building. Saves a few seconds for incremental changes in SystemUI for fast UI iteration changes. Change-Id: I596a0273133c8a8bece0cc364e2ec61fdea45116
Diffstat (limited to 'packages/SystemUI/Android.mk')
-rw-r--r--packages/SystemUI/Android.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/SystemUI/Android.mk b/packages/SystemUI/Android.mk
index 69c6159..2ff9a28 100644
--- a/packages/SystemUI/Android.mk
+++ b/packages/SystemUI/Android.mk
@@ -22,4 +22,6 @@ LOCAL_AAPT_FLAGS := --auto-add-overlay --extra-packages com.android.keyguard
include $(BUILD_PACKAGE)
-include $(call all-makefiles-under,$(LOCAL_PATH))
+ifeq ($(EXCLUDE_SYSTEMUI_TESTS),)
+ include $(call all-makefiles-under,$(LOCAL_PATH))
+endif