Fix build break
[chromium-blink-merge.git] / content / shell / android / browsertests_apk / AndroidManifest.xml
blob49ef1f3150ca2a663026fbbc0b240c2a83299b7d
1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- Copyright (c) 2012 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.content_browsertests_apk">
12     <permission android:name="org.chromium.content_shell.permission.SANDBOX"
13             android:protectionLevel="signature" />
15     <application android:name="ContentBrowserTestsApplication"
16             android:label="ContentBrowserTests">
17         <activity android:name="ContentBrowserTestsActivity"
18                   android:launchMode="singleTask"
19                   android:theme="@android:style/Theme.Holo.Light.NoActionBar"
20                   android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
21                   android:hardwareAccelerated="true">
22             <intent-filter>
23                 <action android:name="android.intent.action.MAIN"/>
24                 <category android:name="android.intent.category.LAUNCHER"/>
25             </intent-filter>
26         </activity>
27         <!-- The following service entries exist in order to allow us to
28              start more than one sandboxed process. -->
30         <!-- NOTE: If you change the values of "android:process" for any of the below services,
31              you also need to update kHelperProcessExecutableName in chrome_constants.cc. -->
32         <service android:name="org.chromium.content.app.SandboxedProcessService0"
33                  android:process=":sandboxed_process0"
34                  android:permission="org.chromium.content_shell.permission.SANDBOX"
35                  android:isolatedProcess="true"
36                  android:exported="false" />
37         <service android:name="org.chromium.content.app.SandboxedProcessService1"
38                  android:process=":sandboxed_process1"
39                  android:permission="org.chromium.content_shell.permission.SANDBOX"
40                  android:isolatedProcess="true"
41                  android:exported="false" />
42         <service android:name="org.chromium.content.app.SandboxedProcessService2"
43                  android:process=":sandboxed_process2"
44                  android:permission="org.chromium.content_shell.permission.SANDBOX"
45                  android:isolatedProcess="true"
46                  android:exported="false" />
47         <service android:name="org.chromium.content.app.SandboxedProcessService3"
48                  android:process=":sandboxed_process3"
49                  android:permission="org.chromium.content_shell.permission.SANDBOX"
50                  android:isolatedProcess="true"
51                  android:exported="false" />
52         <service android:name="org.chromium.content.app.SandboxedProcessService4"
53                  android:process=":sandboxed_process4"
54                  android:permission="org.chromium.content_shell.permission.SANDBOX"
55                  android:isolatedProcess="true"
56                  android:exported="false" />
57         <service android:name="org.chromium.content.app.SandboxedProcessService5"
58                  android:process=":sandboxed_process5"
59                  android:permission="org.chromium.content_shell.permission.SANDBOX"
60                  android:isolatedProcess="true"
61                  android:exported="false" />
62     </application>
64     <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
65     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
66     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
67     <uses-permission android:name="android.permission.CAMERA" />
68     <uses-permission android:name="android.permission.INTERNET"/>
69     <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
70     <uses-permission android:name="android.permission.RECORD_AUDIO"/>
71     <uses-permission android:name="android.permission.VIBRATE"/>
72     <uses-permission android:name="android.permission.WAKE_LOCK"/>
73     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
74 </manifest>