aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2012-05-15 11:06:04 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-05-15 11:06:04 -0700
commit0f189400fd2a36bf11bfb058e7f3917eb7ed163a (patch)
tree31cfb93323da466e36cd74fb8fd2ece06ecf97d6 /Android.mk
parentd1fa5c0d9856fe4e3dc2d30cb96e3cc847ff125f (diff)
parent5716c15248acdb7dba42d951cf8273ee87cc6846 (diff)
downloadandroid_external_ant-glob-0f189400fd2a36bf11bfb058e7f3917eb7ed163a.tar.gz
android_external_ant-glob-0f189400fd2a36bf11bfb058e7f3917eb7ed163a.tar.bz2
android_external_ant-glob-0f189400fd2a36bf11bfb058e7f3917eb7ed163a.zip
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk27
1 files changed, 27 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..4089edf
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,27 @@
+# Copyright (C) 2012 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)
+
+# Only compile source java files in this lib.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+LOCAL_JAVA_RESOURCE_DIRS := src
+
+LOCAL_MODULE := ant-glob
+
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_HOST_JAVA_LIBRARY)