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

Side by Side Diff: android_webview/tools/automated_ui_tests/BUILD.gn

Issue 2349663003: Adding WebView select tests to test select element's dropdown menu (Closed)
Patch Set: use BaseJUnit4ClassRunner Created 4 years, 1 month 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 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 group("webview_ui_test_app") { 8 group("webview_ui_test_app") {
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
(...skipping 23 matching lines...) Expand all
34 android_resources("webview_ui_test_app_apk_resources") { 34 android_resources("webview_ui_test_app_apk_resources") {
35 resource_dirs = [ "java/res" ] 35 resource_dirs = [ "java/res" ]
36 custom_package = "org.chromium.webview_ui_test" 36 custom_package = "org.chromium.webview_ui_test"
37 } 37 }
38 38
39 instrumentation_test_apk("webview_ui_test_app_test_apk") { 39 instrumentation_test_apk("webview_ui_test_app_test_apk") {
40 apk_name = "WebViewUiTestAppTest" 40 apk_name = "WebViewUiTestAppTest"
41 apk_under_test = ":webview_ui_test_app_apk" 41 apk_under_test = ":webview_ui_test_app_apk"
42 android_manifest = "javatests/AndroidManifest.xml" 42 android_manifest = "javatests/AndroidManifest.xml"
43 java_files = [ 43 java_files = [
44 "javatests/src/org/chromium/webview_ui_test/test/DropDownListTest.java",
44 "javatests/src/org/chromium/webview_ui_test/test/LoadDataTest.java", 45 "javatests/src/org/chromium/webview_ui_test/test/LoadDataTest.java",
45 "javatests/src/org/chromium/webview_ui_test/test/WebViewTestBase.java", 46 "javatests/src/org/chromium/webview_ui_test/test/WebViewTestBase.java",
46 "javatests/src/org/chromium/webview_ui_test/test/WebViewJSTest.java", 47 "javatests/src/org/chromium/webview_ui_test/test/WebViewJSTest.java",
48 "javatests/src/org/chromium/webview_ui_test/test/util/DropDownListUtils.java ",
49 "javatests/src/org/chromium/webview_ui_test/test/util/ScrollByAction.java",
47 "javatests/src/org/chromium/webview_ui_test/test/util/UseLayout.java", 50 "javatests/src/org/chromium/webview_ui_test/test/util/UseLayout.java",
51 "javatests/src/org/chromium/webview_ui_test/test/util/UseWideViewPortAction. java",
48 "javatests/src/org/chromium/webview_ui_test/test/util/WebViewUiTestRule.java ", 52 "javatests/src/org/chromium/webview_ui_test/test/util/WebViewUiTestRule.java ",
49 "javatests/src/org/chromium/webview_ui_test/test/util/WebViewSyncWrapper.jav a", 53 "javatests/src/org/chromium/webview_ui_test/test/util/WebViewSyncWrapper.jav a",
50 ] 54 ]
51 deps = [ 55 deps = [
52 ":webview_ui_test_app_apk_resources", 56 ":webview_ui_test_app_apk_resources",
53 ":webview_ui_test_app_java", 57 ":webview_ui_test_app_java",
54 "//base:base_java", 58 "//base:base_java",
55 "//base:base_java_test_support", 59 "//base:base_java_test_support",
56 "//third_party/android_support_test_runner:rules_java", 60 "//third_party/android_support_test_runner:rules_java",
57 "//third_party/android_support_test_runner:runner_java", 61 "//third_party/android_support_test_runner:runner_java",
58 "//third_party/espresso:espresso_core_java", 62 "//third_party/espresso:espresso_core_java",
59 "//third_party/espresso:espresso_web_java", 63 "//third_party/espresso:espresso_web_java",
60 "//third_party/hamcrest:hamcrest_java", 64 "//third_party/hamcrest:hamcrest_java",
61 "//third_party/junit", 65 "//third_party/junit",
62 "//third_party/ub-uiautomator:ub_uiautomator_java", 66 "//third_party/ub-uiautomator:ub_uiautomator_java",
63 ] 67 ]
64 data = [ 68 data = [
65 "test/data/", 69 "test/data/",
66 ] 70 ]
67 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698