Give names to all utility processes.
[chromium-blink-merge.git] / content / shell / android / linker_test_apk / AndroidManifest.xml.jinja2
blob076d9bd59099e1c91e53036994d620cdced8304b
1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- Copyright 2013 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 -->
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.chromium_linker_test_apk">
12 <application android:name="ChromiumLinkerTestApplication"
13 android:label="ChromiumLinkerTest">
14 <activity android:name="ChromiumLinkerTestActivity"
15 android:launchMode="singleTask"
16 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
17 android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
18 android:hardwareAccelerated="true">
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN"/>
21 <category android:name="android.intent.category.LAUNCHER"/>
22 </intent-filter>
23 </activity>
24 <!-- The following service entries exist in order to allow us to
25 start more than one sandboxed process. -->
27 <!-- NOTE: If you change the values of "android:process" for any of the below services,
28 you also need to update kHelperProcessExecutableName in chrome_constants.cc. -->
29 {% set num_sandboxed_services = 20 %}
30 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
31 android:value="{{ num_sandboxed_services }}"/>
32 {% for i in range(num_sandboxed_services) %}
33 <service android:name="org.chromium.content.app.SandboxedProcessService{{ i }}"
34 android:process=":sandboxed_process{{ i }}"
35 android:isolatedProcess="true"
36 android:exported="false" />
37 {% endfor %}
39 {% set num_privileged_services = 3 %}
40 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
41 android:value="{{ num_privileged_services }}"/>
42 {% for i in range(num_privileged_services) %}
43 <service android:name="org.chromium.content.app.PrivilegedProcessService{{ i }}"
44 android:process=":privileged_process{{ i }}"
45 android:isolatedProcess="false"
46 android:exported="false" />
47 {% endfor %}
48 </application>
50 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
51 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
52 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
53 <uses-permission android:name="android.permission.CAMERA" />
54 <uses-permission android:name="android.permission.INTERNET"/>
55 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
56 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
57 <uses-permission android:name="android.permission.VIBRATE"/>
58 <uses-permission android:name="android.permission.WAKE_LOCK"/>
59 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
60 </manifest>