Index: chrome/android/java/AndroidManifest_monochrome.xml |
diff --git a/chrome/android/java/AndroidManifest_monochrome.xml b/chrome/android/java/AndroidManifest_monochrome.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5ae85dec51d1691a089fcdb347c257857585afe0 |
--- /dev/null |
+++ b/chrome/android/java/AndroidManifest_monochrome.xml |
@@ -0,0 +1,32 @@ |
+{% extends "chrome/android/java/AndroidManifest.xml" %} |
+{% import 'android_webview/apk/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 %}org.chromium.chrome.browser.MonochromeApplication{% 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 extra_application_definitions %} |
+{{ super() }} |
+{{ webview.common(manifest_package, 'libmonochrome.so') }} |
+{% endblock %} |