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

Side by Side Diff: content/shell/android/browsertests_apk/AndroidManifest.xml.jinja2

Issue 1165523002: [Android] Refactor browser test execution. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add content/shell/android/browsertests/ to components/test/DEPS Created 5 years, 6 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. 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">
11 11
12 <application android:name="ContentBrowserTestsApplication" 12 <application android:name="ContentBrowserTestsApplication"
13 android:label="ContentBrowserTests"> 13 android:label="ContentBrowserTests">
14 <activity android:name="ContentBrowserTestsActivity" 14 <activity android:name="ContentBrowserTestsActivity"
15 android:launchMode="singleTask" 15 android:launchMode="singleTask"
16 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 16 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
17 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 17 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
18 android:hardwareAccelerated="true"> 18 android:hardwareAccelerated="true"
19 android:process=":test_process">
19 <intent-filter> 20 <intent-filter>
20 <action android:name="android.intent.action.MAIN"/> 21 <action android:name="android.intent.action.MAIN"/>
21 <category android:name="android.intent.category.LAUNCHER"/> 22 <category android:name="android.intent.category.LAUNCHER"/>
22 </intent-filter> 23 </intent-filter>
23 </activity> 24 </activity>
24 <!-- The following service entries exist in order to allow us to 25 <!-- The following service entries exist in order to allow us to
25 start more than one sandboxed process. --> 26 start more than one sandboxed process. -->
26 27
27 <!-- NOTE: If you change the values of "android:process" for any of the below services, 28 <!-- NOTE: If you change the values of "android:process" for any of the below services,
28 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. --> 29 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 66 <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.ACCESS_NETWORK_STATE"/>
67 <uses-permission android:name="android.permission.CAMERA" /> 68 <uses-permission android:name="android.permission.CAMERA" />
68 <uses-permission android:name="android.permission.INTERNET"/> 69 <uses-permission android:name="android.permission.INTERNET"/>
69 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 70 <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.RECORD_AUDIO"/>
71 <uses-permission android:name="android.permission.VIBRATE"/> 72 <uses-permission android:name="android.permission.VIBRATE"/>
72 <uses-permission android:name="android.permission.WAKE_LOCK"/> 73 <uses-permission android:name="android.permission.WAKE_LOCK"/>
73 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 74 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
74 </manifest> 75 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698