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

Side by Side Diff: components/test/android/browsertests_apk/AndroidManifest.xml.jinja2

Issue 1173363008: [Android] Refactor browser test execution. (RELAND) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. 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 2015 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2015 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.components_browsertests_apk"> 10 package="org.chromium.components_browsertests_apk">
11 11
12 <application android:name="ComponentsBrowserTestsApplication" 12 <application android:name="ComponentsBrowserTestsApplication"
13 android:label="ComponentsBrowserTests"> 13 android:label="ComponentsBrowserTests">
14 <activity android:name="ComponentsBrowserTestsActivity" 14 <activity android:name="ComponentsBrowserTestsActivity"
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 26 matching lines...) Expand all
55 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 56 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
56 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
57 <uses-permission android:name="android.permission.CAMERA" /> 58 <uses-permission android:name="android.permission.CAMERA" />
58 <uses-permission android:name="android.permission.INTERNET"/> 59 <uses-permission android:name="android.permission.INTERNET"/>
59 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 60 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
60 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 61 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
61 <uses-permission android:name="android.permission.VIBRATE"/> 62 <uses-permission android:name="android.permission.VIBRATE"/>
62 <uses-permission android:name="android.permission.WAKE_LOCK"/> 63 <uses-permission android:name="android.permission.WAKE_LOCK"/>
63 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 64 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
64 </manifest> 65 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698