aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-10-06 17:50:58 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-10-06 17:50:58 +0000
commit0ab2173358d0f40657dd0c3d47d1f59328bfc1e6 (patch)
tree269f571be90433e619165281582ce06015e7ea8c
parent9c02d9f506855965ec513685788890dfc856a5bc (diff)
parent877497e7b01037009e131866683ca1a6650e3ced (diff)
downloadtagsoup-0ab2173358d0f40657dd0c3d47d1f59328bfc1e6.tar.gz
Merge "Convert tagsoup to Android.bp" am: 658e03e800
am: 877497e7b0 Change-Id: I5c691a6ac6a1ce00142d27582420b1728afcd92d
-rw-r--r--Android.bp20
-rw-r--r--Android.mk21
2 files changed, 20 insertions, 21 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..5e0d542
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,20 @@
+// Copyright (C) 2014 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.
+
+java_library_static {
+ name: "tagsoup",
+ host_supported: true,
+ no_framework_libs: true,
+ srcs: ["src/**/*.java"],
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index e154f7d..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright (C) 2014 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 := tagsouplib
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-include $(BUILD_HOST_JAVA_LIBRARY)