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

Side by Side Diff: components/devtools_bridge/android/javatests/AndroidManifest.xml

Issue 540383002: Implementation of DevToolsBridgeServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@session
Patch Set: Created 6 years, 2 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 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of
3 this source code is governed by a BSD-style license that can be found 3 this source code is governed by a BSD-style license that can be found
4 in the LICENSE file. --> 4 in the LICENSE file. -->
5 <!-- package name must be unique so suffix with "tests" so package loader 5 <!-- package name must be unique so suffix with "tests" so package loader
6 doesn't ignore this. --> 6 doesn't ignore this. -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="org.chromium.components.devtools_bridge.tests"> 8 package="org.chromium.components.devtools_bridge.tests">
9 <application> 9 <application>
10 <uses-library android:name="android.test.runner" /> 10 <uses-library android:name="android.test.runner" />
11 <service 11 <service
12 android:name=".DebugService" > 12 android:name=".DebugService" >
13 </service> 13 </service>
14 <service
15 android:name="org.chromium.components.devtools_bridge.DevToolsBridge ServerSandbox$Service" />
14 <activity 16 <activity
15 android:name=".DebugActivity" 17 android:name=".DebugActivity"
16 android:label="DevToolsBridge tests" > 18 android:label="DevToolsBridge tests" >
17 <intent-filter> 19 <intent-filter>
18 <action android:name="android.intent.action.MAIN" /> 20 <action android:name="android.intent.action.MAIN" />
19 <category android:name="android.intent.category.LAUNCHER" /> 21 <category android:name="android.intent.category.LAUNCHER" />
20 </intent-filter> 22 </intent-filter>
21 </activity> 23 </activity>
22 </application> 24 </application>
23 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" /> 25 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" />
24 <instrumentation android:name="android.test.InstrumentationTestRunner" 26 <instrumentation android:name="android.test.InstrumentationTestRunner"
25 android:targetPackage="org.chromium.components.devtools_bridge.tests" 27 android:targetPackage="org.chromium.components.devtools_bridge.tests"
26 android:label="Tests for org.chromium.components.devtools_bridge"/> 28 android:label="Tests for org.chromium.components.devtools_bridge"/>
27 29
28 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> 30 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
29 <uses-permission android:name="android.permission.INJECT_EVENTS" /> 31 <uses-permission android:name="android.permission.INJECT_EVENTS" />
30 <uses-permission android:name="android.permission.INTERNET" /> 32 <uses-permission android:name="android.permission.INTERNET" />
31 33
32 <!-- For manual testing with Chrome Shell --> 34 <!-- For manual testing with Chrome Shell -->
33 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" / > 35 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" / >
34 36
35 <!-- For manual testing with Clankium --> 37 <!-- For manual testing with Clankium -->
36 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB UG" /> 38 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB UG" />
37 </manifest> 39 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698