Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 22 matching lines...) Expand all Loading... | |
| 33 | 33 |
| 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 android_manifest = "javatests/AndroidManifest.xml" | 41 android_manifest = "javatests/AndroidManifest.xml" |
| 42 java_files = [ | 42 java_files = [ |
| 43 "javatests/src/org/chromium/webview_ui_test/test/ActionModeTest.java", | |
| 43 "javatests/src/org/chromium/webview_ui_test/test/LoadDataTest.java", | 44 "javatests/src/org/chromium/webview_ui_test/test/LoadDataTest.java", |
| 44 "javatests/src/org/chromium/webview_ui_test/test/WebViewTestBase.java", | 45 "javatests/src/org/chromium/webview_ui_test/test/WebViewTestBase.java", |
| 45 ] | 46 ] |
| 46 deps = [ | 47 deps = [ |
| 47 ":webview_ui_test_app_apk_resources", | 48 ":webview_ui_test_app_apk_resources", |
| 48 ":webview_ui_test_app_java", | 49 ":webview_ui_test_app_java", |
| 50 "//base:base_java", | |
| 51 "//third_party/android_support_test_runner:runner_java", | |
| 52 "//third_party/espresso:espresso_core_java", | |
| 53 "//third_party/espresso:espresso_intents_java", | |
| 54 "//third_party/espresso:espresso_web_java", | |
| 55 "//third_party/hamcrest:hamcrest_core_java", | |
| 56 "//third_party/hamcrest:hamcrest_integration_java", | |
| 57 "//third_party/hamcrest:hamcrest_library_java", | |
|
mikecase (-- gone --)
2016/07/25 21:19:01
We should see if we can get this to just have to d
aluo
2016/08/08 23:20:05
Is there something special I need for groups to wo
mikecase (-- gone --)
2016/08/08 23:48:32
yeah, im not sure. try putting in a java_group() w
| |
| 49 "//third_party/ub-uiautomator:ub_uiautomator_java", | 58 "//third_party/ub-uiautomator:ub_uiautomator_java", |
| 50 ] | 59 ] |
| 51 data_deps = [ | 60 data_deps = [ |
| 52 ":webview_ui_test_app_apk", | 61 ":webview_ui_test_app_apk", |
| 53 ] | 62 ] |
| 54 apk_under_test = ":webview_ui_test_app_apk" | 63 apk_under_test = ":webview_ui_test_app_apk" |
| 55 } | 64 } |
| OLD | NEW |