| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # Mark all targets as test only. | 8 # Mark all targets as test only. |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 java_files = [ | 48 java_files = [ |
| 49 "page_cycler/src/org/chromium/webview_shell/page_cycler/PageCyclerTest.java"
, | 49 "page_cycler/src/org/chromium/webview_shell/page_cycler/PageCyclerTest.java"
, |
| 50 "page_cycler/src/org/chromium/webview_shell/page_cycler/WebViewPageCyclerTes
tRunner.java", | 50 "page_cycler/src/org/chromium/webview_shell/page_cycler/WebViewPageCyclerTes
tRunner.java", |
| 51 ] | 51 ] |
| 52 deps = [ | 52 deps = [ |
| 53 "//base:base_java", | 53 "//base:base_java", |
| 54 "//base:base_java_test_support", | 54 "//base:base_java_test_support", |
| 55 "//content/public/android:content_java", | 55 "//content/public/android:content_java", |
| 56 "//content/public/test/android:content_java_test_support", | 56 "//content/public/test/android:content_java_test_support", |
| 57 "//testing/android/reporter:reporter_java", | 57 "//testing/android/reporter:reporter_java", |
| 58 "//third_party/android_support_test_runner:runner_java", |
| 58 ] | 59 ] |
| 59 } | 60 } |
| 60 | 61 |
| 61 instrumentation_test_apk("system_webview_shell_layout_test_apk") { | 62 instrumentation_test_apk("system_webview_shell_layout_test_apk") { |
| 62 apk_name = "SystemWebViewShellLayoutTest" | 63 apk_name = "SystemWebViewShellLayoutTest" |
| 63 apk_under_test = ":system_webview_shell_apk" | 64 apk_under_test = ":system_webview_shell_apk" |
| 64 android_manifest = "layout_tests/AndroidManifest.xml" | 65 android_manifest = "layout_tests/AndroidManifest.xml" |
| 65 java_files = [ | 66 java_files = [ |
| 66 "layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java", | 67 "layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java", |
| 67 "layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTestRunner.ja
va", | 68 "layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTestRunner.ja
va", |
| 68 "layout_tests/src/org/chromium/webview_shell/test/WebViewThreadTest.java", | 69 "layout_tests/src/org/chromium/webview_shell/test/WebViewThreadTest.java", |
| 69 ] | 70 ] |
| 70 deps = [ | 71 deps = [ |
| 71 "//base:base_java", | 72 "//base:base_java", |
| 72 "//base:base_java_test_support", | 73 "//base:base_java_test_support", |
| 73 "//testing/android/reporter:reporter_java", | 74 "//testing/android/reporter:reporter_java", |
| 75 "//third_party/android_support_test_runner:runner_java", |
| 74 ] | 76 ] |
| 75 data = [ | 77 data = [ |
| 76 "test/data/", | 78 "test/data/", |
| 77 "//third_party/WebKit/LayoutTests/virtual/stable/webexposed/global-interface
-listing-expected.txt", | 79 "//third_party/WebKit/LayoutTests/virtual/stable/webexposed/global-interface
-listing-expected.txt", |
| 78 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing.html", | 80 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing.html", |
| 79 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expect
ed.txt", | 81 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expect
ed.txt", |
| 80 "//third_party/WebKit/LayoutTests/webexposed/resources/global-interface-list
ing.js", | 82 "//third_party/WebKit/LayoutTests/webexposed/resources/global-interface-list
ing.js", |
| 81 ] | 83 ] |
| 82 } | 84 } |
| OLD | NEW |