<?xml version="1.0" encoding="utf-8"?>
this source code is governed by a BSD-style license that can be found
in the LICENSE file. -->
doesn't ignore this. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.chromium.content_shell.tests">
package needs to link against the android.test library, which is
needed when building test cases. -->
<application>
<uses-library android:name="android.test.runner" />
</application>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="org.chromium.content_shell"
android:label="Tests for org.chromium.content_shell"/>
<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
<uses-permission android:name="android.permission.INJECT_EVENTS" />
</manifest>