1*0ed15c77SAndroid Build Coastguard Worker// 2*0ed15c77SAndroid Build Coastguard Worker// Copyright (C) 2020 The Android Open Source Project 3*0ed15c77SAndroid Build Coastguard Worker// 4*0ed15c77SAndroid Build Coastguard Worker// Licensed under the Apache License, Version 2.0 (the "License"); 5*0ed15c77SAndroid Build Coastguard Worker// you may not use this file except in compliance with the License. 6*0ed15c77SAndroid Build Coastguard Worker// You may obtain a copy of the License at 7*0ed15c77SAndroid Build Coastguard Worker// 8*0ed15c77SAndroid Build Coastguard Worker// http://www.apache.org/licenses/LICENSE-2.0 9*0ed15c77SAndroid Build Coastguard Worker// 10*0ed15c77SAndroid Build Coastguard Worker// Unless required by applicable law or agreed to in writing, software 11*0ed15c77SAndroid Build Coastguard Worker// distributed under the License is distributed on an "AS IS" BASIS, 12*0ed15c77SAndroid Build Coastguard Worker// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*0ed15c77SAndroid Build Coastguard Worker// See the License for the specific language governing permissions and 14*0ed15c77SAndroid Build Coastguard Worker// limitations under the License. 15*0ed15c77SAndroid Build Coastguard Worker// 16*0ed15c77SAndroid Build Coastguard Worker 17*0ed15c77SAndroid Build Coastguard Workerpackage { 18*0ed15c77SAndroid Build Coastguard Worker default_applicable_licenses: ["external_jackson-databind_license"], 19*0ed15c77SAndroid Build Coastguard Worker} 20*0ed15c77SAndroid Build Coastguard Worker 21*0ed15c77SAndroid Build Coastguard Worker// Added automatically by a large-scale-change 22*0ed15c77SAndroid Build Coastguard Worker// See: http://go/android-license-faq 23*0ed15c77SAndroid Build Coastguard Workerlicense { 24*0ed15c77SAndroid Build Coastguard Worker name: "external_jackson-databind_license", 25*0ed15c77SAndroid Build Coastguard Worker visibility: [":__subpackages__"], 26*0ed15c77SAndroid Build Coastguard Worker license_kinds: [ 27*0ed15c77SAndroid Build Coastguard Worker "SPDX-license-identifier-Apache-2.0", 28*0ed15c77SAndroid Build Coastguard Worker ], 29*0ed15c77SAndroid Build Coastguard Worker license_text: [ 30*0ed15c77SAndroid Build Coastguard Worker "src/main/resources/META-INF/LICENSE", 31*0ed15c77SAndroid Build Coastguard Worker ], 32*0ed15c77SAndroid Build Coastguard Worker} 33*0ed15c77SAndroid Build Coastguard Worker 34*0ed15c77SAndroid Build Coastguard Workerjava_library_host { 35*0ed15c77SAndroid Build Coastguard Worker name: "jackson-databind", 36*0ed15c77SAndroid Build Coastguard Worker srcs: [ 37*0ed15c77SAndroid Build Coastguard Worker "android/src/**/*.java", 38*0ed15c77SAndroid Build Coastguard Worker "src/main/**/*.java", 39*0ed15c77SAndroid Build Coastguard Worker ], 40*0ed15c77SAndroid Build Coastguard Worker libs: [ 41*0ed15c77SAndroid Build Coastguard Worker "jackson-annotations", 42*0ed15c77SAndroid Build Coastguard Worker "jackson-core", 43*0ed15c77SAndroid Build Coastguard Worker ], 44*0ed15c77SAndroid Build Coastguard Worker errorprone: { 45*0ed15c77SAndroid Build Coastguard Worker javacflags: [ 46*0ed15c77SAndroid Build Coastguard Worker "-Xep:EqualsNull:WARN", 47*0ed15c77SAndroid Build Coastguard Worker "-Xep:BoxedPrimitiveEquality:WARN", 48*0ed15c77SAndroid Build Coastguard Worker "-Xep:SelfAssignment:WARN", 49*0ed15c77SAndroid Build Coastguard Worker ], 50*0ed15c77SAndroid Build Coastguard Worker }, 51*0ed15c77SAndroid Build Coastguard Worker} 52