summaryrefslogtreecommitdiffstats
path: root/cmds/tm/Android.mk
diff options
context:
space:
mode:
authorClark Scheff <clark@cyngn.com>2015-02-02 09:42:23 -0800
committerClark Scheff <clark@cyngn.com>2015-10-27 10:39:53 -0700
commit0e365250c8c08021c7bd9aa63bd171bfe195faf9 (patch)
tree8c9e0838bfbb5d2f885c54c8ab849dfd517ed249 /cmds/tm/Android.mk
parent7c5912d0af898691d87b72314dd04c01cff01b63 (diff)
downloadframeworks_base-0e365250c8c08021c7bd9aa63bd171bfe195faf9.zip
frameworks_base-0e365250c8c08021c7bd9aa63bd171bfe195faf9.tar.gz
frameworks_base-0e365250c8c08021c7bd9aa63bd171bfe195faf9.tar.bz2
Themes: Add tm command line tool
This will allow us to perform automated testing using the theme manager as well as a quick way to perform the various functions that the theme service provides via the command line. Change-Id: Id0aa906bb3400225b93080f7a8c2284a8fcf3c44
Diffstat (limited to 'cmds/tm/Android.mk')
-rw-r--r--cmds/tm/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/cmds/tm/Android.mk b/cmds/tm/Android.mk
new file mode 100644
index 0000000..34a41dd
--- /dev/null
+++ b/cmds/tm/Android.mk
@@ -0,0 +1,15 @@
+# Copyright 2015 The CyanogenMod Project
+#
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_SRC_FILES := $(call all-subdir-java-files)
+LOCAL_MODULE := tm
+include $(BUILD_JAVA_LIBRARY)
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := tm
+LOCAL_SRC_FILES := tm
+LOCAL_MODULE_CLASS := EXECUTABLES
+LOCAL_MODULE_TAGS := optional
+include $(BUILD_PREBUILT)