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

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

Issue 597063002: Revert of DevTools socket tunnel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glue
Patch Set: Created 6 years, 3 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
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
4 in the LICENSE file. -->
5 <!-- package name must be unique so suffix with "tests" so package loader
6 doesn't ignore this. -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="org.chromium.components.devtools_bridge.tests">
9 <application>
10 <uses-library android:name="android.test.runner" />
11 <service
12 android:name=".DebugService" >
13 </service>
14 <activity
15 android:name=".DebugActivity"
16 android:label="DevToolsBridge tests" >
17 <intent-filter>
18 <action android:name="android.intent.action.MAIN" />
19 <category android:name="android.intent.category.LAUNCHER" />
20 </intent-filter>
21 </activity>
22 </application>
23 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" />
24 <instrumentation android:name="android.test.InstrumentationTestRunner"
25 android:targetPackage="org.chromium.components.devtools_bridge.tests"
26 android:label="Tests for org.chromium.components.devtools_bridge"/>
27
28 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
29 <uses-permission android:name="android.permission.INJECT_EVENTS" />
30
31 <!-- For manual testing with Chrome Shell -->
32 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" / >
33
34 <!-- For manual testing with Clankium -->
35 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB UG" />
36 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698