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

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

Issue 2102153002: [WebViewShell] Add activity for opening urls while creating/destroying webviews. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no-find-copies Created 4 years, 5 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
« no previous file with comments | « no previous file | android_webview/tools/system_webview_shell/apk/AndroidManifest.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/tools/system_webview_shell/apk/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698