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