| OLD | NEW |
| 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 <activity | 14 <activity |
| 15 android:name=".DebugActivity" | 15 android:name=".DebugActivity" |
| 16 android:label="DevToolsBridge tests" > | 16 android:label="DevToolsBridge tests" > |
| 17 <intent-filter> | 17 <intent-filter> |
| 18 <action android:name="android.intent.action.MAIN" /> | 18 <action android:name="android.intent.action.MAIN" /> |
| 19 <category android:name="android.intent.category.LAUNCHER" /> | 19 <category android:name="android.intent.category.LAUNCHER" /> |
| 20 </intent-filter> | 20 </intent-filter> |
| 21 </activity> | 21 </activity> |
| 22 </application> | 22 </application> |
| 23 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" /> | 23 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" /> |
| 24 <instrumentation android:name="android.test.InstrumentationTestRunner" | 24 <instrumentation android:name="android.test.InstrumentationTestRunner" |
| 25 android:targetPackage="org.chromium.components.devtools_bridge.tests" | 25 android:targetPackage="org.chromium.components.devtools_bridge.tests" |
| 26 android:label="Tests for org.chromium.components.devtools_bridge"/> | 26 android:label="Tests for org.chromium.components.devtools_bridge"/> |
| 27 | 27 |
| 28 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> | 28 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> |
| 29 <uses-permission android:name="android.permission.INJECT_EVENTS" /> | 29 <uses-permission android:name="android.permission.INJECT_EVENTS" /> |
| 30 <uses-permission android:name="android.permission.INTERNET" /> |
| 30 | 31 |
| 31 <!-- For manual testing with Chrome Shell --> | 32 <!-- For manual testing with Chrome Shell --> |
| 32 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" /
> | 33 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" /
> |
| 33 | 34 |
| 34 <!-- For manual testing with Clankium --> | 35 <!-- For manual testing with Clankium --> |
| 35 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB
UG" /> | 36 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB
UG" /> |
| 36 </manifest> | 37 </manifest> |
| OLD | NEW |