blob: 03f5f4104c8c4a6e9425a22e0faa86f6de7a72c3 [file] [log] [blame]
{% extends "chrome/android/java/AndroidManifest.xml" %}
{% import 'android_webview/nonembedded/java/AndroidManifest.xml' as webview %}
## Copyright 2016 The Chromium Authors. All rights reserved.
## Use of this source code is governed by a BSD-style license that can be
## found in the LICENSE file.
## Note: This is a jinja2 template, processed at build time into the final manifest.
##
{% block application_name %}
{%- if enable_isolated_splits -%}
org.chromium.chrome.browser.base.SplitMonochromeApplication
{%- else -%}
org.chromium.chrome.browser.MonochromeApplication
{%- endif -%}
{% endblock %}
##
## The below is same as internal version, it seems that jinja doesn't have
## a good way to share it, this code has to be duplicated.
##
{% block extra_application_attributes %}
{{ super() }}
android:multiArch="true"
android:extractNativeLibs="false"
{{use32bitAbi|default('')}}
{% endblock %}
{% block extra_keyset_definitions %}
<!-- No keyset definitions should exist for any monochrome apks -->
{% endblock %}
{% block base_application_definitions %}
{{ super() }}
{{ webview.common(manifest_package, webview_library) }}
{% endblock %}