blob: 8207efc311e1a51cd0fb38ecf01b37e078f04582 [file] [log] [blame]
jenkins-agente069acc2021-08-10 19:11:13 +00001#
2# Copyright (C) 2014 The Android Open Source Project
3# Copyright 2020 Fairphone B.V.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18# Install the prebuilt webview apk.
19
20LOCAL_PATH := $(call my-dir)
21
22include $(CLEAR_VARS)
23
24LOCAL_MODULE := webview
25LOCAL_MODULE_CLASS := APPS
26LOCAL_CERTIFICATE := platform
27LOCAL_REQUIRED_MODULES := \
28 libwebviewchromium_loader \
29 libwebviewchromium_plat_support
30
31LOCAL_MODULE_TARGET_ARCH := arm
32my_src_arch := $(call get-prebuilt-src-arch,$(LOCAL_MODULE_TARGET_ARCH))
33LOCAL_SRC_FILES := prebuilt/$(my_src_arch)/webview.apk
34
35LOCAL_PREBUILT_JNI_LIBS_arm := @lib/armeabi-v7a/libwebviewchromium.so
36
37include $(BUILD_PREBUILT)