1*220ed509SXin Li// 2*220ed509SXin Li// Copyright (C) 2011 The Android Open Source Project 3*220ed509SXin Li// 4*220ed509SXin Li// Licensed under the Apache License, Version 2.0 (the "License"); 5*220ed509SXin Li// you may not use this file except in compliance with the License. 6*220ed509SXin Li// You may obtain a copy of the License at 7*220ed509SXin Li// 8*220ed509SXin Li// http://www.apache.org/licenses/LICENSE-2.0 9*220ed509SXin Li// 10*220ed509SXin Li// Unless required by applicable law or agreed to in writing, software 11*220ed509SXin Li// distributed under the License is distributed on an "AS IS" BASIS, 12*220ed509SXin Li// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*220ed509SXin Li// See the License for the specific language governing permissions and 14*220ed509SXin Li// limitations under the License. 15*220ed509SXin Li// 16*220ed509SXin Li 17*220ed509SXin Lipackage { 18*220ed509SXin Li default_applicable_licenses: ["external_mockwebserver_license"], 19*220ed509SXin Li} 20*220ed509SXin Li 21*220ed509SXin Li// Added automatically by a large-scale-change 22*220ed509SXin Li// See: http://go/android-license-faq 23*220ed509SXin Lilicense { 24*220ed509SXin Li name: "external_mockwebserver_license", 25*220ed509SXin Li visibility: [":__subpackages__"], 26*220ed509SXin Li license_kinds: [ 27*220ed509SXin Li "SPDX-license-identifier-Apache-2.0", 28*220ed509SXin Li ], 29*220ed509SXin Li license_text: [ 30*220ed509SXin Li "COPYING", 31*220ed509SXin Li ], 32*220ed509SXin Li} 33*220ed509SXin Li 34*220ed509SXin Lijava_library { 35*220ed509SXin Li name: "mockwebserver", 36*220ed509SXin Li hostdex: true, 37*220ed509SXin Li srcs: ["src/main/java/**/*.java"], 38*220ed509SXin Li 39*220ed509SXin Li // Some tests (CtsVerifier, etc) that are built with SDK are using this library, 40*220ed509SXin Li // thus this lib should be built with public APIs. Since this lib is not specific 41*220ed509SXin Li // to Android, core_current which is a core-Java subset of Android SDK is used. 42*220ed509SXin Li sdk_version: "core_current", 43*220ed509SXin Li 44*220ed509SXin Li} 45