summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSasha Smundak <asmundak@google.com>2019-02-08 06:47:24 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-02-08 06:47:24 -0800
commit2aa98e48614927413550d00c755351b3f68542b4 (patch)
treeb3e5cc4b9089e58494f41f9f1ed45230cd9f1d60
parent445d40e55cbb432b5682a0df54e42b3d5285d57f (diff)
parentbd3f0f1f0b127393f6ccee8570969f7cab00e746 (diff)
downloadplatform_tools_external_fat32lib-android10-qpr2-release.tar.gz
platform_tools_external_fat32lib-android10-qpr2-release.tar.bz2
platform_tools_external_fat32lib-android10-qpr2-release.zip
Merge "Convert Android.mk file to Android.bp" am: 5656a003e6 am: abff539b0dandroid-vts-11.0_r1android-r-preview-4android-r-preview-3android-r-preview-2android-r-preview-1android-r-beta-3android-r-beta-2android-mainline-11.0.0_r1android-mainline-10.0.0_r9android-mainline-10.0.0_r8android-mainline-10.0.0_r7android-mainline-10.0.0_r6android-mainline-10.0.0_r5android-mainline-10.0.0_r4android-mainline-10.0.0_r11android-mainline-10.0.0_r10android-cts-11.0_r1android-11.0.0_r3android-11.0.0_r2android-11.0.0_r17android-11.0.0_r1android-10.0.0_r9android-10.0.0_r8android-10.0.0_r7android-10.0.0_r45android-10.0.0_r44android-10.0.0_r43android-10.0.0_r42android-10.0.0_r41android-10.0.0_r40android-10.0.0_r39android-10.0.0_r38android-10.0.0_r37android-10.0.0_r36android-10.0.0_r35android-10.0.0_r34android-10.0.0_r33android-10.0.0_r32android-10.0.0_r31android-10.0.0_r30android-10.0.0_r29android-10.0.0_r28android-10.0.0_r27android-10.0.0_r26android-10.0.0_r25android-10.0.0_r24android-10.0.0_r23android-10.0.0_r22android-10.0.0_r21android-10.0.0_r20android-10.0.0_r19android-10.0.0_r18android-10.0.0_r16android-10.0.0_r15android-10.0.0_r14android-10.0.0_r13android-10.0.0_r12r-beta-2ndk-sysroot-r21android11-tests-releaseandroid11-releaseandroid11-mainline-releaseandroid11-gsiandroid11-devandroid10-qpr3-s1-releaseandroid10-qpr3-releaseandroid10-qpr2-s4-releaseandroid10-qpr2-s3-releaseandroid10-qpr2-s2-releaseandroid10-qpr2-s1-releaseandroid10-qpr2-releaseandroid10-qpr1-releaseandroid10-qpr1-mainline-releaseandroid10-qpr1-d-releaseandroid10-qpr1-c-s1-releaseandroid10-qpr1-c-releaseandroid10-qpr1-b-s1-releaseandroid10-qpr1-b-releaseandroid10-mainline-tzdata-releaseandroid10-mainline-resolv-releaseandroid10-mainline-networking-releaseandroid10-mainline-media-releaseandroid10-devandroid10-d4-s1-releaseandroid10-d4-releaseandroid10-c2f2-s2-releaseandroid10-c2f2-s1-releaseandroid10-c2f2-release
am: bd3f0f1f0b Change-Id: I1b7f0d115140d9a449a82fa302ffa0c4f09ed52c
-rw-r--r--Android.bp19
-rw-r--r--Android.mk23
2 files changed, 19 insertions, 23 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..e14b7e3
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,19 @@
+// Copyright (C) 2010 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.
+
+// Build a host-side library
+java_library_host {
+ name: "fat32lib",
+ srcs: ["src/main/java/**/*.java"],
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 45f9615..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright (C) 2010 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)
-# Build a host-side library
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)
-LOCAL_MODULE := fat32lib
-
-include $(BUILD_HOST_JAVA_LIBRARY)
-