Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2175)

Unified Diff: android_webview/javatests/AndroidManifest.xml

Issue 1034053002: [Android] Add an out-of-app instrumentation driver APK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittest_apk gn template Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/javatests/AndroidManifest.xml
diff --git a/android_webview/javatests/AndroidManifest.xml b/android_webview/javatests/AndroidManifest.xml
index 63e5e0b8ac6c11cdf04b7095918b02074636801c..95c4067b299f9d2cae88a866dc15cf3e0dc42d19 100644
--- a/android_webview/javatests/AndroidManifest.xml
+++ b/android_webview/javatests/AndroidManifest.xml
@@ -7,7 +7,7 @@
<!-- TODO(boliu): Change minSdkVersion to 19 when bots no longer try
to install webview apks on < K devices. crbug.com/474374 -->
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
- <instrumentation android:name="android.test.InstrumentationTestRunner"
+ <instrumentation android:name="org.chromium.base.test.InstrumentationTestRunner"
android:targetPackage="org.chromium.android_webview.shell"
android:label="Tests for org.chromium.android_webview"/>
<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
@@ -19,5 +19,7 @@
needed when building test cases. -->
<application android:hardwareAccelerated="false">
<uses-library android:name="android.test.runner" />
+ <activity android:name="org.chromium.test.broker.OnDeviceInstrumentationBroker"
+ android:exported="true"/>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698