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