Index: chrome/android/testshell/java/AndroidManifest.xml |
diff --git a/chrome/android/testshell/java/AndroidManifest.xml b/chrome/android/testshell/java/AndroidManifest.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..79430f7069a85fdd7a2e3c0e3430f11127e5516a |
--- /dev/null |
+++ b/chrome/android/testshell/java/AndroidManifest.xml |
@@ -0,0 +1,61 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+ |
+<!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+ |
+ Use of this source code is governed by a BSD-style license that can be |
+ found in the LICENSE file. |
+ --> |
+ |
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
+ package="org.chromium.chrome.testshell"> |
+ |
+ <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX" |
+ android:protectionLevel="signature" /> |
+ |
+ <application android:name="org.chromium.chrome.testshell.ChromiumTestShellApplication" |
+ android:label="ChromiumTestShell" |
+ android:debuggable="true"> |
+ <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellActivity" |
+ android:label="ChromiumTestShellActivity" |
+ android:hardwareAccelerated="true"> |
+ <intent-filter> |
+ <action android:name="android.intent.action.MAIN" /> |
+ <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
+ </intent-filter> |
+ </activity> |
+ <!-- The following service entries exist in order to allow us to |
+ start more than one sandboxed process. --> |
+ |
+ <!-- NOTE: If you change the values of "android:process" for any of the below services, |
+ you also need to update kHelperProcessExecutableName in chrome_constants.cc. --> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService0" |
+ android:process=":sandboxed_process0" |
+ android:permission="org.chromium.content_shell.permission.SANDBOX" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService1" |
+ android:process=":sandboxed_process1" |
+ android:permission="org.chromium.content_shell.permission.SANDBOX" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService2" |
+ android:process=":sandboxed_process2" |
+ android:permission="org.chromium.content_shell.permission.SANDBOX" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService3" |
+ android:process=":sandboxed_process3" |
+ android:permission="org.chromium.content_shell.permission.SANDBOX" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService4" |
+ android:process=":sandboxed_process4" |
+ android:permission="org.chromium.content_shell.permission.SANDBOX" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService5" |
+ android:process=":sandboxed_process5" |
+ android:permission="org.chromium.content_shell.permission.SANDBOX" |
+ android:exported="false" /> |
+ </application> |
+ |
+ <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> |
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
+ <uses-permission android:name="android.permission.INTERNET"/> |
+ <uses-permission android:name="android.permission.WAKE_LOCK"/> |
+</manifest> |