OLD | NEW |
(Empty) | |
| 1 {% extends "chrome/android/java/AndroidManifest.xml" %} |
| 2 {% import 'android_webview/apk/java/AndroidManifest.xml' as webview %} |
| 3 |
| 4 ## Copyright 2016 The Chromium Authors. All rights reserved. |
| 5 ## Use of this source code is governed by a BSD-style license that can be |
| 6 ## found in the LICENSE file. |
| 7 |
| 8 ## Note: This is a jinja2 template, processed at build time into the final manif
est. |
| 9 ## |
| 10 |
| 11 {% block application_name %}org.chromium.chrome.browser.MonochromeApplication{%
endblock %} |
| 12 |
| 13 ## |
| 14 ## The below is same as internal version, it seems that jinja doesn't have |
| 15 ## a good way to share it, this code has to be duplicated. |
| 16 ## |
| 17 |
| 18 {% block extra_application_attributes %} |
| 19 {{ super() }} |
| 20 android:multiArch="true" |
| 21 android:extractNativeLibs="false" |
| 22 {{use32bitAbi|default('')}} |
| 23 {% endblock %} |
| 24 |
| 25 {% block extra_keyset_definitions %} |
| 26 <!-- No keyset definitions should exist for any monochrome apks --> |
| 27 {% endblock %} |
| 28 |
| 29 {% block extra_application_definitions %} |
| 30 {{ super() }} |
| 31 {{ webview.common(manifest_package, 'libmonochrome.so') }} |
| 32 {% endblock %} |
OLD | NEW |