Add slf4j-api and slf4j-nop build targets am: 8079f0abd9

Original change: https://android-review.googlesource.com/c/platform/external/slf4j/+/2972903

Change-Id: I69419fd1c30a40955b7617bc53de4f037523e609
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/Android.bp b/Android.bp
index 8b05e6e..2c7e6fc 100644
--- a/Android.bp
+++ b/Android.bp
@@ -78,3 +78,19 @@
         "//packages/modules/OnDevicePersonalization:__subpackages__",
     ],
 }
+
+java_library_host {
+    name: "slf4j-nop",
+    srcs: [
+        "slf4j-api/src/main/java/**/*.java",
+        "slf4j-nop/src/main/java/**/*.java",
+    ],
+    exclude_srcs: [
+        "slf4j-api/src/main/java/org/slf4j/impl/**/*.java",
+    ],
+    target: {
+        windows: {
+            enabled: true,
+        },
+    },
+}
diff --git a/slf4j-api/Android.bp b/slf4j-api/Android.bp
new file mode 100644
index 0000000..a47edb0
--- /dev/null
+++ b/slf4j-api/Android.bp
@@ -0,0 +1,25 @@
+//
+// Copyright (C) 2017 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_host {
+    name: "slf4j-api",
+    srcs: ["src/main/java/**/*.java"],
+    target: {
+        windows: {
+            enabled: true,
+        },
+    },
+}