blob: db029bf9aae2032354f20445e7c56bde4f6c1237 [file] [log] [blame]
Torne (Richard Coles)976e7042014-12-08 12:34:29 +00001#
2# Copyright (C) 2014 The Android Open Source Project
Karsten Tauschec247b2b2018-10-08 14:26:48 +02003# Copyright 2018 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
26LOCAL_MULTILIB := both
27LOCAL_CERTIFICATE := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
28LOCAL_REQUIRED_MODULES := \
29 libwebviewchromium_loader \
30 libwebviewchromium_plat_support
31
Karsten Tauschec247b2b2018-10-08 14:26:48 +020032LOCAL_MODULE_TARGET_ARCH := arm
33LOCAL_SRC_FILES := prebuilt/arm/webview.apk
Torne (Richard Coles)976e7042014-12-08 12:34:29 +000034
35LOCAL_PREBUILT_JNI_LIBS_arm := @lib/armeabi-v7a/libwebviewchromium.so
Torne (Richard Coles)976e7042014-12-08 12:34:29 +000036
37include $(BUILD_PREBUILT)