Home | History | Annotate | Download | only in javatests
      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.DEBUG" />
     36 </manifest>
     37