chromium/android_webview/tools/automated_ui_tests/javatests/AndroidManifest.xml

<!--
 * Copyright 2016 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
-->

<manifest
      xmlns:android="http://schemas.android.com/apk/res/android"
      package="org.chromium.webview_ui_test">

    <application
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light" >
        <activity
            android:name="org.chromium.webview_ui_test.WebViewUiTestActivity"
            android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
        </activity>
    </application>

    <instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUnitRunner"
        android:targetPackage="org.chromium.webview_ui_test"
        android:label="Tests for org.chromium.webview_ui_test"/>
</manifest>