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

Side by Side Diff: chrome/android/shell/fortest/AndroidManifest.xml

Issue 457883002: Use Sync FakeServer in Android tests via custom APK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 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.chrome.shell"> 10 package="org.chromium.chrome.shellfortest">
pval...(no longer on Chromium) 2014/08/09 00:48:21 I blindly copied the the manifest file from chrome
Yaron 2014/08/12 17:22:03 Yes, copy is unfortunately the way to go. For a wh
pval...(no longer on Chromium) 2014/08/14 00:35:39 Moved
11 11
12 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" /> 12 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" />
13 <permission android:name="org.chromium.chrome.shell.permission.SANDBOX" 13 <permission android:name="org.chromium.chrome.shell.permission.SANDBOX"
14 android:protectionLevel="signature" /> 14 android:protectionLevel="signature" />
15 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 15 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
16 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 16 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
17 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> 17 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
18 <uses-permission android:name="android.permission.CAMERA" /> 18 <uses-permission android:name="android.permission.CAMERA" />
19 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 19 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
20 <uses-permission android:name="android.permission.INTERNET"/> 20 <uses-permission android:name="android.permission.INTERNET"/>
21 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 21 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
22 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 22 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
23 <uses-permission android:name="android.permission.VIBRATE"/> 23 <uses-permission android:name="android.permission.VIBRATE"/>
24 <uses-permission android:name="android.permission.WAKE_LOCK"/> 24 <uses-permission android:name="android.permission.WAKE_LOCK"/>
25 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/> 25 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/>
26 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> 26 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
27 <uses-permission android:name="android.permission.USE_CREDENTIALS" /> 27 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
28 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 28 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
29 <!-- Only Chrome can receive the messages and registration result for GCM -- > 29 <!-- Only Chrome can receive the messages and registration result for GCM -- >
30 <permission android:name="org.chromium.chrome.shell.permission.C2D_MESSAGE" 30 <permission android:name="org.chromium.chrome.shell.permission.C2D_MESSAGE"
31 android:protectionLevel="signature" /> 31 android:protectionLevel="signature" />
32 <uses-permission android:name="org.chromium.chrome.shell.permission.C2D_MESS AGE" /> 32 <uses-permission android:name="org.chromium.chrome.shell.permission.C2D_MESS AGE" />
33 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / > 33 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / >
34 34
35 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" 35 <application android:name="org.chromium.chrome.shell.ChromeShellApplication"
36 android:icon="@mipmap/app_icon" 36 android:icon="@mipmap/app_icon"
37 android:label="Chrome Shell"> 37 android:label="Chrome Shell For Test">
38 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" 38 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity"
39 android:launchMode="singleTask" 39 android:launchMode="singleTask"
40 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 40 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
41 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 41 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
42 android:hardwareAccelerated="true"> 42 android:hardwareAccelerated="true">
43 <intent-filter> 43 <intent-filter>
44 <action android:name="android.intent.action.MAIN" /> 44 <action android:name="android.intent.action.MAIN" />
45 <category android:name="android.intent.category.LAUNCHER" /> 45 <category android:name="android.intent.category.LAUNCHER" />
46 </intent-filter> 46 </intent-filter>
47 </activity> 47 </activity>
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 <service android:exported="false" 207 <service android:exported="false"
208 android:name="org.chromium.components.gcm_driver.GCMListener"/> 208 android:name="org.chromium.components.gcm_driver.GCMListener"/>
209 <receiver android:exported="false" 209 <receiver android:exported="false"
210 android:name="org.chromium.components.gcm_driver.GCMListener$R eceiver"> 210 android:name="org.chromium.components.gcm_driver.GCMListener$R eceiver">
211 <intent-filter> 211 <intent-filter>
212 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " /> 212 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " />
213 </intent-filter> 213 </intent-filter>
214 </receiver> 214 </receiver>
215 215
216 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r" 216 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r"
217 android:authorities="org.chromium.chrome.shell" 217 android:authorities="org.chromium.chrome.shellfortest"
218 android:exported="true" /> 218 android:exported="true" />
219 219
220 <!-- Sync adapter for browser sync. --> 220 <!-- Sync adapter for browser sync. -->
221 <service android:exported="false" 221 <service android:exported="false"
222 android:name="org.chromium.chrome.shell.sync.ChromeShellSyncAda pterService"> 222 android:name="org.chromium.chrome.shell.sync.ChromeShellSyncAda pterService">
223 <intent-filter> 223 <intent-filter>
224 <action android:name="android.content.SyncAdapter" /> 224 <action android:name="android.content.SyncAdapter" />
225 </intent-filter> 225 </intent-filter>
226 <meta-data android:name="android.content.SyncAdapter" 226 <meta-data android:name="android.content.SyncAdapter"
227 android:resource="@xml/syncadapter" /> 227 android:resource="@xml/syncadapter" />
228 </service> 228 </service>
229 229
230 <!-- Broadcast receiver that will be notified of account changes. --> 230 <!-- Broadcast receiver that will be notified of account changes. -->
231 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> 231 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver">
232 <intent-filter> 232 <intent-filter>
233 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 233 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
234 </intent-filter> 234 </intent-filter>
235 </receiver> 235 </receiver>
236 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 236 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
237 android:value="org.chromium.content.browser.SmartClipProvider " /> 237 android:value="org.chromium.content.browser.SmartClipProvider " />
238 238
239 </application> 239 </application>
240 </manifest> 240 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698