OLD | NEW |
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. | 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 | 4 |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 | 8 |
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
10 package="org.chromium.content_browsertests_apk"> | 10 package="org.chromium.content_browsertests_apk"> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 {% set num_privileged_services = 3 %} | 51 {% set num_privileged_services = 3 %} |
52 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 52 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
53 android:value="{{ num_privileged_services }}"/> | 53 android:value="{{ num_privileged_services }}"/> |
54 {% for i in range(num_privileged_services) %} | 54 {% for i in range(num_privileged_services) %} |
55 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 55 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
56 android:process=":privileged_process{{ i }}" | 56 android:process=":privileged_process{{ i }}" |
57 android:isolatedProcess="false" | 57 android:isolatedProcess="false" |
58 android:exported="false" /> | 58 android:exported="false" /> |
59 {% endfor %} | 59 {% endfor %} |
60 | 60 |
61 <!-- Service Worker Background Sync service listener --> | 61 <!-- Service Worker Background Sync GCM scheduler task --> |
62 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch
erService" | 62 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch
erService" |
63 android:exported="false" /> | 63 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" |
64 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc
herService$Receiver"> | 64 android:exported="true"> |
65 <intent-filter> | 65 <intent-filter> |
66 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 66 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> |
67 </intent-filter> | 67 </intent-filter> |
68 </receiver> | 68 </service> |
69 | 69 |
70 </application> | 70 </application> |
71 | 71 |
72 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument
ationTestRunner" | 72 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument
ationTestRunner" |
73 android:label="ContentBrowserTests" | 73 android:label="ContentBrowserTests" |
74 android:targetPackage="org.chromium.content_browsertests_apk"/> | 74 android:targetPackage="org.chromium.content_browsertests_apk"/> |
75 </manifest> | 75 </manifest> |
OLD | NEW |