Roll src/third_party/WebKit 57aef96:a1089e6 (svn 201978:201979)
[chromium-blink-merge.git] / BUILD.gn
blobb8d4567b89eb30a61d93cff4cb5dc7ed18177a1e
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
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.
11 import("//build/config/crypto.gni")
12 import("//build/config/features.gni")
13 import("//build/config/ui.gni")
14 import("//build/module_args/v8.gni")
15 import("//media/media_options.gni")
17 if (is_android) {
18   import("//build/config/android/config.gni")
21 declare_args() {
22   # A list of extra dependencies to add to the root target. This allows a
23   # checkout to add additional targets without explicitly changing any checked-
24   # in files.
25   root_extra_deps = []
28 # This file defines the following four main targets:
30 # "both_gn_and_gyp" should list every root target (target that nothing else
31 # depends on) built by GN that is also built in the GYP build.
33 # "gn_all" should (transitively) cause everything to be built; if you run
34 # 'ninja gn_all' and then 'ninja all', the second build should do no work.
36 # "gn_only" should list every root target that is *not* intended to be built
37 # in a GYP build. Because GN has different rules for deciding what an 'all'
38 # build is, this may end up including targets that are actually defined in a
39 # GYP build but not dependencies of GYP's "all" (and so not actually built).
41 # "gn_visibility": targets that are normally not visible to top-level targets,
42 # but are built anyway by "all". Since we don't want any such targets, we
43 # have this placeholder to make sure hidden targets that aren't otherwise
44 # depended on yet are accounted for.
46 # TODO(GYP): crbug.com/481694. Make sure that the above is true and there are
47 # scripts run on the bots that enforce this. Once the GYP migration is over,
48 # we can collapse all of these targets as desired.
50 group("gn_all") {
51   testonly = true
53   deps = [
54     ":both_gn_and_gyp",
55     ":gn_only",
56     ":gn_visibility",
57   ]
60 # The "both_gn_and_gyp" target should reflect every target that is built
61 # in both the GN and GYP builds, and ideally it should match the
62 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line.
64 # TODO(GYP): Add build steps that check and enforce this on the bots.
65 group("both_gn_and_gyp") {
66   testonly = true
67   deps = [
68     "//base:base_unittests",
69     "//chrome/installer",
70     "//net:net_unittests",
71     "//skia:skia_unittests",
72     "//sql:sql_unittests",
73     "//sync:sync_unit_tests",
74     "//ui/base:ui_base_unittests",
75     "//ui/gfx:gfx_unittests",
76     "//url:url_unittests",
77   ]
79   if (!is_ios) {
80     # TODO(GYP): Figure out which of these should actually build on iOS,
81     # and whether there should be other targets that are iOS-only and missing.
82     deps += [
83       "//cc:cc_unittests",
84       "//chrome",
85       "//chrome/test:browser_tests",
86       "//chrome/test:interactive_ui_tests",
87       "//chrome/test:sync_integration_tests",
88       "//chrome/test:unit_tests",
89       "//chrome/test/chromedriver:chromedriver_unittests",
90       "//components:components_browsertests",
91       "//components:components_unittests",
92       "//content/shell:content_shell",
93       "//content/test:content_browsertests",
94       "//content/test:content_perftests",
95       "//content/test:content_unittests",
96       "//crypto:crypto_unittests",
97       "//device:device_unittests",
98       "//extensions:extensions_browsertests",
99       "//extensions:extensions_unittests",
100       "//google_apis/gcm:gcm_unit_tests",
101       "//gpu:gpu_unittests",
102       "//gpu/gles2_conform_support:gles2_conform_test",
103       "//ipc:ipc_tests",
104       "//ipc/mojo:ipc_mojo_unittests",
105       "//jingle:jingle_unittests",
106       "//media:media_unittests",
107       "//media/cast:cast_unittests",
108       "//media/midi:midi_unittests",
109       "//mojo",
110       "//mojo/application/public/cpp",
111       "//mojo/common:mojo_common_unittests",
112       "//net:hpack_example_generator",
113       "//net:hpack_fuzz_mutator",
114       "//net:hpack_fuzz_wrapper",
115       "//net:net_perftests",
116       "//ppapi:ppapi_unittests",
117       "//ppapi/examples/2d",
118       "//ppapi/examples/audio",
119       "//ppapi/examples/audio_input",
120       "//ppapi/examples/compositor",
121       "//ppapi/examples/crxfs",
122       "//ppapi/examples/enumerate_devices",
123       "//ppapi/examples/file_chooser",
124       "//ppapi/examples/flash_topmost",
125       "//ppapi/examples/font",
126       "//ppapi/examples/gamepad",
127       "//ppapi/examples/gles2",
128       "//ppapi/examples/gles2_spinning_cube",
129       "//ppapi/examples/ime",
130       "//ppapi/examples/input",
131       "//ppapi/examples/media_stream_audio",
132       "//ppapi/examples/media_stream_video",
133       "//ppapi/examples/mouse_cursor",
134       "//ppapi/examples/mouse_lock",
135       "//ppapi/examples/printing",
136       "//ppapi/examples/scaling",
137       "//ppapi/examples/scripting",
138       "//ppapi/examples/stub",
139       "//ppapi/examples/threading",
140       "//ppapi/examples/url_loader",
141       "//ppapi/examples/video_capture",
142       "//ppapi/examples/video_decode",
143       "//ppapi/examples/video_effects",
144       "//ppapi/examples/video_encode",
145       "//printing:printing_unittests",
146       "//third_party/WebKit/Source/platform:heap_unittests",
147       "//third_party/WebKit/Source/platform:platform_unittests",
148       "//third_party/WebKit/Source/web:webkit_unit_tests",
149       "//third_party/WebKit/Source/wtf:wtf_unittests",
150       "//third_party/cacheinvalidation:cacheinvalidation_unittests",
151       "//third_party/codesighs",
152       "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
153       "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
154       "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
155       "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
156       "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
157       "//third_party/pdfium/samples:pdfium_test",
158       "//third_party/smhasher:pmurhash",
159       "//tools/imagediff($host_toolchain)",
160       "//tools/gn",
161       "//tools/gn:gn_unittests",
162       "//tools/gn:generate_test_gn_data",
163       "//tools/telemetry:bitmaptools($host_toolchain)",
164       "//ui/accessibility:accessibility_unittests",
165       "//ui/app_list:app_list_unittests",
166       "//ui/display:display_unittests",
167       "//ui/events:events_unittests",
168       "//ui/gl:gl_unittests",
169       "//ui/touch_selection:ui_touch_selection_unittests",
170     ]
171   }
173   deps += root_extra_deps
175   if (enable_extensions && !is_mac) {
176     # TODO(GYP): Get this working on the mac?
177     deps += [ "//extensions/shell:app_shell_unittests" ]
178   }
180   if (enable_media_router) {
181     deps += [ "//chrome/browser/media/router" ]
182   }
184   if (enable_remoting) {
185     deps += [ "//remoting:remoting_all" ]
186   }
188   if (toolkit_views) {
189     deps += [ "//ui/views:views_unittests" ]
190   }
192   if (use_aura) {
193     deps += [ "//ui/wm:wm_unittests" ]
194   }
196   if (use_ozone) {
197     deps += [ "//ui/ozone" ]
198   }
200   if (use_x11) {
201     deps += [ "//tools/xdisplaycheck" ]
202   }
204   if (enable_configuration_policy) {
205     deps += [ "//components/policy:policy_templates" ]
206   }
208   if (v8_use_external_startup_data) {
209     deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
210   }
212   if (is_win) {
213     deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
214   }
216   if (is_android) {
217     deps += [
218       "//base/android/linker:chromium_android_linker",
219       "//blimp/client:blimp_apk",
220       "//build/android/gyp/test:hello_world",
221       "//build/android/rezip",
222       "//chrome/android:chrome_public_apk",
223       "//chrome/android:chrome_public_test_apk",
224       "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
225       "//third_party/errorprone:chromium_errorprone",
226       "//tools/imagediff($host_toolchain)",
228       # TODO(GYP): Remove these when the components_unittests work.
229       "//components/history/core/test:test",
230       "//components/policy:policy_component_test_support",
231       "//components/policy:test_support",
232       "//components/rappor:test_support",
233       "//components/signin/core/browser:test_support",
234       "//components/sync_driver:test_support",
235       "//components/user_manager",
236       "//components/wallpaper",
237       "//content/shell/android:content_shell_apk",
239       # TODO(GYP): Are these needed, or will they be pulled in automatically?
240       "//third_party/android_tools:android_gcm_java",
241       "//third_party/android_tools:uiautomator_java",
242       "//third_party/android_tools:android_support_v13_java",
243       "//third_party/android_tools:android_support_v7_appcompat_java",
244       "//third_party/android_tools:android_support_v7_mediarouter_java",
245       "//third_party/mesa",
246       "//third_party/mockito:mockito_java",
247       "//third_party/openmax_dl/dl",
248       "//ui/android:ui_java",
250       # TODO(GYP): Are these needed?
251       "//chrome/test:test_support_unit",
252       "//third_party/smhasher:murmurhash3",
253       "//ui/message_center:test_support",
254     ]
255     deps -= [
256       "//chrome",  # TODO(GYP) ??
257       "//chrome/test:browser_tests",  # TODO(GYP) ??
258       "//chrome/test:interactive_ui_tests",  # TODO(GYP) ??
259       "//chrome/test:sync_integration_tests",  # TODO(GYP) ??
260       "//chrome/test:unit_tests",  # TODO(GYP)
262       # Chromedriver shouldn't be compiled on Android.
263       "//chrome/test/chromedriver:chromedriver_unittests",
264       "//extensions:extensions_browsertests",
265       "//extensions:extensions_unittests",
266       "//google_apis/gcm:gcm_unit_tests",
267       "//ipc:ipc_tests",  # TODO(GYP) ??
268       "//jingle:jingle_unittests",  # TODO(GYP) ??
269       "//net:hpack_example_generator",
270       "//net:hpack_fuzz_mutator",
271       "//net:hpack_fuzz_wrapper",
272       "//net:net_perftests",
273       "//ppapi/examples/2d",
274       "//ppapi/examples/audio",
275       "//ppapi/examples/audio_input",
276       "//ppapi/examples/compositor",
277       "//ppapi/examples/crxfs",
278       "//ppapi/examples/enumerate_devices",
279       "//ppapi/examples/file_chooser",
280       "//ppapi/examples/flash_topmost",
281       "//ppapi/examples/font",
282       "//ppapi/examples/gamepad",
283       "//ppapi/examples/gles2",
284       "//ppapi/examples/gles2_spinning_cube",
285       "//ppapi/examples/ime",
286       "//ppapi/examples/input",
287       "//ppapi/examples/media_stream_audio",
288       "//ppapi/examples/media_stream_video",
289       "//ppapi/examples/mouse_cursor",
290       "//ppapi/examples/mouse_lock",
291       "//ppapi/examples/printing",
292       "//ppapi/examples/scaling",
293       "//ppapi/examples/scripting",
294       "//ppapi/examples/stub",
295       "//ppapi/examples/threading",
296       "//ppapi/examples/url_loader",
297       "//ppapi/examples/video_capture",
298       "//ppapi/examples/video_decode",
299       "//ppapi/examples/video_effects",
300       "//ppapi/examples/video_encode",
301       "//third_party/pdfium/samples:pdfium_test",
302       "//tools/gn",
303       "//tools/gn:generate_test_gn_data",
304       "//tools/gn:gn_unittests",
305       "//ui/app_list:app_list_unittests",
306       "//url:url_unittests",
307     ]
309     if (has_chrome_android_internal) {
310       deps += [ "//clank" ]  # TODO(GYP) ??
311     }
312   }
314   if (is_linux) {  # TODO(GYP): || is_android || is_bsd?
315     deps += [
316       "//breakpad:core-2-minidump",
317       "//breakpad:minidump-2-core",
318     ]
319   }
321   if (is_chromeos) {
322     deps += [
323       "//chromeos:chromeos_unittests",
324       "//ui/chromeos:ui_chromeos_unittests",
325     ]
326   }
328   if (is_chromeos || is_mac || is_win) {
329     deps += [
330       "//rlz:rlz_id",
331       "//rlz:rlz_lib",
332       "//rlz:rlz_unittests",
333     ]
334   }
336   if (is_linux) {
337     # The following are definitely linux-only.
338     deps += [
339       "//breakpad:breakpad_unittests",
340       "//breakpad:generate_test_dump",
341       "//dbus:dbus_test_server",
342       "//dbus:dbus_unittests",
343       "//net:disk_cache_memory_test",
344       "//net:flip_in_mem_edsm_server",
345       "//net:flip_in_mem_edsm_server_unittests",
346       "//net:quic_client",
347       "//net:quic_server",
348       "//sandbox/linux:chrome_sandbox",
349       "//sandbox/linux:sandbox_linux_unittests",
350       "//sandbox/linux:sandbox_linux_jni_unittests",
351     ]
353     if (is_chromeos || use_ash) {
354       deps += [ "//components/session_manager/core" ]
355     }
356   }
358   if (is_ios || is_win || (is_linux && !is_chromeos)) {
359     deps += [
360       "//base:base_i18n_perftests",
361       "//base:base_perftests",
362       "//google_apis:google_apis_unittests",
363     ]
364   }
366   if (is_win || (is_linux && !is_chromeos)) {
367     # TODO(GYP): Figure out which of these should (and can) build
368     # for android/chromeos/mac/ios.
369     deps += [
370       "//base:check_example",
371       "//base:build_utf8_validator_tables",
372       "//cc:cc_perftests",
373       "//cc/blink:cc_blink_unittests",
374       "//chrome/test:load_library_perf_tests",
375       "//chrome/test:performance_browser_tests",
376       "//chrome/test:sync_performance_tests",
377       "//chrome/test/chromedriver:chromedriver",
378       "//chrome/test/chromedriver:chromedriver_tests",
379       "//chrome/tools/profile_reset:jtl_compiler",
380       "//components:components_perftests",
381       "//content/test:content_gl_tests",
382       "//content/test:content_gl_benchmark",
383       "//courgette:courgette",
384       "//courgette:courgette_fuzz",
385       "//courgette:courgette_minimal_tool",
386       "//courgette:courgette_unittests",
387       "//device:device_unittests",
388       "//gin:gin_shell",
389       "//gin:gin_unittests",
390       "//google_apis/gcm:mcs_probe",
391       "//gpu:gpu_perftests",
392       "//gpu:gl_tests",
393       "//ipc:ipc_perftests",
394       "//media:media_perftests",
395       "//media/cast:generate_barcode_video",
396       "//media/cast:generate_timecode_audio",
397       "//net:crash_cache",
398       "//net:crl_set_dump",
399       "//net:dns_fuzz_stub",
400       "//net:dump_cache",
401       "//net:gdig",
402       "//net:get_server_time",
403       "//net:net_watcher",  # TODO(GYP): This should be conditional on use_v8_in_net
404       "//net:run_testserver",
405       "//net:stress_cache",
406       "//net:tld_cleanup",
407       "//ppapi:pepper_hash_for_uma",
408       "//ppapi:ppapi_perftests",
409       "//sync:run_sync_testserver",
410       "//third_party/angle/src/tests:angle_end2end_tests",
411       "//third_party/angle/src/tests:angle_unittests",
412       "//third_party/codesighs:maptsvdifftool",
413       "//third_party/leveldatabase:env_chromium_unittests",
414       "//third_party/libaddressinput:libaddressinput_unittests",
415       "//third_party/libphonenumber:libphonenumber_unittests",
416       "//ui/compositor:compositor_unittests",
417     ]
419     if (enable_extensions) {
420       deps += [ "//extensions/shell:app_shell" ]
421     }
423     if (enable_nacl) {
424       deps += [ "//components/nacl:nacl_loader_unittests" ]
425     }
427     if (media_use_ffmpeg) {
428       deps += [ "//media:ffmpeg_regression_tests" ]
429     }
431     if (use_ash) {
432       deps += [
433         "//ash:ash_shell",
434         "//ash:ash_unittests",
435       ]
436     }
438     if (use_aura) {
439       deps += [
440         "//ui/aura:aura_unittests",
441         "//ui/aura:bench",
442         "//ui/aura:demo",
443       ]
444     }
445   }
447   if (is_linux && !is_chromeos) {
448     deps += [
449       # TODO(GYP): Figure out which of these should (and can) build
450       # under which other conditions.
451       "//build/sanitizers:copy_llvm_symbolizer",
452       "//chrome/test:chrome_app_unittests",
453       "//cloud_print:cloud_print_unittests",
454       "//components/network_hints/browser",
455       "//content/public/app:browser",
456       "//content/public/app:child",
458       # TODO(GYP): Remove this when the gles2 tests work
459       "//gpu/command_buffer/client:gles2_implementation_no_check",
461       "//gpu/khronos_glcts_support:khronos_glcts_test",  # TODO(GYP) crbug.com/471903 to make this complete.
462       "//media/cast:cast_benchmarks",
463       "//media/cast:tap_proxy",
464       "//mojo/application/public/cpp",
465       "//skia:filter_fuzz_stub",
466       "//skia:image_operations_bench",
467       "//sync/tools:sync_client",
468       "//sync/tools:sync_listen_notifications",
469       "//testing/gmock:gmock_main",
470       "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
471       "//tools/perf/clear_system_cache",
472       "//ui/keyboard:keyboard_unittests",
473       "//ui/message_center:message_center_unittests",
474       "//ui/snapshot:snapshot_unittests",
475       "//ui/views/examples:views_examples_with_content_exe",
477       "//third_party/codesighs:nm2tsv",
478       "//third_party/sqlite:sqlite_shell",
479     ]
481     if (current_toolchain == host_toolchain) {
482       # Do not build the breakpad utilities in cross-compiles.
483       deps += [
484         "//breakpad:dump_syms",
485         "//breakpad:microdump_stackwalk",
486         "//breakpad:minidump_dump",
487         "//breakpad:minidump_stackwalk",
488       ]
489     }
491     if (!is_debug && !is_component_build) {
492       deps += [ "//chrome/tools/service_discovery_sniffer" ]
493     }
495     if (toolkit_views) {
496       deps += [ "//ui/app_list:app_list_demo" ]
497     }
499     if (use_x11) {
500       if (target_cpu != "arm") {
501         deps += [ "//gpu/tools/compositor_model_bench" ]
502       }
503     }
504   }
506   if (is_mac) {
507     deps += [
508       "//breakpad:crash_inspector",
509       "//breakpad:dump_syms",
510       "//third_party/apple_sample_code",
511       "//third_party/molokocacao",
512     ]
514     # TODO(GYP): Remove these when the targets below work and these
515     # are pulled in automatically.
516     deps += [
517       "//cc/blink",
518       "//components/ui/zoom",
519       "//content",
520       "//content/test:test_support",
521       "//device/battery",
522       "//device/bluetooth",
523       "//device/nfc",
524       "//device/usb",
525       "//device/vibration",
526       "//media/blink",
527       "//pdf",
528       "//storage/browser",
529       "//third_party/brotli",
530       "//third_party/flac",
531       "//third_party/hunspell",
532       "//third_party/iccjpeg",
533       "//third_party/libphonenumber",
534       "//third_party/ots",
535       "//third_party/qcms",
536       "//third_party/smhasher:murmurhash3",
537       "//third_party/webrtc/system_wrappers",
538       "//ui/app_list:app_list_unittests",
539       "//ui/gfx:gfx_unittests",
540       "//ui/native_theme",
541       "//ui/snapshot",
542       "//ui/surface",
543     ]
545     # TODO(dpranke): These are as-yet untriaged but need at least the above.
546     deps -= [
547       "//chrome",  # TODO(GYP)
548       "//chrome/test:browser_tests",  # TODO(GYP)
549       "//chrome/test:interactive_ui_tests",  # TODO(GYP)
550       "//chrome/test:sync_integration_tests",  # TODO(GYP)
551       "//chrome/test:unit_tests",  # TODO(GYP)
552       "//components:components_browsertests",  # TODO(GYP)
553       "//components:components_unittests",  # TODO(GYP)
554       "//content/test:content_browsertests",  # TODO(GYP)
555       "//content/test:content_perftests",  # TODO(GYP)
556       "//device:device_unittests",  # TODO(GYP)
557       "//extensions:extensions_browsertests",  # TODO(GYP)
558       "//extensions:extensions_unittests",  # TODO(GYP)
559       "//mojo",  # TODO(GYP)
560       "//mojo/application/public/cpp",  # TODO(GYP)
562       # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
563       "//third_party/WebKit/Source/platform:heap_unittests",
564       "//third_party/WebKit/Source/platform:platform_unittests",
565       "//third_party/WebKit/Source/web:webkit_unit_tests",
566     ]
567   }
569   if (is_win) {
570     deps += [
571       "//base:pe_image_test",
572       "//chrome/installer/setup:setup_unittests",
573       "//chrome_elf:chrome_elf_unittests",
574       "//chrome_elf:dll_hash_main",
575       "//components/crash/tools:crash_service",
576       "//components/wifi:wifi_test",
577       "//net:quic_client",
578       "//net:quic_server",
579       "//sandbox/win:pocdll",
580       "//sandbox/win:sandbox_poc",
581       "//sandbox/win:sbox_integration_tests",
582       "//sandbox/win:sbox_unittests",
583       "//sandbox/win:sbox_validation_tests",
584       "//testing/gtest:gtest_main",
585       "//third_party/codesighs:msmap2tsv",
586       "//third_party/pdfium/samples:pdfium_diff",
587       "//ui/metro_viewer",
588     ]
589     deps -= [
590       "//crypto:crypto_unittests",  # TODO(GYP)
591       "//net:net_unittests",  # TODO(GYP)
592     ]
593   } else if (!is_android && !is_ios) {
594     deps += [ "//breakpad:symupload" ]
595   }
597   if (!is_ios) {
598     deps += [ "//gpu/skia_runner:skia_runner" ]
599   }
602 group("gn_only") {
603   testonly = true
605   deps = []
607   if (!is_ios) {
608     deps += [ "//mandoline:all" ]
609   }
611   if (!is_android && !is_ios) {
612     deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
613   }
615   if (is_linux && !is_chromeos) {
616     # TODO(GYP): Figure out if any of these should be in gn_all
617     # and figure out how cross-platform they are
618     deps += [
619       ":gn_mojo_targets",
620       "//chrome/browser/resources:extension_resource_demo",
621       "//chrome/installer/util:strings",
622       "//chrome:main_dll",
623       "//chrome/test:load_library_perf_tests",
624       "//chrome/tools/convert_dict",
625       "//components/constrained_window:unit_tests",
626       "//components/enhanced_bookmarks:test_support",
627       "//components/metrics:serialization",
628       "//components/password_manager/content/renderer:browser_tests",
629       "//components/rappor:unit_tests",
630       "//components/sessions:unit_tests",
631       "//media/blink:media_blink_unittests",
632       "//media/cast:udp_proxy",
633       "//native_client/src/trusted/platform_qualify:vcpuid",
634       "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
635       "//storage/browser:dump_file_system",
636       "//third_party/angle:libANGLE",
637       "//third_party/angle:libEGL",
638       "//third_party/angle:libGLESv2",
639       "//third_party/cld_2:cld_2_dynamic_data_tool",
640       "//third_party/leveldatabase:leveldb_arena_test",
641       "//third_party/leveldatabase:leveldb_bloom_test",
642       "//third_party/leveldatabase:leveldb_db_test",
643       "//third_party/leveldatabase:leveldb_crc32c_test",
644       "//third_party/leveldatabase:leveldb_cache_test",
645       "//third_party/leveldatabase:leveldb_env_test",
646       "//third_party/leveldatabase:leveldb_write_batch_test",
647       "//third_party/leveldatabase:leveldb_filter_block_test",
648       "//third_party/leveldatabase:leveldb_version_edit_test",
649       "//third_party/leveldatabase:leveldb_db_bench",
650       "//third_party/leveldatabase:leveldb_log_test",
651       "//third_party/leveldatabase:leveldb_corruption_test",
652       "//third_party/leveldatabase:leveldb_table_test",
653       "//third_party/leveldatabase:leveldb_skiplist_test",
654       "//third_party/leveldatabase:leveldb_filename_test",
655       "//third_party/leveldatabase:leveldb_dbformat_test",
656       "//third_party/pdfium/third_party:fx_freetype",
657       "//third_party/libjpeg_turbo:simd",
658       "//third_party/libsrtp:replay_driver",
659       "//third_party/libsrtp:roc_driver",
660       "//third_party/libsrtp:rtpw",
661       "//third_party/libsrtp:rdbx_driver",
662       "//third_party/libsrtp:srtp_driver",
663       "//third_party/libsrtp:srtp_driver",
664       "//third_party/libsrtp:srtp_test_kernel_driver",
665       "//third_party/libsrtp:srtp_test_cipher_driver",
666       "//third_party/libsrtp:srtp_test_datatypes_driver",
667       "//third_party/libsrtp:srtp_test_aes_calc",
668       "//third_party/libsrtp:srtp_test_env",
669       "//third_party/libsrtp:srtp_test_rand_gen",
670       "//third_party/libsrtp:srtp_test_sha1_driver",
671       "//third_party/libsrtp:srtp_test_stat_driver",
672       "//third_party/opus:opus_compare",
673       "//third_party/opus:opus_demo",
674       "//third_party/opus:test_opus_decode",
675       "//third_party/opus:test_opus_encode",
676       "//third_party/opus:test_opus_api",
677       "//third_party/opus:test_opus_padding",
678       "//third_party/webrtc/system_wrappers:field_trial_default",
679       "//third_party/webrtc/system_wrappers:metrics_default",
680       "//ui/display/types",
681       "//ui/shell_dialogs:shell_dialogs_unittests",
682       "//ui/views/examples:views_examples_exe",
683     ]
685     if (target_cpu == "x86" || target_cpu == "x64") {
686       deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
687     }
688     if (enable_nacl) {
689       deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
690     }
691     if (use_ozone) {
692       deps += [ "//ui/ozone/demo" ]
693     }
694     if (is_android) {
695       deps += [ "//build/android/gyp/test:hello_world" ]
696     }
698     if (is_linux && current_toolchain == host_toolchain) {
699       deps += [ "//v8:d8" ]
700     }
701   }
703   if (is_mac) {
704     deps -= [ "//mandoline:all" ]  # TODO(GYP)
705   }
708 group("gn_mojo_targets") {
709   testonly = true
710   if (is_linux && !is_chromeos) {
711     # TODO(GYP): Figure out if any of these should be in gn_all
712     # and figure out how cross-platform they are
713     deps = [
714       "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
715       "//content/public/common:mojo_bindings_python",
716       "//content/common:mojo_bindings_python",
717       "//content/test:web_ui_test_mojo_bindings_python",
718       "//device/battery:mojo_bindings_python",
719       "//device/vibration:mojo_bindings_python",
720       "//ipc/mojo:ipc_mojo_perftests",
721       "//ipc/mojo:client_channel_python",
722       "//media/mojo/interfaces:interfaces_python",
723       "//media/mojo/services:cdm_service",
724       "//media/mojo:tests",
725       "//mojo:tests",
726       "//net/interfaces:interfaces_python",
727       "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
728       "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
729       "//third_party/mojo/src/mojo/public/python:packaged_application",
730       "//third_party/mojo/src/mojo/public/python:packaged_bindings",
731       "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
732     ]
733   }
736 group("gn_visibility") {
737   deps = [
738     "//build/config/sanitizers:options_sources",
740     # "//third_party/pdfium:pdfium_embeddertests",  # TODO(GYP): visibility?
741     # "//third_party/pdfium:pdfium_unittests",  # TODO(GYP): visibility?
743     "//ui/resources:repack_ui_test_mac_locale_pack",
745     "//v8:v8_snapshot",
746     "//v8:postmortem-metadata",
747   ]
750 if (!is_ios) {
751   # This group includes all of the targets needed to build and test Blink,
752   # including running the layout tests (see below).
753   group("blink_tests") {
754     testonly = true
756     deps = [
757       "//third_party/WebKit/public:all_blink",
758     ]
760     # NOTE: The following deps are needed to run the layout tests
761     # (run-webkit-tests) but there is no GN target for the layout tests,
762     # so we need to specify the dependencies here instead.
763     if (is_android) {
764       deps += [
765         "//breakpad:dump_syms($host_toolchain)",
766         "//breakpad:minidump_stackwalk($host_toolchain)",
767         "//content/shell/android:content_shell_apk",
768         "//tools/imagediff($host_toolchain)",
769       ]
770     } else {
771       deps += [
772         "//content/shell:content_shell",
773         "//tools/imagediff",
774       ]
775     }
777     if (is_win) {
778       deps += [
779         "//components/test_runner:layout_test_helper",
780         "//content/shell:crash_service",
781       ]
782     }
784     if (!is_win && !is_android) {
785       deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
786     }
788     if (is_mac) {
789       deps += [
790         "//breakpad:dump_syms($host_toolchain)",
791         "//components/test_runner:layout_test_helper",
792       ]
793     }
795     if (is_linux) {
796       deps += [ "//breakpad:dump_syms($host_toolchain)" ]
797     }
798   }
801 # Add a dummy target for compatibility w/ GYP
802 group("chromium_swarm_tests") {
805 if (is_linux) {
806   # This group corresponds to the list of tests run on the waterfall for
807   # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
808   # here to help track GYP -> GN conversion progress.
809   group("linux_default_tests") {
810     testonly = true
811     deps = [
812       "//base:base_unittests",  # PASSES (*) 2/25/2015
813       "//cc:cc_unittests",  # PASSES 2/25/2015
814       "//chrome/test:browser_tests",
815       "//chrome/test:interactive_ui_tests",
816       "//chrome/test:sync_integration_tests",  # Crashes for brettw in GN and GYP.
817       "//chrome/test:unit_tests",  # PASSES 2/25/2015
818       "//chrome/test/chromedriver:chromedriver_unittests",  # PASSES 2/25/2015
819       "//components:components_browsertests",  # PASSES 4/17/2015
820       "//components:components_unittests",  # PASSES 2/27/2015
821       "//content/test:content_browsertests",
822       "//content/test:content_unittests",  # PASSES 2/25/2015
823       "//crypto:crypto_unittests",  # PASSES 2/25/2015
824       "//dbus:dbus_unittests",  # PASSES 2/25/2015
825       "//device:device_unittests",  # PASSES 3/07/2015
826       "//extensions:extensions_browsertests",  # PASSES 2/25/2015
827       "//extensions:extensions_unittests",  # PASSES 2/25/2015
828       "//extensions/shell:app_shell_unittests",  # PASSES 2/25/2015
829       "//google_apis/gcm:gcm_unit_tests",  # PASSES 2/25/2015
830       "//google_apis:google_apis_unittests",  # PASSES 2/25/2015
831       "//gpu:gpu_unittests",  # PASSES 2/25/2015
832       "//ipc:ipc_tests",  # PASSES 2/25/2015
833       "//ipc/mojo:ipc_mojo_unittests",  # PASSES 2/25/2015
834       "//jingle:jingle_unittests",  # PASSES 2/25/2015
835       "//media:media_unittests",  # PASSES 3/3/2015
836       "//media/cast:cast_unittests",  # PASSES 2/25/2015
837       "//media/midi:midi_unittests",  # PASSES 4/10/2015
838       "//mojo/common:mojo_common_unittests",  # PASSES 2/25/2015
839       "//net:net_unittests",  # PASSES 2/25/2015
840       "//ppapi:ppapi_unittests",  # PASSES 2/26/2015
841       "//printing:printing_unittests",  # PASSES 2/25/2015
842       "//remoting:remoting_unittests",  # PASSES 4/17/2015
843       "//sandbox/linux:sandbox_linux_unittests",  # PASSES 2/25/2015
844       "//skia:skia_unittests",  # PASSES 2/25/2015
845       "//sql:sql_unittests",  # PASSES 2/25/2015
846       "//sync:sync_unit_tests",  # PASSES 2/25/2015
847       "//third_party/cacheinvalidation:cacheinvalidation_unittests",  # PASSES 2/25/2015
848       "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",  # PASSES 2/25/2015
849       "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",  # PASSES 2/25/2015
850       "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",  # PASSES 2/25/2015
851       "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",  # PASSES 2/25/2015
852       "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
853       "//ui/accessibility:accessibility_unittests",  # PASSES 2/25/2015
854       "//ui/app_list:app_list_unittests",  # PASSES 2/25/2015
855       "//ui/aura:aura_unittests",  # PASSES 2/25/2015
856       "//ui/base:ui_base_unittests",  # PASSES 4/17/2015
857       "//ui/compositor:compositor_unittests",  # PASSES 2/25/2015
858       "//ui/display:display_unittests",  # PASSES 2/25/2015
859       "//ui/events:events_unittests",  # PASSES 2/25/2015
860       "//ui/gfx:gfx_unittests",  # PASSES 2/25/2015
861       "//ui/gl:gl_unittests",
862       "//ui/touch_selection:ui_touch_selection_unittests",  # PASSES 2/25/2015
863       "//ui/views:views_unittests",  # PASSES (*) 2/25/2015
864       "//ui/wm:wm_unittests",  # PASSES 2/25/2015
865       "//url:url_unittests",  # PASSES 2/25/2015
867       # Note:
868       # (*) Fails but failures match GYP build at time of testing.
869     ]
871     if (enable_nacl) {
872       deps += [ "//components/nacl:nacl_loader_unittests" ]  # PASSES 3/28/2015
873     }
874   }
875 } else if (is_win) {
876   group("windows_default_tests") {
877     testonly = true
878     deps = [
879       "//ash:ash_unittests",  # FAILS 4/20/2015
880       "//base:base_unittests",  # PASSES 4/20/2015
881       "//cc:cc_unittests",  # PASSES 4/17/2015
882       "//chrome_elf:chrome_elf_unittests",  # FAILS 4/20/2015
883       "//chrome/installer/util:installer_util_unittests",
884       "//chrome/installer/setup:setup_unittests",
885       "//chrome/test:browser_tests",
886       "//chrome/test:interactive_ui_tests",
887       "//chrome/test:sync_integration_tests",  # Note: need to turn off incremental linking for debug.
888       "//chrome/test:unit_tests",
889       "//chrome/test/chromedriver:chromedriver_unittests",  # PASSES 4/20/2015
890       "//components:components_browsertests",  # PASSES 4/24/2015
891       "//components:components_unittests",  # PASSES 4/17/2015
892       "//courgette:courgette_unittests",  # PASSES 4/20/2015
893       "//content/test:content_browsertests",
894       "//content/test:content_unittests",  # PASSES 4/17/2015
895       "//crypto:crypto_unittests",  # PASSES 4/17/2015
896       "//device:device_unittests",  # PASSES 4/17/2015
897       "//extensions:extensions_browsertests",  # PASSES 4/17/2015
898       "//extensions:extensions_unittests",  # PASSES 4/17/2015
899       "//extensions/shell:app_shell_unittests",  # Doesn't compile in 64-bit
900       "//google_apis/gcm:gcm_unit_tests",  # PASSES 4/17/2015
901       "//google_apis:google_apis_unittests",  # PASSES 4/17/2015
902       "//gpu:gpu_unittests",  # PASSES 4/17/2015
903       "//ipc:ipc_tests",  # PASSES 4/17/2015
904       "//ipc/mojo:ipc_mojo_unittests",  # PASSES 4/17/2015
905       "//jingle:jingle_unittests",  # PASSES 4/17/2015
906       "//media/cast:cast_unittests",  # PASSES 4/17/2015
907       "//media:media_unittests",  # PASSES 4/17/2015
908       "//mojo/common:mojo_common_unittests",  # PASSES 4/17/2015
909       "//net:net_unittests",  # PASSES 4/17/2015
910       "//ppapi:ppapi_unittests",  # PASSES 4/17/2015
911       "//printing:printing_unittests",  # PASSES 4/17/2015
912       "//remoting:remoting_unittests",  # PASSES 4/17/2015
913       "//sandbox/win:sbox_integration_tests",  # PASSES 4/20/2015
914       "//sandbox/win:sbox_unittests",  # PASSES 4/20/2015
915       "//sandbox/win:sbox_validation_tests",  # PASSES 4/20/2015
916       "//skia:skia_unittests",  # PASSES 4/17/2015
917       "//sql:sql_unittests",  # PASSES 4/17/2015
918       "//sync:sync_unit_tests",  # PASSES 4/20/2015
919       "//third_party/cacheinvalidation:cacheinvalidation_unittests",  # PASSES 4/20/2015
920       "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",  # Seems to hang?
921       "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",  # FAILS
922       "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",  # PASSES 4/20/2015
923       "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",  # PASSES 4/20/2015
924       "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",  # PASSES 4/20/2015
925       "//ui/accessibility:accessibility_unittests",  # PASSES 4/20/2015
926       "//ui/app_list:app_list_unittests",  # PASSES 4/20/2015
927       "//ui/aura:aura_unittests",  # PASSES 4/17/2015
928       "//ui/base:ui_base_unittests",  # PASSES 4/20/2015
929       "//ui/compositor:compositor_unittests",  # PASSES 4/20/2015
930       "//ui/display:display_unittests",  # PASSES 4/20/2015
931       "//ui/events:events_unittests",  # PASSES 4/20/2015
932       "//ui/gfx:gfx_unittests",  # PASSES (with assertion failure?) 4/20/2015
933       "//ui/gl:gl_unittests",
934       "//ui/message_center:message_center_unittests",  # PASSES 4/20/2015
935       "//ui/touch_selection:ui_touch_selection_unittests",  # PASSES 4/20/2015
936       "//ui/views:views_unittests",  # TooltipControllerTest failures
937       "//ui/wm:wm_unittests",  # PASSES 4/21/2015
938       "//url:url_unittests",  # PASSES 4/17/2015
940       # TODO(GYP) nacl_integration
941       # TODO(GYP) telemetry_perf_unittests
942       # TODO(GYP) telemetry_unittests
943     ]
944   }