1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17

content / shell / android / javatests / AndroidManifest.xml [blame]

{% extends "content/shell/android/shell_apk/AndroidManifest.xml.jinja2" %}

# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{% block application_label %}Content Shell Test{% endblock %}

{% block extra_uses_permissions %}
    <uses-permission android:name="android.permission.READ_CONTACTS" />
{% endblock %}

{% block extra_root_definitions %}
    <instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUnitRunner"
        android:targetPackage="{{manifest_package}}"
        android:label="JUnit4-based tests for content shell" />
{% endblock %}