blob: 0fa5a64d5a9409db45dd2b9e6db412fd5b7cfb3f [file] [log] [blame]
Julien Desprez76deef72018-10-19 15:08:00 -07001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15//
16
17java_library_host {
18 name: "grpc-java",
19 static_libs: [
Hadrien Zalek2bf353c2020-06-19 17:00:51 -070020 "grpc-java-auth",
Hadrien Zalek2d04a322020-05-26 21:51:30 -070021 "grpc-java-context",
Julien Desprez76deef72018-10-19 15:08:00 -070022 "grpc-java-core",
Hadrien Zalek2d04a322020-05-26 21:51:30 -070023 "grpc-java-core-inprocess",
24 "grpc-java-core-internal",
25 "grpc-java-core-util",
Hadrien Zalek2d04a322020-05-26 21:51:30 -070026 "grpc-java-protobuf",
27 "grpc-java-protobuf-lite",
28 "grpc-java-stub",
Julien Desprez76deef72018-10-19 15:08:00 -070029 ]
30}
Karl Shaffer8e51fde2020-11-18 15:04:30 -050031
32java_library {
33 name: "grpc-java-okhttp-client-lite",
34 host_supported: true,
35 static_libs: [
36 "grpc-java-stub",
37 "grpc-java-context",
38 "grpc-java-core",
39 "grpc-java-core-internal",
40 "grpc-java-protobuf-lite",
41 "grpc-java-okhttp",
42 ],
43 sdk_version: "current",
44}