Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2542)

Unified Diff: chrome/android/java/AndroidManifest_monochrome.xml

Issue 2501153002: Build public monochrome (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 %}

Powered by Google App Engine
This is Rietveld 408576698