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

Side by Side Diff: chrome/android/java/AndroidManifest_monochrome.xml

Issue 2501153002: Build public monochrome (Closed)
Patch Set: address comments 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 unified diff | Download patch
« no previous file with comments | « chrome/android/chrome_public_apk_tmpl.gni ('k') | chrome/android/java/templates/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 %}
OLDNEW
« no previous file with comments | « chrome/android/chrome_public_apk_tmpl.gni ('k') | chrome/android/java/templates/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698