1// 2// Copyright (C) 2014 The Android Open Source Project 3// 4// Licensed under the Apache License, Version 2.0 (the "License"); 5// you may not use this file except in compliance with the License. 6// You may obtain a copy of the License at 7// 8// http://www.apache.org/licenses/LICENSE-2.0 9// 10// Unless required by applicable law or agreed to in writing, software 11// distributed under the License is distributed on an "AS IS" BASIS, 12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13// See the License for the specific language governing permissions and 14// limitations under the License. 15// 16 17// Install the prebuilt webview apk. 18package { 19 default_applicable_licenses: ["external_chromium-webview_license"], 20} 21 22// Added automatically by a large-scale-change 23// See: http://go/android-license-faq 24license { 25 name: "external_chromium-webview_license", 26 visibility: [":__subpackages__"], 27 license_kinds: [ 28 "SPDX-license-identifier-Unicode-DFS", 29 ], 30 // large-scale-change unable to identify any license_text files 31} 32 33android_app_import { 34 name: "webview", 35 product_specific: true, 36 default_dev_cert: true, 37 required: [ 38 "libwebviewchromium_loader", 39 "libwebviewchromium_plat_support", 40 ], 41 arch: { 42 arm: { 43 apk: "prebuilt/arm//webview.apk", 44 }, 45 arm64: { 46 apk: "prebuilt/arm64/webview.apk", 47 }, 48 x86: { 49 apk: "prebuilt/x86/webview.apk", 50 }, 51 x86_64: { 52 apk: "prebuilt/x86_64/webview.apk", 53 }, 54 }, 55} 56