chromium/chrome/test/android/javatests/src/org/chromium/chrome/browser/perf/AndroidManifest.xml

<!--
 * Copyright 2023 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"
      xmlns:tools="http://schemas.android.com/tools"
      package="org.chromium.chrome.startup.benchmark.tests">

    <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application>
        <!-- We do not need/want androidx.profileinstaller to run on startup -->
        <provider android:name="androidx.startup.InitializationProvider"
                tools:node="remove" />
    </application>

    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
        android:targetPackage="org.chromium.chrome.startup.benchmark.tests"
        android:label="Runner for org.chromium.chrome.startup.benchmark.tests"/>
</manifest>