blob: 2fedeef9062e526da80cd20a071264a29b51cf74 [file] [log] [blame]
Avi Drissman24976592022-09-12 15:24:311# Copyright 2013 The Chromium Authors
[email protected]f0e7ff882013-12-26 21:23:092# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# This is the root build file for GN. GN will start processing by loading this
6# file, and recursively load all dependencies until all dependencies are either
7# resolved or known not to exist (which will cause the build to fail). So if
8# you add a new build file, there must be some path of dependencies from this
9# file to your new one or GN won't know about it.
10
David Dorwin2f8e16472022-10-25 02:56:2311import("//build/config/chromecast_build.gni")
Yuke Liaoa2d10312020-09-15 22:19:2912import("//build/config/chromeos/ui_mode.gni")
dprankead249c72016-06-11 18:01:2213import("//build/config/compiler/compiler.gni")
Stefano Duo1a1fcca2023-04-03 09:06:3714import("//build/config/cronet/config.gni")
Dirk Prankef452bb2a2020-10-09 22:11:5515import("//build/config/dcheck_always_on.gni")
rockot2f1326e2015-02-23 23:53:5116import("//build/config/features.gni")
Collina1e27a42022-01-26 20:12:0317import("//build/config/rust.gni")
aizatskyfc46a9f2015-10-09 21:20:0818import("//build/config/sanitizers/sanitizers.gni")
[email protected]378b4f02014-06-10 15:58:4519import("//build/config/ui.gni")
Andrew Grievefebea022020-08-07 17:17:5320import("//build/gn_logs.gni")
John Budorick7c8273b2019-04-25 15:27:4721import("//build/util/generate_wrapper.gni")
Tommy Steimele417e712020-01-30 14:07:5522import("//chrome/browser/buildflags.gni")
Dirk Prankeccc0c362017-09-28 22:15:1123import("//components/nacl/features.gni")
Scott Violetc8240b02018-03-08 22:03:5924import("//device/vr/buildflags/buildflags.gni")
25import("//extensions/buildflags/buildflags.gni")
Sam McNally11dc0142018-11-23 01:11:0526import("//gpu/vulkan/features.gni")
Alexandre Courbot8ad2427d2017-08-25 14:04:5527import("//media/gpu/args.gni")
Sam McNally11dc0142018-11-23 01:11:0528import("//media/media_options.gni")
Lei Zhang242fc9a2021-05-18 23:48:4229import("//pdf/features.gni")
David Dorwin35ee05a72022-03-08 22:12:2130import("//ppapi/buildflags/buildflags.gni")
Lei Zhang8baa2942021-05-19 03:59:4831import("//printing/buildflags/buildflags.gni")
brettw2b112cd2016-10-12 19:35:3632import("//remoting/remoting_enable.gni")
Josip Sokcevic4d590cf2020-07-07 10:48:2333import("//third_party/closure_compiler/compile_js.gni")
thakis3f7d4fc2016-06-10 18:47:5034import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
Peter Beverloo69948322017-07-28 19:01:5735import("//ui/base/ui_features.gni")
Elly Fong-Jonesb03817a2019-11-14 18:10:1236import("//ui/gl/features.gni")
machenbachd65ec5c2016-07-22 09:05:2337import("//v8/gni/v8.gni")
dprankee2ef3822015-02-24 21:42:1838
cjhopmanca675d3e2014-10-24 03:50:4539if (is_android) {
40 import("//build/config/android/config.gni")
41}
[email protected]378b4f02014-06-10 15:58:4542
Greg Thompsonada4b212022-09-12 13:31:4943if (is_fuchsia) {
44 import("//build/config/fuchsia/generate_runner_scripts.gni")
45 import("//third_party/fuchsia-sdk/sdk/build/component.gni")
46 import("//third_party/fuchsia-sdk/sdk/build/package.gni")
47}
48
Andrey Kosyakov0e234d902021-03-30 19:00:2749if (is_linux) {
50 import("build/config/linux/gtk/gtk.gni")
51}
52
Dave Tapuska2ff385f2023-02-07 17:08:5953if (use_blink) {
Rohit Rao123b39e2021-09-17 19:52:3854 import("//v8/gni/snapshot_toolchain.gni")
55}
56
brettwb84b29472014-10-22 22:58:4557declare_args() {
58 # A list of extra dependencies to add to the root target. This allows a
59 # checkout to add additional targets without explicitly changing any checked-
60 # in files.
61 root_extra_deps = []
62}
63
brucedawsonc8d6d652016-09-02 19:43:1864if (is_official_build) {
65 # An official (maximally optimized!) component (optimized for build times)
66 # build doesn't make sense and usually doesn't work.
67 assert(!is_component_build)
68}
69
Dirk Pranke0356f6f2023-02-24 00:27:4670# The `gn_all` target is used to list all of the main targets in the build, so
71# that we can figure out which BUILD.gn files to process, following the process
72# described at the top of this file.
dpranked62d8512015-03-02 03:06:0373#
Dirk Pranke0356f6f2023-02-24 00:27:4674# Because of the way GN works (again, as described above), there may be targets
75# built by `all` that aren't built by `gn_all`. We always want `all` to build,
76# so there's really never a reason you'd want to build `gn_all` instead of
77# `all`, and no tooling should depend directly on this target. Tools should
78# should depend on either an explicit list of targets, or `all`.
dprankeff30e3d2015-02-24 06:52:3979
dprankee2ef3822015-02-24 21:42:1880group("gn_all") {
81 testonly = true
82
Stefano Duo1a1fcca2023-04-03 09:06:3783 if (is_cronet_build) {
Stefano Duo8d358e32023-04-14 09:45:2984 if (is_android) {
85 deps = [ "//components/cronet/android:cronet_package_android" ]
86 } else if (is_ios) {
87 deps = [ "//components/cronet/ios:cronet_package_ios" ]
88 } else {
89 deps = []
Brian Sheedyf74819b2021-06-04 01:38:3890 }
David Dorwin9985426fc2022-03-30 00:06:0491 } else {
Stefano Duo1a1fcca2023-04-03 09:06:3792 deps = [
93 "//base:base_perftests",
94 "//base:base_unittests",
95 "//codelabs",
96 "//components:components_unittests",
97 "//components/gwp_asan:gwp_asan_unittests",
98 "//infra/orchestrator:orchestrator_all",
99 "//net:net_unittests",
100 "//sandbox:sandbox_unittests",
101 "//services:services_unittests",
102 "//services/service_manager/public/cpp",
103 "//skia:skia_unittests",
104 "//sql:sql_unittests",
105 "//third_party/angle/src/tests:angle_end2end_tests",
106 "//third_party/angle/src/tests:angle_unittests",
107 "//third_party/angle/src/tests:angle_white_box_tests",
108 "//third_party/flatbuffers:flatbuffers_unittests",
109 "//third_party/liburlpattern:liburlpattern_unittests",
110 "//tools/binary_size:binary_size_trybot_py",
111 "//tools/ipc_fuzzer:ipc_fuzzer_all",
112 "//tools/metrics:metrics_metadata",
113 "//ui/base:ui_base_unittests",
114 "//ui/color:color_unittests",
115 "//ui/gfx:gfx_unittests",
dprankee2ef3822015-02-24 21:42:18116 "//url:url_unittests",
[email protected]26046b52014-07-16 00:11:03117 ]
118
pkotwicz92e2e2312015-12-15 22:29:46119 if (!is_component_build) {
Stefano Duo1a1fcca2023-04-03 09:06:37120 deps += [ "//third_party/abseil-cpp:absl_tests" ]
121 }
122
123 if (is_chromeos_ash && enable_js_type_check) {
124 deps += [ ":webui_closure_compile" ]
125 }
126
127 if (!is_android && !is_castos) {
pkotwicz92e2e2312015-12-15 22:29:46128 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37129 "//crypto:crypto_unittests",
130 "//google_apis/gcm:gcm_unit_tests",
pkotwicz92e2e2312015-12-15 22:29:46131 ]
132 }
133
Stefano Duo1a1fcca2023-04-03 09:06:37134 if (!is_ios && !is_android && !is_castos) {
pkotwicz061c5a42015-09-30 02:16:54135 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37136 "//chrome",
137 "//chrome/browser/ui/color:dump_colors",
138 "//chrome/test:browser_tests",
Stefano Duo1a1fcca2023-04-03 09:06:37139 "//components/subresource_filter/tools:subresource_filter_tools",
140 "//components/zucchini:zucchini",
Stefano Duo1a1fcca2023-04-03 09:06:37141 "//gpu/gles2_conform_support:gles2_conform_test",
142 "//gpu/khronos_glcts_support:khronos_glcts_test",
143 "//net:hpack_example_generator",
144 "//third_party/vulkan-deps/spirv-tools/src:SPIRV-Tools",
145 "//tools/aggregation_service:aggregation_service_tool",
146 "//tools/perf/clear_system_cache",
147 "//tools/polymer:polymer_tools_python_unittests",
148 "//tools/privacy_budget:privacy_budget_tools",
Stefano Duo1a1fcca2023-04-03 09:06:37149 "//ui/accessibility/extensions:extensions",
pkotwicz061c5a42015-09-30 02:16:54150 ]
Arthur Eubanks87cdea12022-02-17 21:18:51151 }
dnicoara8c6aa8e2015-03-11 23:20:32152
Daniel Nicoaracf98a1bf2022-08-09 19:51:44153 if (!is_castos) {
Stefano Duo1a1fcca2023-04-03 09:06:37154 deps += [ "//chrome/installer" ]
Daniel Nicoaracf98a1bf2022-08-09 19:51:44155 }
156
Stefano Duo1a1fcca2023-04-03 09:06:37157 if (enable_updater) {
158 deps += [ "//chrome/updater" ]
159 }
160
161 if (enable_ppapi) {
mbjorgea12e5a52016-05-31 22:15:17162 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37163 "//ppapi:ppapi_unittests",
164 "//ppapi/examples",
mbjorgea12e5a52016-05-31 22:15:17165 ]
166 }
167
Stefano Duo1a1fcca2023-04-03 09:06:37168 if (is_chromeos_lacros) {
169 deps += [
170 "//chrome/test:lacros_chrome_browsertests",
171 "//chrome/test:lacros_chrome_unittests",
172 ]
dpranke2bc89212015-11-18 00:24:43173 }
dprankedb5527d72015-03-08 04:22:47174
Stefano Duo1a1fcca2023-04-03 09:06:37175 if (!is_ios && !is_castos) {
Mark Schillaci9b4be3e2023-04-03 20:20:48176 deps += [
177 "//chrome/test:unit_tests",
178 "//ui/accessibility:accessibility_unittests",
179 ]
Stefano Duo1a1fcca2023-04-03 09:06:37180 }
sherouke1859f92015-08-05 10:19:10181
Stefano Duo1a1fcca2023-04-03 09:06:37182 if (use_blink) {
183 deps += [
184 "//cc:cc_unittests",
185 "//components/policy:policy_templates",
186 "//components/url_formatter/tools:format_url",
187 "//components/viz:viz_perftests",
188 "//components/viz:viz_unittests",
189 "//content/shell:content_shell",
190 "//content/test:content_browsertests",
191 "//content/test:content_unittests",
192 "//device:device_unittests",
193 "//gpu:gpu_benchmark",
194 "//gpu:gpu_unittests",
195 "//media:media_unittests",
196 "//media/capture:capture_unittests",
Dave Tapuska269a0ca2023-04-05 18:38:20197 "//media/cast:cast_unittests",
Stefano Duo1a1fcca2023-04-03 09:06:37198 "//media/midi:midi_unittests",
199 "//media/mojo:media_mojo_unittests",
200 "//mojo",
201 "//mojo:mojo_unittests",
202 "//storage:storage_unittests",
203 "//third_party/blink/common:blink_common_unittests",
204 "//third_party/blink/renderer/controller:blink_unittests",
205 "//third_party/blink/renderer/platform:blink_platform_unittests",
206 "//third_party/blink/renderer/platform/heap:blink_heap_unittests",
207 "//third_party/blink/renderer/platform/wtf:wtf_unittests",
208 "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
209 "//tools/imagediff",
210 "//tools/memory:all",
211 "//ui/display:display_unittests",
212 "//ui/gl:gl_unittests",
213 "//ui/latency:latency_unittests",
214 "//ui/native_theme:native_theme_unittests",
215 "//ui/touch_selection:ui_touch_selection_unittests",
216 "//v8:gn_all",
217 ]
sugoiabe91892016-09-20 12:53:51218
Stefano Duo1a1fcca2023-04-03 09:06:37219 if (!v8_use_external_startup_data) {
220 deps += [ "//v8:v8_snapshot" ]
221 }
222 }
dprankedb5527d72015-03-08 04:22:47223
Dave Tapuskad74dc902023-03-08 21:45:51224 if (!is_ios) {
225 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37226 ":chromedriver_group",
227 "//components:components_browsertests",
228 "//ipc:ipc_tests",
229 "//net:net_perftests",
230 "//ui/events:events_unittests",
231 "//url/ipc:url_ipc_unittests",
Dave Tapuskad74dc902023-03-08 21:45:51232 ]
233 }
234
Stefano Duo1a1fcca2023-04-03 09:06:37235 if (is_android) {
agrieve473155b42015-12-28 20:23:11236 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37237 "//weblayer/browser/android/javatests:webengine_support_instrumentation_test_apk",
238 "//weblayer/browser/java:weblayer_junit_tests",
239 "//weblayer/test:weblayer_browsertests",
Daniel Nicoaracf98a1bf2022-08-09 19:51:44240 ]
241 }
242
Stefano Duo1a1fcca2023-04-03 09:06:37243 if (!is_ios && !is_android) {
244 deps += [ "//components/viz/demo:viz_demo" ]
245 }
246
247 if (!is_ios) {
Daniel Nicoaracf98a1bf2022-08-09 19:51:44248 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37249 "//google_apis/gcm:mcs_probe",
Stefano Duo1a1fcca2023-04-03 09:06:37250 "//third_party/catapult/telemetry:bitmaptools($host_toolchain)",
agrieve473155b42015-12-28 20:23:11251 ]
Stefano Duo1a1fcca2023-04-03 09:06:37252 if (!is_android) {
253 if (!is_castos) {
254 deps += [ "//chrome/test:telemetry_perf_unittests" ]
255 }
256 } else {
257 import("//tools/perf/chrome_telemetry_build/android_browser_types.gni")
258 foreach(_target_suffix, telemetry_android_browser_target_suffixes) {
259 deps += [ "//chrome/test:telemetry_perf_unittests${_target_suffix}" ]
260 }
261 }
262 } else {
263 deps += [
264 "//ios:all",
265 "//third_party/crashpad/crashpad:crashpad_tests",
266 ]
267 }
268
269 if (is_fuchsia) {
270 # Add targets that only exist on Fuchsia.
271 deps += [
272 ":d8_fuchsia",
273 "//build/fuchsia/cipd",
274 "//chrome/app:chrome_fuchsia",
275 "//fuchsia_web:gn_all",
276 "//tools/fuchsia/size_tests:fuchsia_sizes",
277
278 # Ensure this target continues to build.
279 "//chromecast/bindings:bindings_manager_fuchsia",
280 ]
281 }
282
283 deps += root_extra_deps
284
Gyuyoung Kim932fd2202023-04-26 15:09:18285 if (enable_printing || enable_printing_unittests) {
Stefano Duo1a1fcca2023-04-03 09:06:37286 deps += [ "//printing:printing_unittests" ]
agrieve473155b42015-12-28 20:23:11287 }
dpranke7e19b472015-11-13 00:49:33288
jamescookfbbf9112016-06-14 16:24:49289 if (enable_extensions) {
Stefano Duo1a1fcca2023-04-03 09:06:37290 deps += [
291 "//extensions:extensions_browsertests",
292 "//extensions:extensions_unittests",
293 "//extensions/browser/api/declarative_net_request/filter_list_converter",
294 "//extensions/shell:app_shell_unittests",
295 ]
jamescookfbbf9112016-06-14 16:24:49296 }
297
Stefano Duo1a1fcca2023-04-03 09:06:37298 if (enable_pdf) {
299 deps += [
300 "//pdf/pdfium/fuzzers",
301 "//third_party/pdfium/samples:pdfium_test",
302 ]
303 }
dpranke2bc89212015-11-18 00:24:43304
Stefano Duo1a1fcca2023-04-03 09:06:37305 if (enable_remoting) {
306 deps += [ "//remoting:remoting_all" ]
307 }
308
309 if (toolkit_views) {
310 deps += [
311 "//ui/views:views_unittests",
312 "//ui/views/examples:views_examples",
313 "//ui/views/examples:views_examples_unittests",
314 "//ui/views/examples:views_examples_with_content",
315 ]
316 }
317
318 if (use_aura) {
319 deps += [
320 "//ui/aura:aura_demo",
321 "//ui/aura:aura_unittests",
322 "//ui/webui/examples:webui_examples",
323 "//ui/wm:wm_unittests",
324 ]
325 }
326
327 if (use_ozone) {
328 deps += [
329 "//ui/ozone",
330 "//ui/ozone:unittests",
331 ]
332 if (!is_fuchsia) {
333 deps += [ "//ui/ozone/demo" ]
dpranke2bc89212015-11-18 00:24:43334 }
dprankedb5527d72015-03-08 04:22:47335 }
336
Stefano Duo1a1fcca2023-04-03 09:06:37337 if (is_win) {
338 deps += [
339 "//chrome/credential_provider",
340 "//chrome/credential_provider/test:gcp_unittests",
341 ]
Daniel Nicoaracf98a1bf2022-08-09 19:51:44342 }
343
Stefano Duo1a1fcca2023-04-03 09:06:37344 if (is_mac) {
345 deps += [
346 "//chrome/installer/gcapi_mac:gcapi_example",
347 "//tools/mac",
348 ]
dprankefd1813272015-04-13 23:56:00349 }
350
Stefano Duo1a1fcca2023-04-03 09:06:37351 # Allow building md5sum tool for other OSes (android is added below).
352 # For Windows, see: crbug.com/1090428.
353 # TODO(cavalcantii): move it out of 'android' folder.
354 if (!is_win) {
355 deps += [ "//tools/android/md5sum" ]
fdorayfb048bff2016-04-28 22:07:36356 }
rsesek985bd812016-04-26 21:06:15357
Stefano Duo1a1fcca2023-04-03 09:06:37358 if (is_android) {
359 deps += [
360 "//base:base_junit_tests",
361 "//base/android/jni_generator:jni_generator_tests",
362 "//base/android/linker:chromium_android_linker",
363 "//build/android/gyp/test:hello_world",
364 "//build/android/stacktrace:java_deobfuscate",
365 "//build/config/android/test/proto:test_build_protos",
366 "//build/private_code_test:private_paths",
367 "//chrome/android/monochrome:monochrome_public_apk_checker",
368 "//chrome/android/webapk/shell_apk:maps_go_webapk",
369 "//chrome/android/webapk/shell_apk:webapk",
370 "//chrome/android/webapk/shell_apk/prepare_upload_dir:prepare_webapk_shell_upload_dir",
371 "//chrome/test:android_browsertests",
372 "//components:components_junit_tests",
373 "//content/public/android:content_junit_tests",
374 "//content/shell/android:content_shell_apk",
375 "//device:device_junit_tests",
376 "//media/gpu:video_decode_accelerator_unittest",
377 "//net/android:net_junit_tests",
378 "//services:services_junit_tests",
379 "//testing/android/junit:junit_unit_tests",
380 "//third_party/android_build_tools/lint:custom_lint_java",
381 "//third_party/androidx_javascriptengine",
382 "//third_party/catapult/devil",
383 "//third_party/r8:custom_d8_java",
384 "//tools/android:android_tools",
385 "//tools/android:memconsumer",
386 "//tools/android:push_apps_to_background",
387 "//tools/android/audio_focus_grabber:audio_focus_grabber_apk",
388 "//tools/android/customtabs_benchmark:customtabs_benchmark_apk",
389 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk",
390 "//ui/android:ui_junit_tests",
391 ]
392 deps -= [
393 "//net:net_perftests",
394 "//url:url_unittests",
395 ]
Sergey Ulanov07406542019-12-18 00:09:43396
Stefano Duo1a1fcca2023-04-03 09:06:37397 if (!is_cast_android) {
398 deps += [
399 "//android_webview:empty_group",
400 "//android_webview/test",
401 "//android_webview/tools/automated_ui_tests:webview_ui_test_app",
402 "//android_webview/tools/system_webview_shell",
403 "//chrome/android:chrome_junit_tests",
404 "//chrome/android:chrome_public_apk",
405 "//chrome/android:chrome_public_test_apk",
406 "//chrome/android:chrome_public_unit_test_apk",
407 "//chrome/browser/android/examples/custom_tabs_client:custom_tabs_client_example_apk",
408 "//chrome/browser/android/examples/partner_browser_customizations_provider:partner_browser_customizations_example_apk",
409 "//content/shell/android:content_shell_test_apk",
410 ]
miu45b848fe2015-11-26 01:23:29411
Stefano Duo1a1fcca2023-04-03 09:06:37412 if (android_sdk_release == "tprivacysandbox") {
413 deps += [ "//android_webview/tools/sdk_sandbox" ]
414 }
agrieve473155b42015-12-28 20:23:11415 }
dprankeb0713542015-07-31 21:07:21416
Stefano Duo1a1fcca2023-04-03 09:06:37417 if (enable_chrome_android_internal) {
418 deps += [ "//clank" ]
419 }
420 }
421
422 if (is_linux || is_chromeos || is_android) {
423 deps += [
424 "//third_party/breakpad:breakpad_unittests",
425 "//third_party/breakpad:core-2-minidump",
426 "//third_party/breakpad:generate_test_dump",
427 "//third_party/breakpad:minidump-2-core",
428 "//tools/dump_process_memory:dump_process",
429 ]
430 }
Jonathan Metzman2656ecd2018-11-21 08:22:41431
Lei Zhang8baa2942021-05-19 03:59:48432 if (is_chromeos_ash) {
Stefano Duo1a1fcca2023-04-03 09:06:37433 deps += [
434 "//ash:ash_unittests",
435 "//ash/components:ash_components_unittests",
436 "//ash/keyboard/ui:keyboard_unittests",
437 "//ash/webui:ash_webui_unittests",
438 "//chrome/browser/metrics/perf:profile_provider_unittest",
439 "//chrome/test:ash_crosapi_tests",
440 "//chrome/test:usage_time_limit_unittests",
441 "//chromeos/ash/components/proximity_auth:proximity_auth_unittests",
442 "//chromeos/components:chromeos_components_unittests",
443 "//components/exo/wayland:wayland_client_compatibility_tests",
444 "//components/session_manager/core",
445 "//third_party/shell-encryption:shell_encryption_unittests",
446 "//ui/chromeos:ui_chromeos_unittests",
447 ]
Lei Zhang8baa2942021-05-19 03:59:48448 }
449
Stefano Duo1a1fcca2023-04-03 09:06:37450 if (is_chromeos) {
451 deps += [ "//chromeos:chromeos_unittests" ]
Jonathan Metzman2656ecd2018-11-21 08:22:41452 }
aizatskyaf496112016-04-15 19:26:32453
Stefano Duo1a1fcca2023-04-03 09:06:37454 if (is_chromeos_ash || is_mac || is_win) {
455 deps += [
456 "//rlz:rlz_id",
457 "//rlz:rlz_lib",
458 "//rlz:rlz_unittests",
459 ]
460 }
sbc92b4d572016-02-18 03:28:23461
Stefano Duo1a1fcca2023-04-03 09:06:37462 if (is_linux || is_chromeos) {
463 # The following are definitely linux-only.
464 deps += [
465 "//net:disk_cache_memory_test",
466 "//net:quic_client",
467 "//net:quic_server",
468 "//sandbox/linux:chrome_sandbox",
469 "//sandbox/linux:sandbox_linux_unittests",
470 ]
471 if (!is_clang) {
472 deps += [ "//testing:empty_main" ]
473 }
Christopher Grant193648b2017-06-07 15:08:36474
Stefano Duo1a1fcca2023-04-03 09:06:37475 if (!is_castos) {
476 deps += [ "//chrome:xdg_mime" ]
477 }
478
479 if (use_dbus) {
Brian Sheedyf74819b2021-06-04 01:38:38480 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37481 "//dbus:dbus_test_server",
482 "//dbus:dbus_unittests",
Brian Sheedyf74819b2021-06-04 01:38:38483 ]
484 }
Stefano Duo1a1fcca2023-04-03 09:06:37485
486 if (is_chrome_branded && is_official_build) {
487 # TODO(dpranke): add the linux_dump_symbols flag?
488 deps += [ "//chrome:linux_symbols" ]
489 }
Yash Malik8109b5bb2017-07-13 22:40:03490 }
Scott Grahamf24e3742017-08-11 17:50:22491
Stefano Duo1a1fcca2023-04-03 09:06:37492 if (is_ios || is_win || is_linux || is_chromeos_lacros || is_fuchsia) {
493 deps += [
494 "//base:base_i18n_perftests",
495 "//google_apis:google_apis_unittests",
496 ]
497 }
498
499 if ((is_win || is_mac || is_linux || is_chromeos || is_fuchsia) &&
500 (target_cpu == "x86" || target_cpu == "x64")) {
501 deps += [
502 "//third_party/swiftshader/src/Vulkan:icd_file",
503 "//third_party/swiftshader/src/Vulkan:swiftshader_libvulkan",
504 ]
505 }
506
507 # TODO(GYP): Figure out which of these should (and can) build
508 # for Chrome OS and iOS (without blink).
509 if (!is_chromeos_ash && use_blink) {
510 deps += [
511 "//cc:cc_perftests",
512 "//device:device_unittests",
513 "//gin:gin_shell",
514 "//gin:gin_unittests",
515 "//gpu:command_buffer_perftests",
516 "//gpu:gl_tests",
517 "//gpu:gpu_perftests",
518 "//media:media_perftests",
519 "//third_party/libphonenumber:libphonenumber_unittests",
520 "//ui/compositor:compositor_unittests",
521 ]
522
523 if (!is_ios) {
524 deps += [
525 "//base:build_utf8_validator_tables",
526 "//base:check_example",
527 "//components:components_perftests",
528 "//ipc:ipc_perftests",
529 "//net:dump_cache",
530 ]
531 }
532
533 if (!is_android && !is_castos && !is_ios) {
534 deps += [
535 "//chrome/test:load_library_perf_tests",
536 "//chrome/test:sync_performance_tests",
537 ]
538 }
539
540 if (!is_android && !is_ios) {
541 deps += [
542 "//courgette:courgette",
543 "//courgette:courgette_fuzz",
544 "//courgette:courgette_minimal_tool",
545 "//courgette:courgette_unittests",
546 "//media/cast:generate_barcode_video",
547 "//media/cast:generate_timecode_audio",
548 "//net:crash_cache",
549 "//net:net_watcher", # TODO(GYP): This should be conditional on
550 # use_v8_in_net
551 "//net:run_testserver",
552 "//net:stress_cache",
553 "//net:tld_cleanup",
554 "//third_party/leveldatabase:env_chromium_unittests",
555 "//third_party/libaddressinput:libaddressinput_unittests",
556 ]
557 }
558
559 if (enable_extensions) {
560 deps += [ "//extensions/shell:app_shell" ]
561 }
562
563 # TODO(https://crbug.com/1299021): These dependencies might be
564 # redundant given that we were able to disable them, apparently without
565 # negative consequences, for the ARM32-NaCl-on-ARM64 case.
566 if (enable_nacl) {
567 if (target_cpu != "arm64") {
568 deps += [ "//components/nacl/loader:nacl_loader_unittests" ]
569 }
570
571 if (is_linux || is_chromeos) {
572 # TODO(dpranke): Figure out what platforms should actually have this.
573 deps += [ "//components/nacl/loader:nacl_helper" ]
574 }
575 }
576
577 if (media_use_ffmpeg && !is_android) {
578 deps += [ "//media:ffmpeg_regression_tests" ]
579 }
580 }
581
582 if (enable_ppapi) {
583 deps += [
584 "//ppapi:pepper_hash_for_uma",
585 "//ppapi:ppapi_perftests",
586 ]
587 }
588
589 if (is_android || is_linux || is_chromeos_lacros) {
590 deps += [
591 "//components/network_hints/browser",
592 "//content/public/app",
593 "//mojo:mojo_perftests",
594 "//services/service_manager/public/cpp",
595 "//testing/gmock:gmock_main",
596 "//third_party/breakpad:dump_syms($host_toolchain)",
597 "//third_party/breakpad:microdump_stackwalk($host_toolchain)",
598 "//third_party/breakpad:minidump_dump($host_toolchain)",
599 "//third_party/breakpad:minidump_stackwalk($host_toolchain)",
600 ]
601 }
602
603 if (is_linux || is_chromeos_lacros) {
604 deps += [
605 "//gpu/khronos_glcts_support:khronos_glcts_test",
606 "//media/cast:cast_benchmarks",
607 "//media/cast:tap_proxy",
608 "//skia:filter_fuzz_stub",
609 "//skia:image_operations_bench",
610 "//ui/snapshot:snapshot_unittests",
611 ]
612
613 if (!is_castos) {
614 deps += [ "//chrome/test:chrome_app_unittests" ]
615 }
616
617 if (!is_debug && !is_component_build && !is_castos) {
618 deps += [ "//chrome/tools/service_discovery_sniffer" ]
619 }
620 }
621
622 if (is_mac) {
623 deps += [
624 "//third_party/breakpad:dump_syms",
625
626 # The following are accessibility API tools.
627 "//tools/accessibility/inspect:ax_dump_events",
628 "//tools/accessibility/inspect:ax_dump_tree",
629 ]
630 deps -= [
631 # Mojo in GN contains some things which are never compiled in GYP on Mac,
632 # so compilation fails on Mac. They need porting.
633 "//mojo",
634 ]
635 }
636
637 if (is_win) {
638 deps += [
639 "//base:pe_image_test",
640 "//chrome/chrome_cleaner",
641 "//chrome/chrome_elf:chrome_elf_unittests",
642 "//chrome/chrome_elf:dll_hash_main",
643 "//chrome/elevation_service:elevation_service_unittests",
644 "//chrome/install_static:install_static_unittests",
645 "//chrome/installer/gcapi",
646 "//chrome/installer/setup:setup_unittests",
647 "//chrome/notification_helper:notification_helper_unittests",
648 "//chrome/test:delayloads_unittests",
649 "//components/wifi:wifi_test",
650 "//components/zucchini",
651 "//net:quic_client",
652 "//net:quic_server",
653 "//sandbox/win:sbox_integration_tests",
654 "//sandbox/win:sbox_unittests",
655 "//sandbox/win:sbox_validation_tests",
656 "//testing/gtest:gtest_main",
657
658 # The following two are accessibility API debugging tools.
659 "//tools/accessibility/inspect:ax_dump_events",
660 "//tools/accessibility/inspect:ax_dump_tree",
661 "//tools/win/chromeexts:chromeexts",
662 ]
663
664 # TODO(thakis): Enable this in cross builds, https://crbug.com/799827
665 if (!(is_component_build && is_debug && target_cpu == "x86") &&
666 host_os == "win") {
667 deps += [ "//chrome/test/mini_installer:mini_installer_tests" ]
668 }
669 } else if (!is_android && !is_ios && !is_fuchsia) {
670 deps += [ "//third_party/breakpad:symupload($host_toolchain)" ]
671 }
672
673 if (is_cast_android || is_castos || (is_fuchsia && enable_cast_receiver)) {
674 deps += [ "//chromecast:cast_test_lists" ]
675 }
676
677 if (is_cast_android || is_castos) {
678 deps += [
679 "//chromecast:cast_shell",
680 "//chromecast/cast_core:core_runtime_simple",
681 ]
682 }
683
684 if (is_mac || is_win || is_android || is_linux || is_chromeos) {
685 deps += [
686 "//third_party/crashpad/crashpad:crashpad_tests",
687 "//third_party/crashpad/crashpad/handler:crashpad_handler",
688 "//third_party/crashpad/crashpad/tools:crashpad_database_util",
689 ]
690 }
691
692 if (enable_message_center) {
693 deps += [ "//ui/message_center:message_center_unittests" ]
694 }
695
696 if (!is_android && !is_ios) {
697 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ]
698 }
699
700 if (is_win || is_linux || is_chromeos) {
701 deps += [ "//mojo" ]
702 }
703
704 if (is_mac || is_linux || is_chromeos || is_android || is_fuchsia) {
705 deps += [ "//third_party/perfetto:all" ]
706 }
707
708 if (is_win || is_mac || is_linux || is_chromeos) {
709 deps += [ "//third_party/sqlite:sqlite_shell" ]
710 }
711
712 if ((is_linux && !is_castos) || is_chromeos_lacros || is_fuchsia) {
713 # TODO(https://crbug.com/1329673): Figure out if this should be in gn_all
714 # and how cross-platform this is.
715 deps +=
716 [ "//components/services/filesystem:filesystem_service_unittests" ]
717 }
718
719 if ((is_linux && !is_castos) || is_chromeos_lacros) {
720 # TODO(https://crbug.com/1329673): Figure out if any of these should be in
721 # gn_all and figure out how cross-platform they are.
722 deps += [
723 "//chrome/installer/util:strings",
724 "//chrome/tools/convert_dict",
725 "//components/constrained_window:unit_tests",
726 "//components/metrics:serialization",
727 "//components/sessions:unit_tests",
728 "//media/cast:udp_proxy",
729 "//storage/browser:dump_file_system",
730 "//third_party/angle:libANGLE",
731 "//third_party/angle:libEGL",
732 "//third_party/angle:libGLESv2",
733 "//third_party/leveldatabase:leveldb_test_targets",
734 "//third_party/libjpeg_turbo:simd",
735 "//third_party/opus:opus_compare",
736 "//third_party/opus:opus_demo",
737 "//third_party/opus:test_opus_api",
738 "//third_party/opus:test_opus_decode",
739 "//third_party/opus:test_opus_encode",
740 "//third_party/opus:test_opus_padding",
741 "//ui/display/types",
742 "//ui/shell_dialogs:shell_dialogs_unittests",
743 ]
744
745 if (target_cpu == "x86" || target_cpu == "x64") {
746 if (!is_android) {
747 deps += [ "//chrome/test:load_library_perf_tests" ]
748 }
749 deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
750 }
751 if ((is_linux || is_chromeos) && current_toolchain == host_toolchain) {
752 deps += [ "//v8:v8_shell" ]
753 }
754 }
755
756 if ((is_linux && !is_castos) || is_chromeos ||
757 ((is_win || is_mac) && use_fuzzing_engine)) {
758 deps += [
759 "//testing/libfuzzer/fuzzers",
760 "//third_party/freetype-testing:fuzzers",
761 "//third_party/grpc:fuzzers",
762 "//third_party/icu/fuzzers",
763 "//third_party/qcms:fuzzers",
764 "//third_party/ukey2/fuzzers",
765 "//third_party/zlib/contrib/tests/fuzzers",
766 ]
767
768 if (is_chromeos_ash) {
769 deps += [ "//chrome/services/ipp_parser/public/cpp:fuzzers" ]
770 }
771
772 # TODO(crbug.com/906751): Get the libFuzzer tests working on Windows.
773 # Disable them for now because they cause the Windows clang ToT builder to
774 # fail.
775 if (!is_win) {
776 deps += [ "//testing/libfuzzer/tests:libfuzzer_tests" ]
777 }
778 }
779
780 # TODO(https://crbug.com/1299021): Remove the special case for arm64.
781 if (enable_nacl && target_cpu != "arm64") {
782 deps += [ "//native_client_sdk/src:nacl_core_sdk" ]
783 }
784
785 if (((is_linux || is_chromeos) && use_ozone) || is_fuchsia) {
786 deps += [
787 "//headless:headless_non_renderer",
788 "//headless:headless_tests",
789 ]
790 }
791
792 if (enable_vr) {
793 deps += [
794 "//chrome/browser/vr:vr_common_perftests",
795 "//chrome/browser/vr:vr_common_unittests",
796 ]
797 if (!is_android) {
798 deps += [ "//tools/perf/contrib/vr_benchmarks:vr_perf_tests" ]
799 } else {
800 deps += [ "//chrome/browser/android/vr:vr_android_unittests" ]
801 import("//tools/perf/chrome_telemetry_build/android_browser_types.gni")
802 foreach(_target_suffix, telemetry_android_browser_target_suffixes) {
803 deps += [
804 "//tools/perf/contrib/vr_benchmarks:vr_perf_tests${_target_suffix}",
805 ]
806 }
807 }
808 }
809
810 if (use_atk) {
811 deps += [
812 "//tools/accessibility/inspect:ax_dump_events",
813 "//tools/accessibility/inspect:ax_dump_tree",
814 ]
815 }
816
817 if (build_dawn_tests) {
818 deps += [
819 "//third_party/dawn/src/dawn/fuzzers:fuzzers",
820 "//third_party/dawn/src/dawn/tests:dawn_end2end_tests",
821 "//third_party/dawn/src/dawn/tests:dawn_unittests",
822 "//third_party/dawn/src/tint:tint_unittests",
823 "//third_party/dawn/src/tint/fuzzers",
824 ]
825 }
826
827 # PFFFT.
Martin Robinsone4fddede2018-09-18 10:30:21828 deps += [
Stefano Duo1a1fcca2023-04-03 09:06:37829 "//third_party/pffft:fuzzers",
830 "//third_party/pffft:pffft_benchmark",
831 "//third_party/pffft:pffft_unittest",
Martin Robinsone4fddede2018-09-18 10:30:21832 ]
Stefano Duo1a1fcca2023-04-03 09:06:37833
834 # Rust build targets.
835 deps += [ ":all_rust" ]
Alessio Bazzica383dcef92019-02-08 14:14:42836
Stefano Duo8d358e32023-04-14 09:45:29837 if (!is_android && !is_ios) {
838 deps += [ "//components/cronet:cronet_tests" ]
839 }
Stefano Duo1a1fcca2023-04-03 09:06:37840 }
Collin Baker153146f32023-03-09 20:08:41841}
Collina1e27a42022-01-26 20:12:03842
Collin Baker153146f32023-03-09 20:08:41843# All Rust targets. This is provided for convenience while developing Rust to
844# e.g. test build config or toolchain changes.
845group("all_rust") {
846 testonly = true
847
848 # Unconditional because this includes things that should work whether or not
849 # Rust is enabled.
850 deps = [ ":rust_build_tests" ]
851
Collina1e27a42022-01-26 20:12:03852 if (toolchain_has_rust) {
Adrian Taylor0ea2a34b2023-03-18 08:08:32853 if (enable_rust_mojo) {
854 deps += [
855 "//mojo/public/rust",
danakjca3cae62023-04-12 15:20:57856 "//mojo/public/rust:mojo_rust_integration_unittests",
857 "//mojo/public/rust:mojo_rust_unittests",
Adrian Taylor0ea2a34b2023-03-18 08:08:32858 ]
859 }
Collin Baker7ce81ea2023-03-30 19:35:45860
861 # gnrt is a developer tool run on developer machines. It is not needed when
862 # cross-compiling.
863 if (enable_rust_gnrt && host_os == target_os && host_cpu == target_cpu) {
Adrian Taylor0ea2a34b2023-03-18 08:08:32864 deps += [
Adrian Taylor0ea2a34b2023-03-18 08:08:32865 "//tools/crates/gnrt:gnrt_unittests",
866 "//tools/crates/gnrt($host_toolchain)",
867 ]
868 }
Collina1e27a42022-01-26 20:12:03869 }
Adrian Taylor0ea2a34b2023-03-18 08:08:32870 if (enable_rust_gtest_interop) {
danakj71dabfa2022-02-24 14:32:14871 deps += [ "//testing/rust_gtest_interop:rust_gtest_interop_unittests" ]
872 }
Adrian Taylor21dcb362021-09-01 14:58:14873}
874
Adrian Taylor0ea2a34b2023-03-18 08:08:32875# This group exists to give targets for the waterfall to refer to.
Adrian Taylor21dcb362021-09-01 14:58:14876group("rust_build_tests") {
Lukasz Anforowicz8524e3562021-09-23 14:12:26877 testonly = true
Adrian Taylor21dcb362021-09-01 14:58:14878 deps = [ "//build/rust/tests" ]
tfarinafbc992492017-03-08 22:44:04879}
880
Maksim Sisov25c86c82020-08-18 19:25:08881# TODO(https://crbug.com/1112776): ensure remoting is functional on Linux builds with
Maksim Sisov941ac832021-11-09 06:34:19882# other than X11 Ozone backends.
883if (enable_remoting && ((is_linux && ozone_platform_x11) ||
884 ((is_chromeos || is_win) && !use_ozone))) {
Nicolas Ouellet-Payeurebe785238d2021-11-12 14:49:55885 # On CQ, run the Traffic Annotation Auditor when a change affects one of these
886 # targets.
887 group("traffic_annotation_auditor_dependencies") {
Takuto Ikuta9d11eb12018-11-20 02:30:00888 deps = [
889 "//chrome:chrome",
Yuwei Huang256df172019-10-01 00:55:12890 "//remoting/client",
Takuto Ikuta9d11eb12018-11-20 02:30:00891 "//remoting/host:host",
Nicolas Ouellet-Payeur8026e2a2022-10-03 18:27:55892 "//tools/traffic_annotation:annotations_xml",
Takuto Ikuta9d11eb12018-11-20 02:30:00893 ]
Joe Mason448d37b5d2019-12-11 16:00:50894
895 if (is_win) {
896 deps += [ "//chrome/chrome_cleaner:shipped_binaries" ]
897 }
Takuto Ikuta9d11eb12018-11-20 02:30:00898 }
899}
900
Baijun Zhua9842652022-05-19 23:28:34901if (is_chromeos_ash) {
902 group("traffic_annotation_auditor_dependencies") {
903 deps = [
904 "//chrome",
905 "//chromeos",
Nicolas Ouellet-Payeur8026e2a2022-10-03 18:27:55906 "//tools/traffic_annotation:annotations_xml",
Baijun Zhua9842652022-05-19 23:28:34907 ]
908 }
909}
910
Stefano Duo1a1fcca2023-04-03 09:06:37911if (is_android && !is_cronet_build) {
Nicolas Ouellet-Payeurebe785238d2021-11-12 14:49:55912 # On CQ, run the Traffic Annotation Auditor when a change affects one of these
913 # targets.
914 group("traffic_annotation_auditor_dependencies") {
915 deps = [
916 "//chrome/android:chrome_public_apk",
Nicolas Ouellet-Payeur8026e2a2022-10-03 18:27:55917 "//tools/traffic_annotation:annotations_xml",
Nicolas Ouellet-Payeurebe785238d2021-11-12 14:49:55918 ]
919 }
920}
921
Scott Graham677e79102017-08-15 20:07:37922if (is_fuchsia) {
923 # TODO(https://crbug.com/731217): This can't practically be in //v8 without
924 # duplicating all the Fuchsia running infrastructure there.
Greg Thompsonada4b212022-09-12 13:31:49925 fuchsia_component("d8_component") {
Kevin Marshall57a19db2018-09-12 20:07:05926 testonly = true
Greg Thompsonada4b212022-09-12 13:31:49927 manifest = "//v8/gni/v8.cml"
928 data_deps = [ "//v8:d8" ]
Kevin Marshall39b4aa82018-06-23 00:12:15929 }
Greg Thompsonada4b212022-09-12 13:31:49930 fuchsia_package("d8_pkg") {
931 testonly = true
932 package_name = "d8"
933 deps = [ ":d8_component" ]
934 }
Kevin Marshall5fadadd2021-10-16 00:08:25935 fuchsia_package_installer("d8_fuchsia") {
Kevin Marshall57a19db2018-09-12 20:07:05936 testonly = true
Greg Thompsonada4b212022-09-12 13:31:49937 package = ":d8_pkg"
Kevin Marshall5fadadd2021-10-16 00:08:25938 package_name = "d8"
Scott Graham677e79102017-08-15 20:07:37939 }
940}
941
tfarinafbc992492017-03-08 22:44:04942# TODO(GYP_GONE): Figure out if we really need this target or if there's
943# some better way to specify things.
944if (is_win) {
945 group("chrome_official_builder_no_unittests") {
946 deps = [
probergefe476002017-06-23 14:29:01947 "//chrome/common/win:eventlog_provider",
Roger Tawa5cb75d72018-11-09 21:56:38948 "//chrome/credential_provider",
tfarinafbc992492017-03-08 22:44:04949 "//chrome/installer/gcapi",
950 "//chrome/installer/mini_installer",
Joshua Pawlickie7e42ef2021-11-10 00:19:19951 "//chrome/updater/win:updater_zip",
tfarinafbc992492017-03-08 22:44:04952 "//components/policy:pack_policy_templates",
Samuel Huang577ef6c2018-03-13 18:19:34953 "//components/zucchini",
Will Harris62dfa042022-11-16 00:54:21954 "//components/zucchini:zucchini64",
tfarinafbc992492017-03-08 22:44:04955 "//courgette",
Koji Ishii4adc9c072020-09-07 04:03:43956 "//third_party/hyphenation-patterns",
holteb87f01f52017-04-10 20:45:53957 "//tools/metrics:metrics_metadata",
tfarinafbc992492017-03-08 22:44:04958 ]
959
960 if (target_cpu == "x86") {
Nico Weber10767ac2022-11-09 19:00:13961 deps += [
962 "//courgette:copy_courgette_binaries",
963 "//courgette(//build/toolchain/win:win_clang_x64)",
964 ]
tfarinafbc992492017-03-08 22:44:04965 }
966 if (is_chrome_branded) {
967 deps += [ "//remoting/host:remoting_host_installation" ]
968 }
969 }
970
971 group("chrome_official_builder") {
972 testonly = true
973
974 deps = [
975 ":chrome_official_builder_no_unittests",
976 "//base:base_unittests",
977 "//chrome/test:browser_tests",
tfarinafbc992492017-03-08 22:44:04978 "//ipc:ipc_tests",
979 "//media:media_unittests",
980 "//media/midi:midi_unittests",
981 "//net:net_unittests",
982 "//printing:printing_unittests",
983 "//sql:sql_unittests",
Michael Moss0484ee5c2020-05-14 17:18:06984 "//third_party/breakpad:symupload($host_toolchain)",
tfarinafbc992492017-03-08 22:44:04985 "//ui/base:ui_base_unittests",
986 "//ui/gfx:gfx_unittests",
987 "//ui/touch_selection:ui_touch_selection_unittests",
988 "//ui/views:views_unittests",
989 "//url:url_unittests",
990 ]
991 }
tfarinafbc992492017-03-08 22:44:04992}
993
Yuta Hijikata05f38002020-12-17 00:49:24994if (is_chromeos_ash) {
Ben Pastenebbb9bf142020-03-30 17:51:14995 # This group is used to collect all targets used when verifying a new version
996 # of Chrome for Chrome OS.
tfarinafbc992492017-03-08 22:44:04997 group("chromiumos_preflight") {
998 testonly = true
Ben Pastene3ea517912020-07-02 00:20:42999 data_deps = [
tfarinafbc992492017-03-08 22:44:041000 "//chrome",
Vladimir Nechaev83555c02022-11-04 05:26:411001 "//chrome/test/chromedriver:chromedriver_server",
Wei Lee01d63ef2019-05-09 09:24:501002 "//components/chromeos_camera:jpeg_decode_accelerator_unittest",
Jim Shargo906dbce2021-10-14 18:48:461003 "//components/exo/wayland:wayland_client_integration_tests",
Ben Pastenebbb9bf142020-03-30 17:51:141004 "//components/exo/wayland:wayland_client_perftests",
Lucas Berthou8841d6272021-02-24 20:28:501005 "//components/exo/wayland:wayland_client_tests",
Femi Adegunloye6a953a52023-02-07 19:33:531006 "//components/exo/wayland:wayland_hdr_client",
Mohamed Omar42fe5872022-08-10 17:25:531007 "//components/policy/test_support:fake_dmserver",
tfarinafbc992492017-03-08 22:44:041008 "//media:media_unittests",
Ben Pastenebbb9bf142020-03-30 17:51:141009 "//media/capture:capture_unittests",
tfarinafbc992492017-03-08 22:44:041010 "//sandbox/linux:chrome_sandbox",
Henrique Nakashima87b6d8b2022-07-13 13:59:041011 "//sandbox/linux:sandbox_linux_unittests",
Mark Mentovaiebb9ddd62017-09-25 17:24:411012 "//third_party/breakpad:minidump_stackwalk($host_toolchain)",
Austin Engbab1a5d2022-02-10 17:35:101013 "//third_party/dawn/src/dawn/tests:dawn_end2end_tests",
1014 "//third_party/dawn/src/dawn/tests:dawn_unittests",
Jim Shargoc84cb582022-04-28 17:10:571015 "//ui/ozone:ozone_integration_tests",
tfarinafbc992492017-03-08 22:44:041016
1017 # Blocked on https://github.com/catapult-project/catapult/issues/2297
1018 #"//third_party/catapult/telemetry:bitmaptools",
1019 "//tools/perf/clear_system_cache",
Ben Pastenebbb9bf142020-03-30 17:51:141020 "//ui/ozone/gl:ozone_gl_unittests",
tfarinafbc992492017-03-08 22:44:041021 ]
Alexandre Courbot8ad2427d2017-08-25 14:04:551022
Lei Zhang1e297622022-06-28 10:30:061023 if (enable_plugins) {
1024 data_deps += [ "//ppapi/examples/video_decode" ]
1025 }
1026
Alexandre Courbot8ad2427d2017-08-25 14:04:551027 if (use_v4l2_codec || use_vaapi) {
Ben Pastene3ea517912020-07-02 00:20:421028 data_deps += [
Wei Lee01d63ef2019-05-09 09:24:501029 "//components/chromeos_camera:jpeg_encode_accelerator_unittest",
Collin Baker7ce81ea2023-03-30 19:35:451030 "//media/gpu/chromeos:image_processor_test",
Miguel Casasadc54be2023-03-27 18:20:441031 "//media/gpu/test/:video_decode_accelerator_perf_tests",
1032 "//media/gpu/test/:video_decode_accelerator_tests",
1033 "//media/gpu/test/:video_encode_accelerator_perf_tests",
1034 "//media/gpu/test/:video_encode_accelerator_tests",
Alexandre Courbot8ad2427d2017-08-25 14:04:551035 ]
Ben Pastenebbb9bf142020-03-30 17:51:141036 if (use_vaapi) {
Jao-ke Chin-Lee994de272020-12-28 20:05:081037 data_deps += [
1038 "//media/gpu/vaapi:decode_test",
1039 "//media/gpu/vaapi:vaapi_unittest",
Grayson LaFleur5e224832022-12-16 04:30:131040 "//media/gpu/vaapi/test/fake_libva_driver:fake_libva_driver_unittest",
Jao-ke Chin-Lee994de272020-12-28 20:05:081041 ]
Ben Pastenebbb9bf142020-03-30 17:51:141042 }
Steve Cho2ac5f2d2022-02-04 17:15:421043 if (use_v4l2_codec) {
1044 data_deps += [ "//media/gpu/v4l2:v4l2_stateless_decoder" ]
1045 }
Alexandre Courbot8ad2427d2017-08-25 14:04:551046 }
tfarinafbc992492017-03-08 22:44:041047 }
dprankedb5527d72015-03-08 04:22:471048}
1049
Stefano Duo1a1fcca2023-04-03 09:06:371050if (!is_ios && !is_cronet_build) {
Vladimir Nechaeveb261292022-11-18 06:18:051051 group("chromedriver_group") {
David Dorwin776712222022-04-13 23:01:541052 testonly = true
1053
1054 if (is_fuchsia || is_android) {
Ryan Keanea67d8022022-06-18 00:20:321055 # On Fuchsia and non-Cast Android, ChromeDriver runs on the host, not the
1056 # device.
1057 if (!is_cast_android) {
Vladimir Nechaev83555c02022-11-04 05:26:411058 deps = [
1059 "//chrome/test/chromedriver:chromedriver_server($host_toolchain)",
1060 ]
Ryan Keanea67d8022022-06-18 00:20:321061 }
1062 if (is_android && !is_cast_android) {
1063 deps += [ "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk" ]
David Dorwin776712222022-04-13 23:01:541064 }
Daniel Nicoaracf98a1bf2022-08-09 19:51:441065 } else if (!is_castos) {
David Dorwin776712222022-04-13 23:01:541066 deps = [
Vladimir Nechaev83555c02022-11-04 05:26:411067 "//chrome/test/chromedriver:chromedriver_server",
David Dorwin776712222022-04-13 23:01:541068 "//chrome/test/chromedriver:chromedriver_unittests",
Vladimir Nechaev887ed132022-10-18 18:42:031069 "//chrome/test/chromedriver:generate_chromedriver_license",
David Dorwin776712222022-04-13 23:01:541070 ]
1071 }
1072 }
1073
tfarinacb2638b2015-05-12 03:24:151074 # This group includes all of the targets needed to build and test Blink,
Giovanni Ortuño Urquidie7f98f82019-10-29 00:26:591075 # including running web tests (see below). This target is defined here because
1076 # previously //third_party/WebKit, now //third_party/blink, couldn't depend on
1077 # //content/shell. This might not longer be true, see
1078 # https://crbug.com/1018659.
tfarinacb2638b2015-05-12 03:24:151079 group("blink_tests") {
1080 testonly = true
1081
1082 deps = [
Kent Tamuraef54e402019-02-14 07:18:361083 ":blink_web_tests",
Weizhong Xia8b786422022-06-23 14:46:511084 ":blink_wpt_tests",
Blink Reformata30d4232018-04-07 15:31:061085 "//third_party/blink/public:all_blink",
tansell88df42592016-11-15 07:22:591086 ]
1087 }
1088
Kent Tamuraef54e402019-02-14 07:18:361089 # Web tests runner
Kent Tamura5e69e912018-05-02 13:05:001090 # third_party/blink/tools/run_web_tests.py
Kent Tamuraef54e402019-02-14 07:18:361091 group("run_web_tests") {
tansell88df42592016-11-15 07:22:591092 testonly = true
Weizhong Xia8b786422022-06-23 14:46:511093 deps = [
1094 ":blink_web_tests",
1095 ":blink_wpt_tests",
1096 ]
tansell88df42592016-11-15 07:22:591097 }
1098
Daniel Nicoaracf98a1bf2022-08-09 19:51:441099 if (!is_chromeos_ash && !is_ios && !is_fuchsia && !is_android && !is_castos) {
kyle Juf8cdeac2019-02-07 00:10:011100 # WPT Webdriver tests runner
1101 # chrome/test/chromedriver/test/run_webdriver_tests.py
Stephen McGruer367e9b202021-03-19 13:32:181102 script_test("webdriver_wpt_tests") {
1103 # The script is wrapped in testing/xvfb.py; the actual
1104 # run_webdriver_tests.py script is passed as an arg in gn_isolate_map.pyl
1105 script = "//testing/xvfb.py"
1106
kyle Juf8cdeac2019-02-07 00:10:011107 data = [
Brian Sheedy6bcba67d2022-02-23 23:45:111108 "//build/skia_gold_common/",
kyle Ju1c031852019-03-28 16:31:481109 "//chrome/test/chromedriver/chrome_paths.py",
1110 "//chrome/test/chromedriver/server/server.py",
1111 "//chrome/test/chromedriver/test/run_webdriver_tests.py",
1112 "//chrome/test/chromedriver/util.py",
kyle Ju0eabe31e2019-02-15 15:29:501113 "//third_party/blink/tools/blinkpy/",
Jonathan Lee8d2176382022-11-10 19:12:241114 "//third_party/blink/web_tests/external/wpt/config.json",
kyle Juf8cdeac2019-02-07 00:10:011115 "//third_party/blink/web_tests/external/wpt/webdriver/",
kyle Ju1c031852019-03-28 16:31:481116 "//third_party/blink/web_tests/VirtualTestSuites",
1117 "//third_party/blink/web_tests/WebDriverExpectations",
Keita Suzuki9ff17d42020-03-10 06:19:511118 "//third_party/pywebsocket3/src/mod_pywebsocket/",
Stephen McGruere934d52e2021-01-27 22:26:101119 "//third_party/wpt_tools/",
kyle Juf8cdeac2019-02-07 00:10:011120 ]
1121 data_deps = [
1122 "//chrome:chrome",
Vladimir Nechaev83555c02022-11-04 05:26:411123 "//chrome/test/chromedriver:chromedriver_server",
Will Harrisd35e2c92021-04-07 01:42:021124 "//testing:test_scripts_shared",
Robert Ma6f908762020-01-31 16:24:541125 "//third_party/catapult/third_party/typ",
kyle Juf8cdeac2019-02-07 00:10:011126 ]
Scott Violet0a4949d32020-02-11 18:53:031127 if (is_win) {
1128 data_deps += [ "//build/win:copy_cdb_to_output" ]
1129 }
kyle Juf8cdeac2019-02-07 00:10:011130 }
Luke Zielinski57397c7c2021-03-04 22:53:511131 script_test("wpt_tests_isolate") {
Nihar Damarasingu509ce0c2022-09-01 14:18:201132 script = "//third_party/blink/tools/run_wpt_tests.py"
Nihar Damarasingu3424b5f2023-01-05 16:37:051133 args = [
1134 "--product=chrome",
1135 "--no-show-results",
1136 ]
Luke Zielinski218ddea32019-07-15 16:52:241137 data_deps = [
1138 "//chrome:chrome",
Vladimir Nechaev83555c02022-11-04 05:26:411139 "//chrome/test/chromedriver:chromedriver_server",
Luke Zielinski57397c7c2021-03-04 22:53:511140 "//third_party/blink/tools:wpt_tests_isolate",
Luke Zielinski218ddea32019-07-15 16:52:241141 ]
Luke Zielinski218ddea32019-07-15 16:52:241142 }
Thorben Troebst9ae657482022-08-25 23:26:251143 script_test("wpt_tests_isolate_content_shell") {
Nihar Damarasingu509ce0c2022-09-01 14:18:201144 script = "//third_party/blink/tools/run_wpt_tests.py"
Nihar Damarasingu3424b5f2023-01-05 16:37:051145 args = [ "--no-show-results" ]
Thorben Troebst9ae657482022-08-25 23:26:251146 data_deps = [
1147 ":blink_web_tests_support_data",
1148 "//third_party/blink/tools:wpt_tests_isolate",
1149 ]
1150 }
kyle Juf8cdeac2019-02-07 00:10:011151 }
1152
Kai Ninomiyafb9e5962020-03-17 06:11:381153 group("blink_web_tests_support_data") {
John Budorick7c8273b2019-04-25 15:27:471154 testonly = true
tansell88df42592016-11-15 07:22:591155 data_deps = [
yzshena0646992017-04-02 22:01:271156 ":layout_test_data_mojo_bindings",
Ken Rockot86d360462018-10-24 02:50:091157 ":layout_test_data_mojo_bindings_lite",
tansell88df42592016-11-15 07:22:591158 "//content/shell:content_shell",
Ken Rockot3d21f6a2020-10-09 03:39:431159 "//content/test:mojo_bindings_web_test_mojom_js_data_deps",
Natalie Chouinard3f8829c2019-12-17 02:39:201160 "//content/test:mojo_web_test_bindings_js_data_deps",
Reilly Grantfa93b142018-02-01 02:13:481161 "//device/bluetooth/public/mojom:fake_bluetooth_interfaces_js_data_deps",
Rafael Cintron5b95b8d2020-11-04 01:58:101162 "//device/vr/public/mojom:vr_service_js_data_deps",
Christian Fremerey65d1f5e2018-03-02 23:46:481163 "//media/capture/mojom:image_capture_js_data_deps",
Adithya Srinivasan5b82b2e2018-12-14 16:08:091164 "//media/midi:mojo_js_data_deps",
yzshen9e737bf2017-06-21 19:38:231165 "//mojo/public/interfaces/bindings/tests:test_data_deps",
Giovanni Ortuño Urquidif07d80c2019-10-03 07:43:381166 "//mojo/public/js/ts/bindings/tests:test_interfaces_js_data_deps",
Natalie Chouinard3f8829c2019-12-17 02:39:201167 "//mojo/public/mojom/base:base_js_data_deps",
Ke He31d0bb02018-02-24 07:16:241168 "//services/device/public/mojom:generic_sensor_js_data_deps",
Natalie Chouinard3f8829c2019-12-17 02:39:201169 "//services/device/public/mojom:mojom_js_data_deps",
Donna Wu4dc9df32019-05-20 03:56:211170 "//services/device/public/mojom:usb_js_data_deps",
Natalie Chouinard3f8829c2019-12-17 02:39:201171 "//services/shape_detection/public/mojom:mojom_js_data_deps",
Miyoung Shin40adbd62019-07-30 07:33:401172 "//skia/public/mojom:mojom_js_data_deps",
jonrossc1179f2c2019-04-23 22:56:151173 "//testing/buildbot/filters:blink_web_tests_filter",
Blink Reformata30d4232018-04-07 15:31:061174 "//third_party/blink/public:blink_devtools_frontend_resources_files",
Alex Rudenko9d994132020-06-02 12:37:001175 "//third_party/blink/public:blink_devtools_inspector_resources",
Julie Jeongeun Kim4f1b5aa2019-05-08 01:32:091176 "//third_party/blink/public/mojom:mojom_platform_js_data_deps",
Morten Stenshorne8d7c45b2020-10-14 18:33:061177 "//third_party/blink/renderer/core:js_files_for_form_controls_web_tests",
Rakib M. Hasan995ca2e2019-10-14 19:48:401178 "//third_party/catapult/third_party/typ",
Koji Ishiia507ce82020-10-20 21:39:451179 "//third_party/hyphenation-patterns:test_data",
Alexis Hetu0f218862018-08-13 18:51:421180 "//third_party/mesa_headers",
agrieve993374cf2016-04-13 00:05:391181 "//tools/imagediff",
Brian Sheedy6bcba67d2022-02-23 23:45:111182 "//ui/base:goldctl",
tfarinacb2638b2015-05-12 03:24:151183 ]
1184
tfarinacb2638b2015-05-12 03:24:151185 if (is_android) {
tansell88df42592016-11-15 07:22:591186 data_deps += [
Mark Mentovaiebb9ddd62017-09-25 17:24:411187 "//third_party/breakpad:breakpad_unittests",
1188 "//third_party/breakpad:dump_syms",
1189 "//third_party/breakpad:microdump_stackwalk",
1190 "//third_party/breakpad:minidump_dump",
1191 "//third_party/breakpad:minidump_stackwalk",
1192 "//third_party/breakpad:symupload",
jbudoricke7bcf092016-09-28 18:24:141193 "//tools/android/forwarder2",
ojan94989c72015-07-17 21:56:421194 ]
Peter Kotwiczdeb8c9fda2020-07-03 23:34:091195 } else {
danakj89f47082020-09-02 17:53:431196 data_deps += [ "//content/web_test:web_test_common_mojom_js_data_deps" ]
tfarinacb2638b2015-05-12 03:24:151197 }
1198
tfarinacb2638b2015-05-12 03:24:151199 if (!is_win && !is_android) {
Mark Mentovaiebb9ddd62017-09-25 17:24:411200 data_deps +=
1201 [ "//third_party/breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:151202 }
1203
1204 if (is_mac) {
Mark Mentovaiebb9ddd62017-09-25 17:24:411205 data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:151206 }
1207
Sean McAllisterdeaa7402020-07-31 04:42:541208 if (is_linux || is_chromeos) {
Mark Mentovaiebb9ddd62017-09-25 17:24:411209 data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:151210 }
qyearsley165a17a82016-08-01 17:58:501211
Sergey Ulanovdaa25ebc2018-01-02 18:17:171212 if (is_fuchsia) {
Kevin Marshall5fadadd2021-10-16 00:08:251213 data_deps += [
1214 "//build/config/fuchsia:deployment_resources",
1215 "//content/shell:content_shell_fuchsia",
1216 "//content/shell:content_shell_pkg__archive-manifest",
1217 "//content/shell:content_shell_pkg__archive-metadata",
1218 ]
Sergey Ulanovdaa25ebc2018-01-02 18:17:171219 }
1220
qyearsley165a17a82016-08-01 17:58:501221 data = [
Brian Sheedy6bcba67d2022-02-23 23:45:111222 "//build/skia_gold_common/",
Austin Eng11eba3d2020-10-01 15:08:191223 "//testing/scripts/common.py",
1224 "//testing/scripts/run_isolated_script_test.py",
1225 "//testing/xvfb.py",
Kent Tamurac1e4c412018-04-19 02:01:361226 "//third_party/blink/tools/",
Jonathan Lee8d2176382022-11-10 19:12:241227 "//third_party/blink/web_tests/external/wpt/config.json",
Kai Ninomiyafb9e5962020-03-17 06:11:381228 "//third_party/blink/web_tests/resources/",
Keita Suzuki9ff17d42020-03-10 06:19:511229 "//third_party/pywebsocket3/src/mod_pywebsocket/",
Kent Tamura5a9c7e42020-06-18 10:38:141230 "//third_party/test_fonts/test_fonts/",
Stephen McGruere934d52e2021-01-27 22:26:101231 "//third_party/wpt_tools/",
qyearsley165a17a82016-08-01 17:58:501232 ]
tansell0e6baaf22017-02-16 09:14:531233
tansell820f7df2017-02-16 13:59:151234 if (is_win) {
tansell1b05bbd2017-05-04 09:30:321235 data += [
1236 "//third_party/apache-win32/",
Takuto Ikuta1623ca32018-11-12 15:16:081237 "//third_party/perl/perl/",
tansell1b05bbd2017-05-04 09:30:321238 ]
Scott Violet0a4949d32020-02-11 18:53:031239 data_deps += [ "//build/win:copy_cdb_to_output" ]
tansell820f7df2017-02-16 13:59:151240 }
1241
Weizhong Xia05781fc2022-03-16 01:05:091242 if (is_mac) {
Nico Weber5a0046e2022-03-23 20:46:301243 data += [
1244 "//third_party/apache-mac/",
1245 "//third_party/apache-mac-arm64/",
1246 ]
Weizhong Xia05781fc2022-03-16 01:05:091247 }
1248
Weizhong Xiaa14eaad2022-04-01 02:04:441249 if (is_linux || is_fuchsia) {
1250 data += [ "//third_party/apache-linux/" ]
1251 }
1252
tansell0e6baaf22017-02-16 09:14:531253 if (is_android) {
1254 data += [
1255 "//third_party/catapult/",
1256 "//build/android/",
1257 ]
1258 }
tfarinacb2638b2015-05-12 03:24:151259 }
yzshena0646992017-04-02 22:01:271260
Dirk Pranke67bc5a9d2020-10-09 16:33:481261 _common_web_test_script = "//testing/scripts/run_isolated_script_test.py"
1262
Chong Gu70ee43a12022-12-08 22:57:371263 if (is_fuchsia) {
1264 _common_web_test_args = [
1265 "@WrappedPath(" +
1266 rebase_path("//build/fuchsia/test/run_test.py", root_build_dir) + ")",
1267 "blink",
1268 "--out-dir",
1269 "@WrappedPath(.)",
1270 ]
1271 } else {
1272 _common_web_test_args = [ "@WrappedPath(" + rebase_path(
1273 "//third_party/blink/tools/run_web_tests.py",
1274 root_build_dir) + ")" ]
1275 }
Dirk Pranke67bc5a9d2020-10-09 16:33:481276 if (is_debug) {
1277 _common_web_test_args += [ "--debug" ]
1278 } else {
1279 _common_web_test_args += [ "--release" ]
Dirk Prankef452bb2a2020-10-09 22:11:551280 if (dcheck_always_on) {
Weizhong Xia91b53362022-01-05 17:13:351281 _common_web_test_args += [ "--timeout-ms=12000" ]
Dirk Prankef452bb2a2020-10-09 22:11:551282 }
Dirk Pranke67bc5a9d2020-10-09 16:33:481283 }
1284
1285 if (is_android) {
1286 _common_web_test_args += [
1287 "--platform",
1288 "android",
1289 ]
1290 }
1291
Chong Gu70ee43a12022-12-08 22:57:371292 if (is_fuchsia) {
1293 _common_web_test_args += [
1294 "--platform",
1295 "fuchsia",
1296 "--jobs",
1297 "1",
1298 ]
1299 }
1300
Dirk Pranke67bc5a9d2020-10-09 16:33:481301 _common_web_test_args += [
1302 "--seed",
1303 "4",
Weizhong Xiaeaff2f22022-01-24 18:34:141304 "--debug-rwt-logging",
Dirk Pranke67bc5a9d2020-10-09 16:33:481305 "--no-show-results",
1306 "--zero-tests-executed-ok",
1307 "--clobber-old-results",
Dirk Pranke67bc5a9d2020-10-09 16:33:481308 ]
1309
John Palmer0e0f72bf2021-06-07 09:10:201310 # https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_tests.md
Dirk Pranke6188075b2020-10-01 19:31:281311 script_test("blink_web_tests") {
Dirk Pranke67bc5a9d2020-10-09 16:33:481312 script = _common_web_test_script
Dirk Pranke6188075b2020-10-01 19:31:281313
Dirk Pranke67bc5a9d2020-10-09 16:33:481314 args = _common_web_test_args
Dirk Pranke6188075b2020-10-01 19:31:281315
Ian Clelland07ffd02c2021-07-08 19:22:381316 data_deps = [ ":blink_web_tests_support_data" ]
Kai Ninomiyafb9e5962020-03-17 06:11:381317 data = [
1318 "//third_party/blink/perf_tests/",
Weizhong Xia02352952022-04-29 00:49:421319 "//third_party/blink/web_tests/SmokeTests/Default.txt",
Weizhong Xia53c492162021-09-09 17:08:241320 "//third_party/blink/web_tests/VirtualTestSuites",
Alastair Donaldson308bb212021-09-14 20:50:271321
Weizhong Xia53c492162021-09-09 17:08:241322 # List all test expectations here
1323 "//third_party/blink/web_tests/ASANExpectations",
1324 "//third_party/blink/web_tests/LeakExpectations",
1325 "//third_party/blink/web_tests/MSANExpectations",
1326 "//third_party/blink/web_tests/NeverFixTests",
1327 "//third_party/blink/web_tests/SlowTests",
1328 "//third_party/blink/web_tests/StaleTestExpectations",
1329 "//third_party/blink/web_tests/TestExpectations",
1330 "//third_party/blink/web_tests/WebDriverExpectations",
1331 "//third_party/blink/web_tests/WebGPUExpectations",
Alastair Donaldson308bb212021-09-14 20:50:271332
Weizhong Xia53c492162021-09-09 17:08:241333 # === List Test Cases folders here ===
1334 "//third_party/blink/web_tests/accessibility/",
1335 "//third_party/blink/web_tests/android/",
1336 "//third_party/blink/web_tests/animations/",
1337 "//third_party/blink/web_tests/app_banner/",
1338 "//third_party/blink/web_tests/bindings/",
1339 "//third_party/blink/web_tests/clipboard/",
1340 "//third_party/blink/web_tests/compositing/",
1341 "//third_party/blink/web_tests/crypto/",
1342 "//third_party/blink/web_tests/css-parser/",
1343 "//third_party/blink/web_tests/css1/",
1344 "//third_party/blink/web_tests/css2.1/",
1345 "//third_party/blink/web_tests/css3/",
1346 "//third_party/blink/web_tests/cssom/",
1347 "//third_party/blink/web_tests/custom-elements/",
1348 "//third_party/blink/web_tests/custom-properties/",
1349 "//third_party/blink/web_tests/dark-mode/",
1350 "//third_party/blink/web_tests/dom/",
1351 "//third_party/blink/web_tests/editing/",
Weizhong Xia53c492162021-09-09 17:08:241352 "//third_party/blink/web_tests/fast/",
1353 "//third_party/blink/web_tests/fonts/",
1354 "//third_party/blink/web_tests/fragmentation/",
1355 "//third_party/blink/web_tests/fullscreen/",
1356 "//third_party/blink/web_tests/gamepad/",
1357 "//third_party/blink/web_tests/harness-tests/",
1358 "//third_party/blink/web_tests/hittesting/",
1359 "//third_party/blink/web_tests/html/",
1360 "//third_party/blink/web_tests/html5lib/",
1361 "//third_party/blink/web_tests/http/",
1362 "//third_party/blink/web_tests/idle-callback/",
1363 "//third_party/blink/web_tests/ietestcenter/",
1364 "//third_party/blink/web_tests/images/",
1365 "//third_party/blink/web_tests/inspector-protocol/",
1366 "//third_party/blink/web_tests/intersection-observer/",
1367 "//third_party/blink/web_tests/jquery/",
1368 "//third_party/blink/web_tests/js/",
Weizhong Xia53c492162021-09-09 17:08:241369 "//third_party/blink/web_tests/loader/",
1370 "//third_party/blink/web_tests/media/",
1371 "//third_party/blink/web_tests/media_capabilities/",
1372 "//third_party/blink/web_tests/mhtml/",
1373 "//third_party/blink/web_tests/navigator_language/",
1374 "//third_party/blink/web_tests/navigator_webdriver/",
1375 "//third_party/blink/web_tests/netinfo/",
1376 "//third_party/blink/web_tests/overflow/",
1377 "//third_party/blink/web_tests/paint/",
1378 "//third_party/blink/web_tests/payments/",
1379 "//third_party/blink/web_tests/permissionclient/",
1380 "//third_party/blink/web_tests/plugins/",
1381 "//third_party/blink/web_tests/pointer-lock/",
1382 "//third_party/blink/web_tests/print_testharness/",
1383 "//third_party/blink/web_tests/printing/",
1384 "//third_party/blink/web_tests/register-protocol-handler/",
1385 "//third_party/blink/web_tests/regress/",
1386 "//third_party/blink/web_tests/resize-observer/",
1387 "//third_party/blink/web_tests/resources/",
1388 "//third_party/blink/web_tests/rootscroller/",
1389 "//third_party/blink/web_tests/screen_orientation/",
1390 "//third_party/blink/web_tests/scrollbars/",
1391 "//third_party/blink/web_tests/scrollingcoordinator/",
1392 "//third_party/blink/web_tests/security/",
Jiewei Qian4db71f42021-12-09 02:31:071393 "//third_party/blink/web_tests/handwriting/",
Weizhong Xia53c492162021-09-09 17:08:241394 "//third_party/blink/web_tests/shadow-dom/",
1395 "//third_party/blink/web_tests/storage/",
1396 "//third_party/blink/web_tests/svg/",
1397 "//third_party/blink/web_tests/synthetic_gestures/",
1398 "//third_party/blink/web_tests/tables/",
1399 "//third_party/blink/web_tests/test_runner/",
1400 "//third_party/blink/web_tests/third_party/",
1401 "//third_party/blink/web_tests/timezonechange/",
1402 "//third_party/blink/web_tests/touchadjustment/",
1403 "//third_party/blink/web_tests/transforms/",
1404 "//third_party/blink/web_tests/transitions/",
1405 "//third_party/blink/web_tests/traversal/",
1406 "//third_party/blink/web_tests/typedcssom/",
1407 "//third_party/blink/web_tests/vibration/",
Vladimir Levin501455e2022-11-04 20:04:541408 "//third_party/blink/web_tests/view-transition/",
Weizhong Xia53c492162021-09-09 17:08:241409 "//third_party/blink/web_tests/virtual/",
1410 "//third_party/blink/web_tests/virtualkeyboard/",
Weizhong Xia53c492162021-09-09 17:08:241411 "//third_party/blink/web_tests/wasm/",
1412 "//third_party/blink/web_tests/webaudio/",
1413 "//third_party/blink/web_tests/webexposed/",
1414 "//third_party/blink/web_tests/webgpu/",
Weizhong Xia53c492162021-09-09 17:08:241415 "//third_party/blink/web_tests/xmlviewer/",
Alastair Donaldson308bb212021-09-14 20:50:271416
Weizhong Xia53c492162021-09-09 17:08:241417 # === Test Case Folders Ends ===
Kai Ninomiyafb9e5962020-03-17 06:11:381418 ]
Weizhong Xia53c492162021-09-09 17:08:241419
1420 if (is_win || is_linux || is_fuchsia) {
1421 data += [
1422 "//third_party/blink/web_tests/platform/win/",
Weizhong Xiadfb5304f2022-05-12 20:36:261423 "//third_party/blink/web_tests/platform/win10/",
Weizhong Xia53c492162021-09-09 17:08:241424 ]
1425 if (is_linux || is_fuchsia) {
1426 data += [ "//third_party/blink/web_tests/platform/linux/" ]
1427 }
1428 if (is_fuchsia) {
Chong Gu70ee43a12022-12-08 22:57:371429 data += [
1430 "//third_party/blink/web_tests/platform/fuchsia/",
1431 "$root_gen_dir/package_metadata/content_shell.meta",
1432 ]
Weizhong Xia53c492162021-09-09 17:08:241433 }
1434 } else if (is_mac) {
1435 data += [
Weizhong Xia02352952022-04-29 00:49:421436 "//third_party/blink/web_tests/SmokeTests/Mac.txt",
Weizhong Xia53c492162021-09-09 17:08:241437 "//third_party/blink/web_tests/platform/mac/",
Weizhong Xia53c492162021-09-09 17:08:241438 "//third_party/blink/web_tests/platform/mac-mac10.13/",
1439 "//third_party/blink/web_tests/platform/mac-mac10.14/",
1440 "//third_party/blink/web_tests/platform/mac-mac10.15/",
Jonathan Leedbea4d4d2022-05-25 15:35:091441 "//third_party/blink/web_tests/platform/mac-mac11/",
Weizhong Xia53c492162021-09-09 17:08:241442 "//third_party/blink/web_tests/platform/mac-mac11-arm64/",
Nihar Damarasingu24703e22023-02-06 23:39:391443 "//third_party/blink/web_tests/platform/mac-mac12/",
Jonathan Leedbea4d4d2022-05-25 15:35:091444 "//third_party/blink/web_tests/platform/mac-mac12-arm64/",
Nihar Damarasingu24703e22023-02-06 23:39:391445 "//third_party/blink/web_tests/platform/mac-mac13-arm64/",
Weizhong Xia53c492162021-09-09 17:08:241446 ]
1447 }
1448
1449 # flag-specific tests only runs on linux as of now
1450 if (is_linux) {
1451 data += [
1452 "//third_party/blink/web_tests/FlagSpecificConfig",
1453 "//third_party/blink/web_tests/FlagExpectations/",
1454 "//third_party/blink/web_tests/flag-specific/",
Weizhong Xia42f6f8c2022-10-11 20:06:551455 "//third_party/blink/web_tests/SmokeTests/",
Weizhong Xia53c492162021-09-09 17:08:241456 ]
1457 }
Kai Ninomiyafb9e5962020-03-17 06:11:381458 }
1459
Weizhong Xia8b786422022-06-23 14:46:511460 script_test("blink_wpt_tests") {
1461 script = _common_web_test_script
1462
1463 args = _common_web_test_args
1464
Weizhong Xia904cdf562022-08-25 02:00:331465 # Use --wpt-only to skip tests under web_tests/virtual/
1466 args += [ "--wpt-only" ]
1467
Weizhong Xia8b786422022-06-23 14:46:511468 data_deps = [ ":blink_web_tests_support_data" ]
1469 data = [
1470 "//third_party/blink/perf_tests/",
1471 "//third_party/blink/web_tests/SmokeTests/Default.txt",
1472 "//third_party/blink/web_tests/VirtualTestSuites",
1473
1474 # List all test expectations here
1475 "//third_party/blink/web_tests/ASANExpectations",
1476 "//third_party/blink/web_tests/LeakExpectations",
1477 "//third_party/blink/web_tests/MSANExpectations",
1478 "//third_party/blink/web_tests/NeverFixTests",
1479 "//third_party/blink/web_tests/SlowTests",
1480 "//third_party/blink/web_tests/StaleTestExpectations",
1481 "//third_party/blink/web_tests/TestExpectations",
1482 "//third_party/blink/web_tests/WebDriverExpectations",
1483 "//third_party/blink/web_tests/WebGPUExpectations",
1484
Weizhong Xia8b786422022-06-23 14:46:511485 # === List Test Cases folders here ===
1486 "//third_party/blink/web_tests/external/",
1487 "//third_party/blink/web_tests/wpt_internal/",
Weizhong Xia904cdf562022-08-25 02:00:331488 "//third_party/blink/web_tests/virtual/",
Weizhong Xia8b786422022-06-23 14:46:511489
1490 # === Test Case Folders Ends ===
1491 ]
1492
1493 if (is_win || is_linux || is_fuchsia) {
1494 data += [
1495 "//third_party/blink/web_tests/platform/win/",
1496 "//third_party/blink/web_tests/platform/win10/",
Weizhong Xia8b786422022-06-23 14:46:511497 ]
1498 if (is_linux || is_fuchsia) {
1499 data += [ "//third_party/blink/web_tests/platform/linux/" ]
1500 }
1501 if (is_fuchsia) {
Chong Gu70ee43a12022-12-08 22:57:371502 data += [
1503 "//third_party/blink/web_tests/platform/fuchsia/",
1504 "$root_gen_dir/package_metadata/content_shell.meta",
1505 ]
Weizhong Xia8b786422022-06-23 14:46:511506 }
1507 } else if (is_mac) {
1508 data += [
1509 "//third_party/blink/web_tests/SmokeTests/Mac.txt",
1510 "//third_party/blink/web_tests/platform/mac/",
1511 "//third_party/blink/web_tests/platform/mac-mac10.13/",
1512 "//third_party/blink/web_tests/platform/mac-mac10.14/",
1513 "//third_party/blink/web_tests/platform/mac-mac10.15/",
1514 "//third_party/blink/web_tests/platform/mac-mac11-arm64/",
1515 ]
1516 }
1517
1518 # flag-specific tests only runs on linux as of now
1519 if (is_linux) {
1520 data += [
1521 "//third_party/blink/web_tests/FlagSpecificConfig",
1522 "//third_party/blink/web_tests/FlagExpectations/",
1523 "//third_party/blink/web_tests/flag-specific/",
Weizhong Xia42f6f8c2022-10-11 20:06:551524 "//third_party/blink/web_tests/SmokeTests/",
Weizhong Xia8b786422022-06-23 14:46:511525 ]
1526 }
1527 }
1528
Dirk Pranke67bc5a9d2020-10-09 16:33:481529 script_test("devtools_web_tests") {
1530 # This target differs from :blink_web_tests in that it uses the
1531 # same test harness but runs an entirely different set of tests
1532 # and doesn't have a dependency on the web_test directory at all.
1533 script = _common_web_test_script
Kai Ninomiyafb9e5962020-03-17 06:11:381534
Dirk Pranke67bc5a9d2020-10-09 16:33:481535 args = _common_web_test_args + [
Patrick Brossetf30adff2020-10-12 18:33:321536 "--layout-tests-directory=@WrappedPath(" + rebase_path(
Dirk Pranke67bc5a9d2020-10-09 16:33:481537 "//third_party/devtools-frontend/src/test/webtests",
1538 root_out_dir) + ")",
1539 "http/tests/devtools",
1540 ]
Kai Ninomiyafb9e5962020-03-17 06:11:381541
Dirk Pranke67bc5a9d2020-10-09 16:33:481542 data_deps = [ ":blink_web_tests_support_data" ]
1543 data = [ "//third_party/devtools-frontend/src/test/webtests/" ]
1544 }
1545
1546 script_test("webgpu_blink_web_tests") {
1547 # This target differs from :blink_web_tests in that it uses the same
1548 # test harness and a few additional flags but, more importantly, only runs
1549 # the web_tests/wpt_internal/webgpu tests, so it doesn't have a data
Austin Eng2cddb7752022-06-09 02:40:291550 # dependency on the whole web_test directory.
Dirk Pranke67bc5a9d2020-10-09 16:33:481551 script = _common_web_test_script
Austin Eng4beb5d62021-03-24 16:29:591552
Austin Eng2cddb7752022-06-09 02:40:291553 args = _common_web_test_args
Austin Eng8e638d92021-04-02 17:08:081554 if (is_asan) {
Weizhong Xia91b53362022-01-05 17:13:351555 args += [ "--timeout-ms=30000" ]
Austin Eng8e638d92021-04-02 17:08:081556 }
Austin Eng4beb5d62021-03-24 16:29:591557 args += [
Austin Eng2cddb7752022-06-09 02:40:291558 "--ignore-default-expectations",
1559 "--additional-expectations",
Austin Eng4beb5d62021-03-24 16:29:591560 "@WrappedPath(../../third_party/blink/web_tests/WebGPUExpectations)",
shrekshao96b18a762023-03-20 18:28:571561 "--isolated-script-test-filter=wpt_internal/webgpu/*",
Austin Eng4beb5d62021-03-24 16:29:591562 ]
Kai Ninomiyafb9e5962020-03-17 06:11:381563
Austin Eng32e07032021-03-18 16:30:101564 data_deps = [
1565 ":blink_web_tests_support_data",
1566 "//third_party/webgpu-cts",
1567 ]
Kai Ninomiyafb9e5962020-03-17 06:11:381568 data = [
Weizhong Xiad8a66332022-07-30 00:34:201569 "//third_party/blink/web_tests/external/wpt/common/",
1570 "//third_party/blink/web_tests/external/wpt/resources/",
Brian Sheedy10ddf0a2021-08-16 23:19:071571 "//third_party/blink/web_tests/FlagSpecificConfig",
Weizhong Xiad8a66332022-07-30 00:34:201572 "//third_party/blink/web_tests/VirtualTestSuites",
Kai Ninomiyafb9e5962020-03-17 06:11:381573 "//third_party/blink/web_tests/WebGPUExpectations",
Weizhong Xia64ec8c22022-06-24 03:39:341574 "//third_party/blink/web_tests/wpt_internal/",
Austin Eng4beb5d62021-03-24 16:29:591575 "//third_party/webgpu-cts/scripts/",
Kai Ninomiyafb9e5962020-03-17 06:11:381576 ]
1577 }
1578
yzshena0646992017-04-02 22:01:271579 copy("layout_test_data_mojo_bindings") {
1580 testonly = true
1581
Nico Weber77da4942020-01-13 20:13:351582 sources = [ "$root_gen_dir/mojo/public/js/mojo_bindings.js" ]
yzshena0646992017-04-02 22:01:271583
Nico Weber77da4942020-01-13 20:13:351584 outputs =
1585 [ "$root_gen_dir/layout_test_data/mojo/public/js/mojo_bindings.js" ]
yzshena0646992017-04-02 22:01:271586
Nico Weber77da4942020-01-13 20:13:351587 deps = [ "//mojo/public/js:bindings" ]
yzshena0646992017-04-02 22:01:271588 }
Dirk Pranke43a5c812017-09-06 03:25:411589
Ken Rockot86d360462018-10-24 02:50:091590 copy("layout_test_data_mojo_bindings_lite") {
1591 testonly = true
1592
Nico Weber77da4942020-01-13 20:13:351593 sources = [ "$root_gen_dir/mojo/public/js/mojo_bindings_lite.js" ]
Ken Rockot86d360462018-10-24 02:50:091594
1595 outputs = [
1596 "$root_gen_dir/layout_test_data/mojo/public/js/mojo_bindings_lite.js",
1597 ]
1598
Nico Weber77da4942020-01-13 20:13:351599 deps = [ "//mojo/public/js:bindings_lite" ]
Ken Rockot86d360462018-10-24 02:50:091600 }
1601
Dirk Pranke6188075b2020-10-01 19:31:281602 script_test("blink_python_tests") {
1603 script = "//testing/scripts/run_isolated_script_test.py"
Jonathan Lee53676f22022-08-11 18:57:211604 args = [ "@WrappedPath(" +
1605 rebase_path("//third_party/blink/tools/run_blinkpy_tests.py",
1606 root_build_dir) + ")" ]
Dirk Pranke6188075b2020-10-01 19:31:281607
Dirk Pranke43a5c812017-09-06 03:25:411608 data = [
Andrew Grieve4c4cede2020-11-20 22:09:361609 # These tests use //build/android/devil_chromium.py even when !is_android,
1610 # so cannot use the helpers in //build/android (they assert(is_android)).
Dirk Pranke43a5c812017-09-06 03:25:411611 "//build/android/",
Andrew Grieve4c4cede2020-11-20 22:09:361612 "//build/gn_helpers.py",
1613 "//build/config/gclient_args.gni",
Brian Sheedy6bcba67d2022-02-23 23:45:111614 "//build/skia_gold_common/",
Dirk Pranke43a5c812017-09-06 03:25:411615 "//components/crash/content/tools/generate_breakpad_symbols.py",
Brian Sheedyfe26b942021-08-05 16:00:501616 "//testing/unexpected_passes_common/",
Preethi Mohanca2d0eb2022-10-11 19:22:051617 "//testing/flake_suppressor_common/",
Kent Tamura968e76912018-04-17 23:05:571618 "//third_party/blink/renderer/bindings/scripts/",
1619 "//third_party/blink/renderer/build/scripts/",
Dirk Pranke43a5c812017-09-06 03:25:411620 "//third_party/blink/tools/",
Kent Tamura77578cc2018-11-25 22:33:431621 "//third_party/blink/web_tests/ASANExpectations",
Brian Sheedy72b971e2023-01-06 16:46:501622 "//third_party/blink/web_tests/FlagExpectations/",
Kent Tamura77578cc2018-11-25 22:33:431623 "//third_party/blink/web_tests/LeakExpectations",
1624 "//third_party/blink/web_tests/MSANExpectations",
1625 "//third_party/blink/web_tests/NeverFixTests",
1626 "//third_party/blink/web_tests/SlowTests",
1627 "//third_party/blink/web_tests/StaleTestExpectations",
1628 "//third_party/blink/web_tests/TestExpectations",
1629 "//third_party/blink/web_tests/VirtualTestSuites",
Brian Sheedy72b971e2023-01-06 16:46:501630 "//third_party/blink/web_tests/W3CImportExpectations",
Dirk Pranke43a5c812017-09-06 03:25:411631 "//third_party/catapult/common/py_utils/",
1632 "//third_party/catapult/devil/",
1633 "//third_party/catapult/dependency_manager/",
Ned Nguyenc335c432018-04-23 01:16:461634 "//third_party/catapult/third_party/typ/",
Mike Frysinger8f8404b2019-08-21 02:20:291635 "//third_party/depot_tools/pylint-1.5",
1636 "//third_party/depot_tools/pylint_main.py",
Dirk Pranke43a5c812017-09-06 03:25:411637 "//third_party/depot_tools/pylintrc",
Dirk Pranke43a5c812017-09-06 03:25:411638 "//third_party/ply/",
Jonathan Leeee7f45862022-08-02 00:13:021639 "//third_party/wpt_tools/",
Dirk Pranke43a5c812017-09-06 03:25:411640 "//tools/idl_parser/",
1641 ]
Brian Sheedy6bcba67d2022-02-23 23:45:111642
1643 data_deps = [ "//ui/base:goldctl" ]
Dirk Pranke43a5c812017-09-06 03:25:411644 }
tfarinacb2638b2015-05-12 03:24:151645}
1646
Will Cassella857c8d82022-04-12 15:01:051647# TODO(cassew): Add more OS's that don't support x86.
1648is_valid_x86_target =
1649 target_os != "ios" && target_os != "mac" &&
1650 (target_os != "linux" || use_libfuzzer || !build_with_chromium)
Michael Achenbachc4273962022-06-27 09:12:511651
1652# Note: v8_target_cpu == arm allows using the V8 arm simulator on x86 for fuzzing.
Will Cassella857c8d82022-04-12 15:01:051653assert(
Michael Achenbach1a7961012022-06-27 11:19:001654 is_valid_x86_target || target_cpu != "x86" || v8_target_cpu == "arm",
Will Cassella857c8d82022-04-12 15:01:051655 "'target_cpu=x86' is not supported for 'target_os=$target_os'. Consider omitting 'target_cpu' (default) or using 'target_cpu=x64' instead.")
1656
dpranke2302dfa2015-09-29 02:21:521657group("chromium_builder_perf") {
1658 testonly = true
1659
Stefano Duo1a1fcca2023-04-03 09:06:371660 if (!is_ios && !is_android && !is_castos && !is_cronet_build) {
malets6b7062402016-09-15 08:14:261661 data_deps = [
dpranke2302dfa2015-09-29 02:21:521662 "//chrome/test:load_library_perf_tests",
Emily Hanleyedab9e52018-01-17 18:47:321663 "//chrome/test:performance_test_suite",
kraynovc0797582016-10-25 16:45:061664 "//components/tracing:tracing_perftests",
Antoine Labourc6ade252017-10-19 01:01:161665 "//gpu:command_buffer_perftests",
dpranke2302dfa2015-09-29 02:21:521666 "//gpu:gpu_perftests",
1667 "//media:media_perftests",
kbr1e58e782016-05-27 17:21:191668 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
dpranke2302dfa2015-09-29 02:21:521669 ]
1670
Yuta Hijikata05f38002020-12-17 00:49:241671 if (!is_chromeos_ash) {
malets6b7062402016-09-15 08:14:261672 data_deps += [ "//chrome/test:performance_browser_tests" ]
dpranke2302dfa2015-09-29 02:21:521673 }
dpranke2302dfa2015-09-29 02:21:521674
Ryan Keanea67d8022022-06-18 00:20:321675 if (!is_win) {
Mark Mentovaiebb9ddd62017-09-25 17:24:411676 data_deps +=
1677 [ "//third_party/breakpad:minidump_stackwalk($host_toolchain)" ]
dpranke2302dfa2015-09-29 02:21:521678 }
Ryan Keanea67d8022022-06-18 00:20:321679 }
1680
1681 if ((is_linux && !is_castos) || is_chromeos_lacros) {
1682 if (is_official_build) {
1683 # In GN builds, this is controlled by the 'linux_dump_symbols'
1684 # flag, which defaults to 1 for official builds. For now,
1685 # we skip the separate flag and just key off of is_official_build.
1686 data_deps += [ "//chrome:linux_symbols" ]
Yuly Novikov8a6e6352017-11-11 02:00:401687 }
David Dorwin0b132172022-03-30 04:56:111688
Ryan Keanea67d8022022-06-18 00:20:321689 data_deps += [ "//tools/perf/clear_system_cache" ]
1690 }
1691
1692 if (is_win) {
1693 data_deps += [
1694 "//chrome/installer/mini_installer:mini_installer",
1695 "//components:components_perftests",
1696 "//third_party/angle/src/tests:angle_perftests",
1697 ]
1698 }
1699
1700 # An `if (is_fuchsia)` condition in //chrome/test/BUILD.gn prevents this
1701 # target from being defined.
1702 # TODO(crbug.com/1310086): Resolve that and remove this exception.
1703 if (is_fuchsia) {
1704 data_deps -= [ "//chrome/test:performance_test_suite" ]
dpranke2302dfa2015-09-29 02:21:521705 }
1706}
agrieve017b91f2016-02-29 20:15:061707
Stefano Duo1a1fcca2023-04-03 09:06:371708if (!is_ios && !is_android && !is_castos && !is_cronet_build) {
thakis3f7d4fc2016-06-10 18:47:501709 group("chromium_builder_asan") {
1710 testonly = true
1711
1712 deps = [
1713 "//chrome:chrome",
1714 "//content/shell:content_shell",
Adrian Taylore6288432021-09-09 22:59:501715 "//third_party/blink/public/mojom:mojom_modules_js",
thakis3f7d4fc2016-06-10 18:47:501716 "//v8:d8",
1717 ]
1718 if (!is_win) {
Eric Orthdd5b8632020-11-13 02:59:421719 deps += [ "//skia:filter_fuzz_stub" ]
thakis3f7d4fc2016-06-10 18:47:501720 }
1721 if (enable_ipc_fuzzer && !is_component_build) {
Ken Rockotf87b01cf2018-12-26 06:52:261722 deps += [ "//tools/ipc_fuzzer:ipc_fuzzer_all" ]
thakis3f7d4fc2016-06-10 18:47:501723 }
Yuta Hijikata05f38002020-12-17 00:49:241724 if (!is_chromeos_ash) {
thakis3f7d4fc2016-06-10 18:47:501725 deps += [
1726 "//third_party/pdfium/samples:pdfium_test",
dpranke8a2de902016-07-14 20:08:371727 "//v8:v8_shell($v8_snapshot_toolchain)",
thakis3f7d4fc2016-06-10 18:47:501728 ]
1729 }
Max Moroz109e76b2020-02-10 17:19:521730
1731 if (!is_component_build) {
1732 # See https://bugs.chromium.org/p/chromium/issues/detail?id=942546#c11.
1733 deps += [
1734 "//third_party/webrtc/rtc_tools:rtp_generator",
1735 "//third_party/webrtc/rtc_tools:video_replay",
1736 ]
1737 }
Alastair Donaldson308bb212021-09-14 20:50:271738
1739 if (build_dawn_tests) {
Ryan Harrison2ec610f2022-04-02 02:30:241740 deps += [ "//third_party/dawn/src/tint/fuzzers:fuzzers" ]
Alastair Donaldson308bb212021-09-14 20:50:271741 }
thakis3f7d4fc2016-06-10 18:47:501742 }
1743}
1744
Stefano Duo1a1fcca2023-04-03 09:06:371745if (is_android && !is_cronet_build) {
agrieve95ba4442016-04-25 15:47:131746 group("optimize_gn_gen") {
1747 deps = [
1748 # These run expensive scripts in non-default toolchains. Generally, host
1749 # toolchain targets are loaded in the later part of the run, and the
1750 # result is they push out the end of generation. By preloading these, the
1751 # scripts can be parallelized with the rest of the load.
1752 "//build/config/linux(//build/toolchain/linux:clang_x64)",
1753 "//build/config/posix(//build/toolchain/linux:clang_x64)",
1754
1755 # Include x86 toolchains as well since V8 uses them for 32-bit snapshot
1756 # generation.
1757 "//build/config/linux(//build/toolchain/linux:clang_x86)",
1758 "//build/config/posix(//build/toolchain/linux:clang_x86)",
1759 ]
1760 }
1761}
1762
Rebekah Potter66968ea2023-01-19 23:24:411763if (is_chromeos_ash && enable_js_type_check) {
Christopher Lam739a90d2018-03-07 03:54:371764 group("webui_closure_compile") {
Trent Apted572ba7552018-10-17 00:03:301765 testonly = true
Rebekah Potter66968ea2023-01-19 23:24:411766 data_deps = [
1767 "ash/webui:closure_compile",
1768 "chrome/browser/resources:closure_compile",
1769 "chrome/test/data/webui:closure_compile",
1770 "mojo/public/tools/bindings/generators/js_templates/lite/test:closure_compile",
1771 "ui/file_manager:closure_compile",
1772 ]
Christopher Lam739a90d2018-03-07 03:54:371773 }
1774}
1775
Andrew Grievefebea022020-08-07 17:17:531776# Write debug logs to gn_logs.txt.
1777_lines = [
1778 "Generated during 'gn gen' by //BUILD.gn.",
1779 "",
1780 ] + build_gn_logs
1781
1782# GN evaluates each .gn file once per toolchain, so restricting to default
1783# toolchain will ensure write_file() is called only once.
1784assert(current_toolchain == default_toolchain)
1785
1786write_file("$root_build_dir/gn_logs.txt", _lines)