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

Side by Side Diff: android_webview/tools/system_webview_shell/layout_tests/AndroidManifest.xml

Issue 2633733002: Convert WebView Layout test to JUnit4 (Closed)
Patch Set: rebase Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 2 <!--
3 * Copyright 2015 The Chromium Authors. All rights reserved. 3 * Copyright 2015 The Chromium Authors. All rights reserved.
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 --> 6 -->
7 7
8 <manifest 8 <manifest
9 xmlns:android="http://schemas.android.com/apk/res/android" 9 xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.webview_shell.test" 10 package="org.chromium.webview_shell.test"
(...skipping 12 matching lines...) Expand all
23 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> 23 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
24 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 24 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
25 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 25 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
26 26
27 <application android:hardwareAccelerated="false"> 27 <application android:hardwareAccelerated="false">
28 <uses-library android:name="android.test.runner" /> 28 <uses-library android:name="android.test.runner" />
29 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker" 29 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker"
30 android:exported="true"/> 30 android:exported="true"/>
31 </application> 31 </application>
32 32
33 <instrumentation android:name="org.chromium.webview_shell.test.WebViewLayout TestRunner" 33 <instrumentation android:name="android.support.test.runner.AndroidJUnitRunne r"
34 android:targetPackage="org.chromium.webview_shell" 34 android:targetPackage="org.chromium.webview_shell"
35 android:label="Layout tests for org.chromium.webview_shell" /> 35 android:label="Layout tests for org.chromium.webview_shell"
36 chromium-junit4="true"/>
36 </manifest> 37 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698