aboutsummaryrefslogtreecommitdiff
path: root/protobuf-lite
diff options
context:
space:
mode:
authorJulien Desprez <jdesprez@google.com>2018-09-24 14:16:30 -0700
committerJulien Desprez <jdesprez@google.com>2018-10-02 15:52:26 -0700
commitaf14f34438385fd3e31abcc05ddf5ef0126b08ca (patch)
treec3f987e532efe459e6484cff173c13531f947181 /protobuf-lite
parented6077b99e5f737c7589326bdc6559b96819eb97 (diff)
downloadgrpc-grpc-java-af14f34438385fd3e31abcc05ddf5ef0126b08ca.tar.gz
Start adding Soong build files for grpc-grpc-javamaster-cuttlefish-testing-release
Add basic build files for the grpc-java modules. Still need to be added: netty, protobuf Test: make Bug: None Change-Id: I9248dd23c0ec24ec0f9a15aa6f6d826b7b90d617
Diffstat (limited to 'protobuf-lite')
-rw-r--r--protobuf-lite/Android.bp29
1 files changed, 29 insertions, 0 deletions
diff --git a/protobuf-lite/Android.bp b/protobuf-lite/Android.bp
new file mode 100644
index 000000000..64ce02d2d
--- /dev/null
+++ b/protobuf-lite/Android.bp
@@ -0,0 +1,29 @@
+// Copyright (C) 2018 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: "grpc-java-protobuf-lite",
+ host_supported: true,
+ srcs: [
+ "src/main/java/**/*.java",
+ ],
+ libs: [
+ "grpc-java-core",
+ "guava",
+ "jsr305",
+ "libprotobuf-java-lite",
+ ],
+}