summaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-07-08 13:59:41 +0900
committersatok <satok@google.com>2011-07-08 16:07:33 +0900
commit21f8ddba1e654caa5f565ade87da9fe2de0ff7db (patch)
tree50bda732ede7759000eaa5749e0ef966178b3c39 /Android.mk
parent55f2b586128f6f6a4a6c9c7fc93ba591b16c162f (diff)
downloadinputmethodcommon-21f8ddba1e654caa5f565ade87da9fe2de0ff7db.tar.gz
Add InputMethodSettingsFragment to a static library
Bug: 4979539 Change-Id: I4a019f3578c3f0da0086bf3d27ddcf55c2d1b57f
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk26
1 files changed, 26 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..7e4d14d
--- /dev/null
+++ b/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 := inputmethod-common
+# TODO: Change a sdk version to 14 once the framework gets ready
+LOCAL_SDK_VERSION := 13
+LOCAL_SRC_FILES := \
+ $(call all-java-files-under, java)
+include $(BUILD_STATIC_JAVA_LIBRARY)
+
+# Build the test package
+include $(call all-makefiles-under, $(LOCAL_PATH))