1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26

android_webview / tools / automated_ui_tests / javatests / AndroidManifest.xml [blame]

<!--
 * 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>