| 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 |
| 11 group("system_webview_shell") { | 11 group("system_webview_shell") { |
| 12 deps = [ | 12 deps = [ |
| 13 ":system_webview_shell_apk", | 13 ":system_webview_shell_apk", |
| 14 ":system_webview_shell_layout_test_apk", | 14 ":system_webview_shell_layout_test_apk", |
| 15 ":system_webview_shell_page_cycler_apk", | 15 ":system_webview_shell_page_cycler_apk", |
| 16 ] | 16 ] |
| 17 } | 17 } |
| 18 | 18 |
| 19 # GYP: //android_webview/android_webview_shell.gypi:system_webview_shell_apk | 19 # GYP: //android_webview/android_webview_shell.gypi:system_webview_shell_apk |
| 20 android_apk("system_webview_shell_apk") { | 20 android_apk("system_webview_shell_apk") { |
| 21 apk_name = "SystemWebViewShell" | 21 apk_name = "SystemWebViewShell" |
| 22 java_files = [ | 22 java_files = [ |
| 23 "apk/src/org/chromium/webview_shell/JankActivity.java", | 23 "apk/src/org/chromium/webview_shell/JankActivity.java", |
| 24 "apk/src/org/chromium/webview_shell/PageCyclerTestActivity.java", | 24 "apk/src/org/chromium/webview_shell/PageCyclerTestActivity.java", |
| 25 "apk/src/org/chromium/webview_shell/StartupTimeActivity.java", | 25 "apk/src/org/chromium/webview_shell/StartupTimeActivity.java", |
| 26 "apk/src/org/chromium/webview_shell/TelemetryActivity.java", | 26 "apk/src/org/chromium/webview_shell/TelemetryActivity.java", |
| 27 "apk/src/org/chromium/webview_shell/TelemetryMemoryPressureActivity.java", | 27 "apk/src/org/chromium/webview_shell/TelemetryMemoryPressureActivity.java", |
| 28 "apk/src/org/chromium/webview_shell/WebViewCreateDestroyActivity.java", |
| 28 "apk/src/org/chromium/webview_shell/WebViewBrowserActivity.java", | 29 "apk/src/org/chromium/webview_shell/WebViewBrowserActivity.java", |
| 29 "apk/src/org/chromium/webview_shell/WebViewLayoutTestActivity.java", | 30 "apk/src/org/chromium/webview_shell/WebViewLayoutTestActivity.java", |
| 30 "apk/src/org/chromium/webview_shell/WebViewThreadTestActivity.java", | 31 "apk/src/org/chromium/webview_shell/WebViewThreadTestActivity.java", |
| 31 ] | 32 ] |
| 32 android_manifest = "apk/AndroidManifest.xml" | 33 android_manifest = "apk/AndroidManifest.xml" |
| 33 deps = [ | 34 deps = [ |
| 34 ":system_webview_shell_apk_resources", | 35 ":system_webview_shell_apk_resources", |
| 35 "//base:base_java", | 36 "//base:base_java", |
| 36 ] | 37 ] |
| 37 } | 38 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTestRunner.ja
va", | 70 "layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTestRunner.ja
va", |
| 70 "layout_tests/src/org/chromium/webview_shell/test/WebViewThreadTest.java", | 71 "layout_tests/src/org/chromium/webview_shell/test/WebViewThreadTest.java", |
| 71 ] | 72 ] |
| 72 isolate_file = "../../system_webview_shell_test_apk.isolate" | 73 isolate_file = "../../system_webview_shell_test_apk.isolate" |
| 73 deps = [ | 74 deps = [ |
| 74 "//base:base_java", | 75 "//base:base_java", |
| 75 "//base:base_java_test_support", | 76 "//base:base_java_test_support", |
| 76 "//testing/android/reporter:reporter_java", | 77 "//testing/android/reporter:reporter_java", |
| 77 ] | 78 ] |
| 78 } | 79 } |
| OLD | NEW |