summaryrefslogtreecommitdiffstats
path: root/tests/SerialChat/Android.mk
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2011-08-29 20:34:56 -0400
committerMike Lockwood <lockwood@google.com>2012-02-10 10:51:20 -0800
commit25d1fdc35767e84ba5f9ee352ae25f52f139a791 (patch)
tree074e8945fe5fb07813c7ffd831a3fc85e08a15e9 /tests/SerialChat/Android.mk
parentb01e8bf57b7492b77e3445db51471edcbadda75e (diff)
downloadframeworks_base-25d1fdc35767e84ba5f9ee352ae25f52f139a791.zip
frameworks_base-25d1fdc35767e84ba5f9ee352ae25f52f139a791.tar.gz
frameworks_base-25d1fdc35767e84ba5f9ee352ae25f52f139a791.tar.bz2
Quick and dirty test app for new SerialPort API
Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'tests/SerialChat/Android.mk')
-rw-r--r--tests/SerialChat/Android.mk26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/SerialChat/Android.mk b/tests/SerialChat/Android.mk
new file mode 100644
index 0000000..a534e1a
--- /dev/null
+++ b/tests/SerialChat/Android.mk
@@ -0,0 +1,26 @@
+#
+# Copyright (C) 2011 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := tests
+
+LOCAL_SRC_FILES := $(call all-subdir-java-files)
+
+LOCAL_PACKAGE_NAME := SerialChat
+
+include $(BUILD_PACKAGE)