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

Side by Side Diff: android_webview/apk/java/AndroidManifest.xml

Issue 2634563002: android_webview: support building a stub WebView. (Closed)
Patch Set: add comment Created 3 years, 11 months 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the 4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file. 5 LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 xmlns:tools="http://schemas.android.com/tools" 9 xmlns:tools="http://schemas.android.com/tools"
10 package="{{package|default('com.android.webview')}}"> 10 package="{{package|default('com.android.webview')}}">
(...skipping 27 matching lines...) Expand all
38 <meta-data android:name="com.android.webview.WebViewLibrary" 38 <meta-data android:name="com.android.webview.WebViewLibrary"
39 android:value="{{ webview_lib }}" /> 39 android:value="{{ webview_lib }}" />
40 <service android:name="org.chromium.android_webview.crash.CrashRecei verService" 40 <service android:name="org.chromium.android_webview.crash.CrashRecei verService"
41 android:exported="true" 41 android:exported="true"
42 android:process=":crash_receiver_service"/> 42 android:process=":crash_receiver_service"/>
43 <service android:name="org.chromium.android_webview.crash.MinidumpUp loadJobService" 43 <service android:name="org.chromium.android_webview.crash.MinidumpUp loadJobService"
44 android:permission="android.permission.BIND_JOB_SERVICE" 44 android:permission="android.permission.BIND_JOB_SERVICE"
45 android:exported="true" 45 android:exported="true"
46 android:process=":crash_receiver_service"/> 46 android:process=":crash_receiver_service"/>
47 {% endmacro %} 47 {% endmacro %}
48 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so ') }} 48 {{ common(package|default('com.android.webview'), library|default('libwe bviewchromium.so')) }}
49 {% if donor_package is defined %}
50 <meta-data android:name="com.android.webview.WebViewDonorPackage"
51 android:value="{{ donor_package }}" />
michaelbai 2017/01/18 22:59:21 Do you want to have AOSP donor? if not, is it inte
Torne 2017/01/19 14:23:12 Yes, I intend to make this work for system_webview
52 {% endif %}
49 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 53 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
50 android:value="1"/> 54 android:value="1"/>
51 <service android:name="org.chromium.content.app.SandboxedProcessService0 " 55 <service android:name="org.chromium.content.app.SandboxedProcessService0 "
52 android:process=":sandboxed_process0" 56 android:process=":sandboxed_process0"
53 android:isolatedProcess="true" 57 android:isolatedProcess="true"
54 android:exported="true" 58 android:exported="true"
55 android:externalService="true" 59 android:externalService="true"
56 tools:ignore="ExportedService" /> 60 tools:ignore="ExportedService" />
57 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 61 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
58 android:value="0"/> 62 android:value="0"/>
59 </application> 63 </application>
60 </manifest> 64 </manifest>
OLDNEW
« no previous file with comments | « no previous file | android_webview/system_webview_apk_tmpl.gni » ('j') | build/android/gyp/write_ordered_libraries.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698