1*e07d83d3SAndroid Build Coastguard Worker// Copyright (C) 2018 The Android Open Source Project 2*e07d83d3SAndroid Build Coastguard Worker// 3*e07d83d3SAndroid Build Coastguard Worker// Licensed under the Apache License, Version 2.0 (the "License"); 4*e07d83d3SAndroid Build Coastguard Worker// you may not use this file except in compliance with the License. 5*e07d83d3SAndroid Build Coastguard Worker// You may obtain a copy of the License at 6*e07d83d3SAndroid Build Coastguard Worker// 7*e07d83d3SAndroid Build Coastguard Worker// http://www.apache.org/licenses/LICENSE-2.0 8*e07d83d3SAndroid Build Coastguard Worker// 9*e07d83d3SAndroid Build Coastguard Worker// Unless required by applicable law or agreed to in writing, software 10*e07d83d3SAndroid Build Coastguard Worker// distributed under the License is distributed on an "AS IS" BASIS, 11*e07d83d3SAndroid Build Coastguard Worker// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*e07d83d3SAndroid Build Coastguard Worker// See the License for the specific language governing permissions and 13*e07d83d3SAndroid Build Coastguard Worker// limitations under the License. 14*e07d83d3SAndroid Build Coastguard Worker// 15*e07d83d3SAndroid Build Coastguard Worker 16*e07d83d3SAndroid Build Coastguard Workerjava_library { 17*e07d83d3SAndroid Build Coastguard Worker name: "grpc-java-api", 18*e07d83d3SAndroid Build Coastguard Worker host_supported: true, 19*e07d83d3SAndroid Build Coastguard Worker srcs: [ 20*e07d83d3SAndroid Build Coastguard Worker "src/main/java/**/*.java", 21*e07d83d3SAndroid Build Coastguard Worker ], 22*e07d83d3SAndroid Build Coastguard Worker libs: [ 23*e07d83d3SAndroid Build Coastguard Worker "error_prone_annotations", 24*e07d83d3SAndroid Build Coastguard Worker "grpc-java-context", 25*e07d83d3SAndroid Build Coastguard Worker "guava", 26*e07d83d3SAndroid Build Coastguard Worker "jsr305", 27*e07d83d3SAndroid Build Coastguard Worker ], 28*e07d83d3SAndroid Build Coastguard Worker sdk_version: "current", 29*e07d83d3SAndroid Build Coastguard Worker min_sdk_version: "30", 30*e07d83d3SAndroid Build Coastguard Worker // b/267831518: Pin tradefed and dependencies to Java 11. 31*e07d83d3SAndroid Build Coastguard Worker java_version: "11", 32*e07d83d3SAndroid Build Coastguard Worker apex_available: [ 33*e07d83d3SAndroid Build Coastguard Worker "//apex_available:platform", 34*e07d83d3SAndroid Build Coastguard Worker "com.android.adservices", 35*e07d83d3SAndroid Build Coastguard Worker "com.android.devicelock", 36*e07d83d3SAndroid Build Coastguard Worker "com.android.extservices", 37*e07d83d3SAndroid Build Coastguard Worker "com.android.virt", 38*e07d83d3SAndroid Build Coastguard Worker ], 39*e07d83d3SAndroid Build Coastguard Worker target: { 40*e07d83d3SAndroid Build Coastguard Worker windows: { 41*e07d83d3SAndroid Build Coastguard Worker enabled: true, 42*e07d83d3SAndroid Build Coastguard Worker }, 43*e07d83d3SAndroid Build Coastguard Worker }, 44*e07d83d3SAndroid Build Coastguard Worker} 45