summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-08-16 00:31:05 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-08-16 00:31:05 -0700
commit0f0813ad3a5be910a3614a849414269a4d6b4d8f (patch)
tree4483510c75d81dba7eb1ac167875950cbeae805b
parente441903a5f40ab00a49d76f5e9570a04ea80f74e (diff)
parentafbe9c1882b8ccc1c3ed34e5ea17afdfa33fa0d2 (diff)
downloadmockwebserver-0f0813ad3a5be910a3614a849414269a4d6b4d8f.tar.gz
Merge "Convert external/mockwebserver to Android.bp" am: 2631e2ca26 am: 434a7b234b
am: afbe9c1882 Change-Id: Id2b8e41309944cf6e48c6ac161de382f35267ec8
-rw-r--r--Android.bp27
-rw-r--r--Android.mk36
2 files changed, 27 insertions, 36 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..0b9fb7c
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,27 @@
+//
+// 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.
+//
+
+java_library {
+ name: "mockwebserver",
+ hostdex: true,
+ srcs: ["src/main/java/**/*.java"],
+
+ // Some tests (CtsVerifier, etc) that are built with SDK are using this library,
+ // thus this lib should be built with public APIs. Since this lib is not specific
+ // to Android, core_current which is a core-Java subset of Android SDK is used.
+ sdk_version: "core_current",
+
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index ad2433b..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# 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)
-
-mockwebserver_src_files := $(call all-java-files-under,src/main/java)
-
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(mockwebserver_src_files)
-LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE := mockwebserver
-# Some tests (CtsVerifier, etc) that are built with SDK are using this library,
-# thus this lib should be built with public APIs. Since this lib is not specific
-# to Android, core_current which is a core-Java subset of Android SDK is used.
-LOCAL_SDK_VERSION := core_current
-LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
-include $(BUILD_STATIC_JAVA_LIBRARY)
-
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(mockwebserver_src_files)
-LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE := mockwebserver-host
-LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
-include $(BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY)