blob: 8207efc311e1a51cd0fb38ecf01b37e078f04582 [file] [log] [blame]
Torne (Richard Coles)976e7042014-12-08 12:34:29 +00001#
2# Copyright (C) 2014 The Android Open Source Project
Karsten Tausche64b62de2020-10-27 10:38:58 +01003# Copyright 2020 Fairphone B.V.
Torne (Richard Coles)976e7042014-12-08 12:34:29 +00004#
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
Karsten Tausche8d806e72020-10-27 10:46:41 +010026LOCAL_CERTIFICATE := platform
Torne (Richard Coles)976e7042014-12-08 12:34:29 +000027LOCAL_REQUIRED_MODULES := \
28 libwebviewchromium_loader \
29 libwebviewchromium_plat_support
30
Karsten Tausche64b62de2020-10-27 10:38:58 +010031LOCAL_MODULE_TARGET_ARCH := arm
Torne (Richard Coles)976e7042014-12-08 12:34:29 +000032my_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
Torne (Richard Coles)976e7042014-12-08 12:34:29 +000036
37include $(BUILD_PREBUILT)