Clean up URLFetcher unit tests, part 8.
[chromium-blink-merge.git] / BUILD.gn
blobd1b69f1517ebe20621e062828785e0118b056768
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",
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/public:blink_tests",
136     "//third_party/cacheinvalidation:cacheinvalidation_unittests",
137     "//third_party/codesighs",
138     "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
139     "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
140     "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
141     "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
142     "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
143     "//third_party/pdfium/samples:pdfium_test",
144     "//third_party/smhasher:pmurhash",
145     "//tools/imagediff($host_toolchain)",
146     "//tools/gn",
147     "//tools/gn:gn_unittests",
148     "//tools/gn:generate_test_gn_data",
149     "//tools/telemetry:bitmaptools($host_toolchain)",
150     "//ui/accessibility:accessibility_unittests",
151     "//ui/app_list:app_list_unittests",
152     "//ui/base:ui_base_unittests",
153     "//ui/display:display_unittests",
154     "//ui/events:events_unittests",
155     "//ui/gfx:gfx_unittests",
156     "//ui/touch_selection:ui_touch_selection_unittests",
157     "//url:url_unittests",
158   ]
160   deps += root_extra_deps
162   if (enable_extensions && !is_mac) {
163     # TODO(GYP): Get this working on the mac?
164     deps += [ "//extensions/shell:app_shell_unittests" ]
165   }
167   if (enable_media_router) {
168     deps += [
169       "//chrome/browser/media/router/",
170       "//chrome/browser/media/router:unit_tests",
171     ]
172   }
174   if (enable_remoting) {
175     deps += [ "//remoting:remoting_all" ]
176   }
178   if (toolkit_views) {
179     deps += [ "//ui/views:views_unittests" ]
180   }
182   if (use_aura) {
183     deps += [ "//ui/wm:wm_unittests" ]
184   }
186   if (use_ozone) {
187     deps += [ "//ui/ozone" ]
188   }
190   if (use_x11) {
191     deps += [ "//tools/xdisplaycheck" ]
192   }
194   if (enable_configuration_policy) {
195     deps += [ "//components/policy:policy_templates" ]
196   }
198   if (v8_use_external_startup_data) {
199     deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
200   }
202   if (is_android) {
203     deps += [
204       "//base/android/linker:chromium_android_linker",
205       "//build/android/gyp/test:hello_world",
206       "//build/android/rezip",
207       "//chrome/android:chrome_shell_apk",
208       "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
209       "//tools/imagediff($host_toolchain)",
211       # TODO(GYP): Remove these when the components_unittests work.
212       "//components/history/core/test:test",
213       "//components/policy:policy_component_test_support",
214       "//components/policy:test_support",
215       "//components/rappor:test_support",
216       "//components/signin/core/browser:test_support",
217       "//components/sync_driver:test_support",
218       "//components/user_manager",
219       "//components/wallpaper",
220       "//content/shell/android:content_shell_apk",
222       # TODO(GYP): Are these needed, or will they be pulled in automatically?
223       "//third_party/android_tools:android_gcm_java",
224       "//third_party/android_tools:uiautomator_java",
225       "//third_party/android_tools:android_support_v13_java",
226       "//third_party/android_tools:android_support_v7_appcompat_java",
227       "//third_party/android_tools:android_support_v7_mediarouter_java",
228       "//third_party/mesa",
229       "//third_party/mockito:mockito_java",
230       "//third_party/openmax_dl/dl",
231       "//third_party/speex",
232       "//ui/android:ui_java",
234       # TODO(GYP): Are these needed?
235       "//chrome/test:test_support_unit",
236       "//third_party/smhasher:murmurhash3",
237       "//ui/message_center:test_support",
238     ]
239     deps -= [
240       "//chrome",  # TODO(GYP) ??
241       "//chrome/test:browser_tests",  # TODO(GYP) ??
242       "//chrome/test:interactive_ui_tests",  # TODO(GYP) ??
243       "//chrome/test:sync_integration_tests",  # TODO(GYP) ??
244       "//chrome/test:unit_tests",  # TODO(GYP)
246       # Chromedriver shouldn't be compiled on Android.
247       "//chrome/test/chromedriver:chromedriver_unittests",
248       "//extensions:extensions_browsertests",
249       "//extensions:extensions_unittests",
250       "//google_apis/gcm:gcm_unit_tests",
251       "//ipc:ipc_tests",  # TODO(GYP) ??
252       "//jingle:jingle_unittests",  # TODO(GYP) ??
253       "//net:hpack_example_generator",
254       "//net:hpack_fuzz_mutator",
255       "//net:hpack_fuzz_wrapper",
256       "//net:net_perftests",
257       "//net:net_unittests",
258       "//ppapi/examples/2d",
259       "//ppapi/examples/audio",
260       "//ppapi/examples/audio_input",
261       "//ppapi/examples/compositor",
262       "//ppapi/examples/crxfs",
263       "//ppapi/examples/enumerate_devices",
264       "//ppapi/examples/file_chooser",
265       "//ppapi/examples/flash_topmost",
266       "//ppapi/examples/font",
267       "//ppapi/examples/gamepad",
268       "//ppapi/examples/gles2",
269       "//ppapi/examples/gles2_spinning_cube",
270       "//ppapi/examples/ime",
271       "//ppapi/examples/input",
272       "//ppapi/examples/media_stream_audio",
273       "//ppapi/examples/media_stream_video",
274       "//ppapi/examples/mouse_cursor",
275       "//ppapi/examples/mouse_lock",
276       "//ppapi/examples/printing",
277       "//ppapi/examples/scaling",
278       "//ppapi/examples/scripting",
279       "//ppapi/examples/stub",
280       "//ppapi/examples/threading",
281       "//ppapi/examples/url_loader",
282       "//ppapi/examples/video_capture",
283       "//ppapi/examples/video_decode",
284       "//ppapi/examples/video_effects",
285       "//ppapi/examples/video_encode",
286       "//third_party/pdfium/samples:pdfium_test",
287       "//tools/gn",
288       "//tools/gn:generate_test_gn_data",
289       "//tools/gn:gn_unittests",
290       "//ui/app_list:app_list_unittests",
291       "//url:url_unittests",
292     ]
294     if (has_chrome_android_internal) {
295       deps += [ "//clank" ]  # TODO(GYP) ??
296     }
297   }
299   if (is_linux) {  # TODO(GYP): || is_android || is_bsd?
300     deps += [
301       "//breakpad:core-2-minidump",
302       "//breakpad:minidump-2-core",
303     ]
304   }
306   if (is_chromeos) {
307     deps += [
308       "//chromeos:chromeos_unittests",
309       "//ui/chromeos:ui_chromeos_unittests",
310     ]
311   }
313   if (is_chromeos || is_mac || is_win) {
314     deps += [
315       "//rlz:rlz_id",
316       "//rlz:rlz_lib",
317       "//rlz:rlz_unittests",
318     ]
319   }
321   if (is_linux) {
322     # The following are definitely linux-only.
323     deps += [
324       "//breakpad:breakpad_unittests",
325       "//breakpad:generate_test_dump",
326       "//dbus:dbus_test_server",
327       "//dbus:dbus_unittests",
328       "//net:disk_cache_memory_test",
329       "//net:flip_in_mem_edsm_server",
330       "//net:flip_in_mem_edsm_server_unittests",
331       "//net:quic_client",
332       "//net:quic_server",
333       "//sandbox/linux:chrome_sandbox",
334       "//sandbox/linux:sandbox_linux_unittests",
335       "//sandbox/linux:sandbox_linux_jni_unittests",
336     ]
338     if (is_chromeos || use_ash) {
339       deps += [ "//components/session_manager/core" ]
340     }
341   }
343   if (is_win || (is_linux && !is_chromeos)) {
344     # TODO(GYP): Figure out which of these should (and can) build
345     # for android/chromeos/mac/ios.
346     deps += [
347       "//base:base_perftests",
348       "//base:base_i18n_perftests",
349       "//base:check_example",
350       "//base:build_utf8_validator_tables",
351       "//cc:cc_perftests",
352       "//cc/blink:cc_blink_unittests",
353       "//chrome/test:load_library_perf_tests",
354       "//chrome/test:performance_browser_tests",
355       "//chrome/test:sync_performance_tests",
356       "//chrome/test/chromedriver:chromedriver",
357       "//chrome/test/chromedriver:chromedriver_tests",
358       "//chrome/tools/profile_reset:jtl_compiler",
359       "//components:components_perftests",
360       "//content/test:content_gl_tests",
361       "//content/test:content_gl_benchmark",
362       "//courgette:courgette",
363       "//courgette:courgette_fuzz",
364       "//courgette:courgette_minimal_tool",
365       "//courgette:courgette_unittests",
366       "//device:device_unittests",
367       "//gin:gin_shell",
368       "//gin:gin_unittests",
369       "//google_apis:google_apis_unittests",
370       "//google_apis/gcm:mcs_probe",
371       "//gpu:angle_unittests",
372       "//gpu:gpu_perftests",
373       "//gpu:gl_tests",
374       "//ipc:ipc_perftests",
375       "//media:ffmpeg_regression_tests",  # TODO(GYP) this should be conditional on media_use_ffmpeg
376       "//media:media_perftests",
377       "//media/cast:generate_barcode_video",
378       "//media/cast:generate_timecode_audio",
379       "//net:crash_cache",
380       "//net:crl_set_dump",
381       "//net:dns_fuzz_stub",
382       "//net:dump_cache",
383       "//net:gdig",
384       "//net:get_server_time",
385       "//net:net_watcher",  # TODO(GYP): This should be conditional on use_v8_in_net
386       "//net:run_testserver",
387       "//net:stress_cache",
388       "//net:tld_cleanup",
389       "//ppapi:pepper_hash_for_uma",
390       "//ppapi:ppapi_perftests",
391       "//sync:run_sync_testserver",
392       "//sync:sync_endtoend_tests",
393       "//third_party/codesighs:maptsvdifftool",
394       "//third_party/leveldatabase:env_chromium_unittests",
395       "//third_party/libaddressinput:libaddressinput_unittests",
396       "//third_party/libphonenumber:libphonenumber_unittests",
397       "//ui/compositor:compositor_unittests",
398     ]
400     if (enable_extensions) {
401       deps += [ "//extensions/shell:app_shell" ]
402     }
404     if (enable_nacl) {
405       deps += [ "//components/nacl:nacl_loader_unittests" ]
406     }
408     if (enable_nacl && enable_remoting) {
409       deps += [ "//remoting:remoting_key_tester" ]
410     }
412     if (use_ash) {
413       deps += [
414         "//ash:ash_shell",
415         "//ash:ash_shell_unittests",
416         "//ash:ash_unittests",
417       ]
418     }
420     if (use_aura) {
421       deps += [
422         "//ui/aura:aura_unittests",
423         "//ui/aura:bench",
424         "//ui/aura:demo",
425       ]
426     }
427   }
429   if (is_linux && !is_chromeos) {
430     deps += [
431       # TODO(GYP): Figure out which of these should (and can) build
432       # under which other conditions.
433       "//build/sanitizers:copy_llvm_symbolizer",
434       "//chrome/test:chrome_app_unittests",
435       "//cloud_print:cloud_print_unittests",
436       "//components/network_hints/browser",
437       "//components/webui_generator",
438       "//content/public/app:browser",
439       "//content/public/app:child",
441       # TODO(GYP): Remove this when the gles2 tests work
442       "//gpu/command_buffer/client:gles2_implementation_no_check",
444       "//gpu/khronos_glcts_support:khronos_glcts_test",  # TODO(GYP) crbug.com/471903 to make this complete.
445       "//media/cast:cast_benchmarks",
446       "//media/cast:tap_proxy",
447       "//mojo/application",
448       "//skia:filter_fuzz_stub",
449       "//skia:image_operations_bench",
450       "//sync/tools:sync_client",
451       "//sync/tools:sync_listen_notifications",
452       "//testing/gmock:gmock_main",
453       "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
454       "//tools/perf/clear_system_cache",
455       "//ui/keyboard:keyboard_unittests",
456       "//ui/message_center:message_center_unittests",
457       "//ui/snapshot:snapshot_unittests",
458       "//ui/views/examples:views_examples_with_content_exe",
460       # "//v8:v8_snapshot",  # TODO(GYP): visibility?
461       # "//v8:postmortem-metadata",  # TODO(GYP): visibility?
463       "//third_party/codesighs:nm2tsv",
464       "//third_party/sqlite:sqlite_shell",
465     ]
467     if (current_toolchain == host_toolchain) {
468       # Do not build the breakpad utilities in cross-compiles.
469       deps += [
470         "//breakpad:dump_syms",
471         "//breakpad:microdump_stackwalk",
472         "//breakpad:minidump_dump",
473         "//breakpad:minidump_stackwalk",
474       ]
475     }
477     if (!is_debug && !is_component_build) {
478       deps += [ "//chrome/tools/service_discovery_sniffer" ]
479     }
481     if (toolkit_views) {
482       deps += [ "//ui/app_list:app_list_demo" ]
483     }
485     if (use_x11) {
486       if (target_cpu != "arm") {
487         deps += [ "//gpu/tools/compositor_model_bench" ]
488       }
489     }
490   }
492   if (is_mac) {
493     deps += [
494       "//breakpad:crash_inspector",
495       "//breakpad:dump_syms",
496       "//third_party/apple_sample_code",
497       "//third_party/molokocacao",
498     ]
500     # TODO(GYP): Remove these when the targets below work and these
501     # are pulled in automatically.
502     deps += [
503       "//cc/blink",
504       "//components/ui/zoom:ui_zoom",
505       "//content",
506       "//content/test:test_support",
507       "//device/battery",
508       "//device/bluetooth",
509       "//device/nfc",
510       "//device/usb",
511       "//device/vibration",
512       "//media/blink",
513       "//pdf",
514       "//storage/browser",
515       "//third_party/brotli",
516       "//third_party/flac",
517       "//third_party/hunspell",
518       "//third_party/iccjpeg",
519       "//third_party/libphonenumber",
520       "//third_party/ots",
521       "//third_party/qcms",
522       "//third_party/smhasher:murmurhash3",
523       "//third_party/speex",
524       "//third_party/webrtc/system_wrappers",
525       "//ui/native_theme",
526       "//ui/snapshot",
527       "//ui/surface",
528     ]
530     # TODO(dpranke): These are as-yet untriaged but need at least the above.
531     deps -= [
532       "//chrome",  # TODO(GYP)
533       "//chrome/test:browser_tests",  # TODO(GYP)
534       "//chrome/test:interactive_ui_tests",  # TODO(GYP)
535       "//chrome/test:sync_integration_tests",  # TODO(GYP)
536       "//chrome/test:unit_tests",  # TODO(GYP)
537       "//components:components_browsertests",  # TODO(GYP)
538       "//components:components_unittests",  # TODO(GYP)
539       "//content/test:content_browsertests",  # TODO(GYP)
540       "//content/test:content_perftests",  # TODO(GYP)
541       "//extensions:extensions_browsertests",  # TODO(GYP)
542       "//extensions:extensions_unittests",  # TODO(GYP)
543       "//net:net_unittests",  # TODO(GYP)
544       "//ui/app_list:app_list_unittests",  # TODO(GYP)
545       "//ui/gfx:gfx_unittests",  # TODO(GYP)
546     ]
547   }
549   if (is_win) {
550     deps += [
551       "//base:pe_image_test",
552       "//chrome_elf:chrome_elf_unittests",
553       "//chrome_elf:dll_hash_main",
554       "//components/crash/tools:crash_service",
555       "//components/wifi:wifi_test",
556       "//net:quic_client",
557       "//net:quic_server",
558       "//sandbox/win:pocdll",
559       "//sandbox/win:sandbox_poc",
560       "//sandbox/win:sbox_integration_tests",
561       "//sandbox/win:sbox_unittests",
562       "//sandbox/win:sbox_validation_tests",
563       "//testing/gtest:gtest_main",
564       "//third_party/codesighs:msmap2tsv",
565       "//third_party/pdfium/samples:pdfium_diff",
566       "//ui/metro_viewer",
567     ]
568     deps -= [
569       "//crypto:crypto_unittests",  # TODO(GYP)
570       "//net:net_unittests",  # TODO(GYP)
571     ]
572   } else if (!is_android) {
573     deps += [ "//breakpad:symupload" ]
574   }
577 group("gn_only") {
578   testonly = true
580   deps = [
581     "//mandoline:all",
582   ]
584   if (!is_android && !is_ios) {
585     deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
586   }
588   if (is_linux && !is_chromeos) {
589     # TODO(GYP): Figure out if any of these should be in gn_all
590     # and figure out how cross-platform they are
591     deps += [
592       ":gn_mojo_targets",
593       "//chrome/browser/resources:extension_resource_demo",
594       "//chrome/installer/util:strings",
595       "//chrome:main_dll",
596       "//chrome/test:load_library_perf_tests",
597       "//chrome/tools/convert_dict",
598       "//components/constrained_window:unit_tests",
599       "//components/enhanced_bookmarks:test_support",
600       "//components/metrics:serialization",
601       "//components/password_manager/content/renderer:browser_tests",
602       "//components/rappor:unit_tests",
603       "//components/sessions:unit_tests",
604       "//media/blink:media_blink_unittests",
605       "//media/cast:udp_proxy",
606       "//native_client/src/trusted/platform_qualify:vcpuid",
607       "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
608       "//storage/browser:dump_file_system",
609       "//third_party/angle:libANGLE",
610       "//third_party/angle:libEGL",
611       "//third_party/angle:libGLESv2",
612       "//third_party/cld_2:cld_2_dynamic_data_tool",
613       "//third_party/leveldatabase:leveldb_arena_test",
614       "//third_party/leveldatabase:leveldb_bloom_test",
615       "//third_party/leveldatabase:leveldb_db_test",
616       "//third_party/leveldatabase:leveldb_crc32c_test",
617       "//third_party/leveldatabase:leveldb_cache_test",
618       "//third_party/leveldatabase:leveldb_env_test",
619       "//third_party/leveldatabase:leveldb_write_batch_test",
620       "//third_party/leveldatabase:leveldb_filter_block_test",
621       "//third_party/leveldatabase:leveldb_version_edit_test",
622       "//third_party/leveldatabase:leveldb_db_bench",
623       "//third_party/leveldatabase:leveldb_log_test",
624       "//third_party/leveldatabase:leveldb_corruption_test",
625       "//third_party/leveldatabase:leveldb_table_test",
626       "//third_party/leveldatabase:leveldb_skiplist_test",
627       "//third_party/leveldatabase:leveldb_filename_test",
628       "//third_party/leveldatabase:leveldb_dbformat_test",
629       "//third_party/pdfium/third_party:freetype",
630       "//third_party/libjingle:peerconnnection_server",
631       "//third_party/libjpeg_turbo:simd",
632       "//third_party/libsrtp:replay_driver",
633       "//third_party/libsrtp:roc_driver",
634       "//third_party/libsrtp:rtpw",
635       "//third_party/libsrtp:rdbx_driver",
636       "//third_party/libsrtp:srtp_driver",
637       "//third_party/libsrtp:srtp_driver",
638       "//third_party/libsrtp:srtp_test_kernel_driver",
639       "//third_party/libsrtp:srtp_test_cipher_driver",
640       "//third_party/libsrtp:srtp_test_datatypes_driver",
641       "//third_party/libsrtp:srtp_test_aes_calc",
642       "//third_party/libsrtp:srtp_test_env",
643       "//third_party/libsrtp:srtp_test_rand_gen",
644       "//third_party/libsrtp:srtp_test_sha1_driver",
645       "//third_party/libsrtp:srtp_test_stat_driver",
646       "//third_party/opus:opus_compare",
647       "//third_party/opus:opus_demo",
648       "//third_party/opus:test_opus_decode",
649       "//third_party/opus:test_opus_encode",
650       "//third_party/opus:test_opus_api",
651       "//third_party/opus:test_opus_padding",
652       "//third_party/webrtc/system_wrappers:field_trial_default",
653       "//third_party/webrtc/system_wrappers:metrics_default",
654       "//ui/display/types",
655       "//ui/shell_dialogs:shell_dialogs_unittests",
656       "//ui/views/examples:views_examples_exe",
657     ]
658     if (target_cpu == "x86" || target_cpu == "x64") {
659       deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
660     }
661     if (enable_nacl) {
662       deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
663     }
664     if (use_ozone) {
665       deps += [ "//ui/ozone/demo" ]
666     }
667     if (is_android) {
668       deps += [ "//build/android/gyp/test:hello_world" ]
669     }
671     if (is_linux && current_toolchain == host_toolchain) {
672       deps += [ "//v8:d8" ]
673     }
674   }
677 group("gn_mojo_targets") {
678   testonly = true
679   if (is_linux && !is_chromeos) {
680     # TODO(GYP): Figure out if any of these should be in gn_all
681     # and figure out how cross-platform they are
682     deps = [
683       "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
684       "//components/window_manager/public/interfaces:interfaces_python",
685       "//content/public/common:mojo_bindings_python",
686       "//content/common:mojo_bindings_python",
687       "//content/test:web_ui_test_mojo_bindings_python",
688       "//device/battery:mojo_bindings_python",
689       "//device/vibration:mojo_bindings_python",
690       "//ipc/mojo:ipc_mojo_perftests",
691       "//ipc/mojo:client_channel_python",
692       "//media/mojo/interfaces:interfaces_python",
693       "//media/mojo/services:cdm_service",
694       "//media/mojo:tests",
695       "//mojo/services:apptests",
696       "//mojo/services:tests",
697       "//net/interfaces:interfaces_python",
698       "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
699       "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
700       "//third_party/mojo/src/mojo/public/python:packaged_application",
701       "//third_party/mojo/src/mojo/public/python:packaged_bindings",
702       "//third_party/mojo/src/mojo/public/cpp/application:test_support_standalone",
703       "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
704     ]
705   }
708 group("gn_visibility") {
709   deps = [
710     "//build/config/sanitizers:options_sources",
712     # "//third_party/pdfium:pdfium_embeddertests",  # TODO(GYP): visibility?
713     # "//third_party/pdfium:pdfium_unittests",  # TODO(GYP): visibility?
715     "//ui/resources:repack_ui_test_mac_locale_pack",
717     # "//v8:v8_snapshot",  # TODO(GYP): visibility?
718     # "//v8:postmortem-metadata",  # TODO(GYP): visibility?
719   ]
722 if (is_linux) {
723   # This group corresponds to the list of tests run on the waterfall for
724   # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
725   # here to help track GYP -> GN conversion progress.
726   group("linux_default_tests") {
727     testonly = true
728     deps = [
729       "//base:base_unittests",  # PASSES (*) 2/25/2015
730       "//cc:cc_unittests",  # PASSES 2/25/2015
731       "//chrome/test:browser_tests",
732       "//chrome/test:interactive_ui_tests",
733       "//chrome/test:sync_integration_tests",  # Crashes for brettw in GN and GYP.
734       "//chrome/test:unit_tests",  # PASSES 2/25/2015
735       "//chrome/test/chromedriver:chromedriver_unittests",  # PASSES 2/25/2015
736       "//components:components_browsertests",  # PASSES 4/17/2015
737       "//components:components_unittests",  # PASSES 2/27/2015
738       "//content/test:content_browsertests",
739       "//content/test:content_unittests",  # PASSES 2/25/2015
740       "//crypto:crypto_unittests",  # PASSES 2/25/2015
741       "//dbus:dbus_unittests",  # PASSES 2/25/2015
742       "//device:device_unittests",  # PASSES 3/07/2015
743       "//extensions:extensions_browsertests",  # PASSES 2/25/2015
744       "//extensions:extensions_unittests",  # PASSES 2/25/2015
745       "//extensions/shell:app_shell_unittests",  # PASSES 2/25/2015
746       "//google_apis/gcm:gcm_unit_tests",  # PASSES 2/25/2015
747       "//google_apis:google_apis_unittests",  # PASSES 2/25/2015
748       "//gpu:gpu_unittests",  # PASSES 2/25/2015
749       "//ipc:ipc_tests",  # PASSES 2/25/2015
750       "//ipc/mojo:ipc_mojo_unittests",  # PASSES 2/25/2015
751       "//jingle:jingle_unittests",  # PASSES 2/25/2015
752       "//media:media_unittests",  # PASSES 3/3/2015
753       "//media/cast:cast_unittests",  # PASSES 2/25/2015
754       "//media/midi:midi_unittests",  # PASSES 4/10/2015
755       "//mojo/common:mojo_common_unittests",  # PASSES 2/25/2015
756       "//net:net_unittests",  # PASSES 2/25/2015
757       "//ppapi:ppapi_unittests",  # PASSES 2/26/2015
758       "//printing:printing_unittests",  # PASSES 2/25/2015
759       "//remoting:remoting_unittests",  # PASSES 4/17/2015
760       "//sandbox/linux:sandbox_linux_unittests",  # PASSES 2/25/2015
761       "//skia:skia_unittests",  # PASSES 2/25/2015
762       "//sql:sql_unittests",  # PASSES 2/25/2015
763       "//sync:sync_unit_tests",  # PASSES 2/25/2015
764       "//third_party/cacheinvalidation:cacheinvalidation_unittests",  # PASSES 2/25/2015
765       "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",  # PASSES 2/25/2015
766       "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",  # PASSES 2/25/2015
767       "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",  # PASSES 2/25/2015
768       "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",  # PASSES 2/25/2015
769       "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
770       "//ui/accessibility:accessibility_unittests",  # PASSES 2/25/2015
771       "//ui/app_list:app_list_unittests",  # PASSES 2/25/2015
772       "//ui/aura:aura_unittests",  # PASSES 2/25/2015
773       "//ui/base:ui_base_unittests",  # PASSES 4/17/2015
774       "//ui/compositor:compositor_unittests",  # PASSES 2/25/2015
775       "//ui/display:display_unittests",  # PASSES 2/25/2015
776       "//ui/events:events_unittests",  # PASSES 2/25/2015
777       "//ui/gfx:gfx_unittests",  # PASSES 2/25/2015
778       "//ui/touch_selection:ui_touch_selection_unittests",  # PASSES 2/25/2015
779       "//ui/views:views_unittests",  # PASSES (*) 2/25/2015
780       "//ui/wm:wm_unittests",  # PASSES 2/25/2015
781       "//url:url_unittests",  # PASSES 2/25/2015
783       # Note:
784       # (*) Fails but failures match GYP build at time of testing.
785     ]
787     if (enable_nacl) {
788       deps += [ "//components/nacl:nacl_loader_unittests" ]  # PASSES 3/28/2015
789     }
790   }
791 } else if (is_win) {
792   group("windows_default_tests") {
793     testonly = true
794     deps = [
795       "//ash:ash_unittests",  # FAILS 4/20/2015
796       "//base:base_unittests",  # PASSES 4/20/2015
797       "//cc:cc_unittests",  # PASSES 4/17/2015
798       "//chrome_elf:chrome_elf_unittests",  # FAILS 4/20/2015
799       "//chrome/app_installer:app_installer_unittests",  # PASSES 4/24/2015
800       "//chrome/installer/util:installer_util_unittests",
801       "//chrome/test:browser_tests",
802       "//chrome/test:interactive_ui_tests",
803       "//chrome/test:sync_integration_tests",  # Note: need to turn off incremental linking for debug.
804       "//chrome/test:unit_tests",
805       "//chrome/test/chromedriver:chromedriver_unittests",  # PASSES 4/20/2015
806       "//components:components_browsertests",  # PASSES 4/24/2015
807       "//components:components_unittests",  # PASSES 4/17/2015
808       "//courgette:courgette_unittests",  # PASSES 4/20/2015
809       "//content/test:content_browsertests",
810       "//content/test:content_unittests",  # PASSES 4/17/2015
811       "//crypto:crypto_unittests",  # PASSES 4/17/2015
812       "//device:device_unittests",  # PASSES 4/17/2015
813       "//extensions:extensions_browsertests",  # PASSES 4/17/2015
814       "//extensions:extensions_unittests",  # PASSES 4/17/2015
815       "//extensions/shell:app_shell_unittests",  # Doesn't compile in 64-bit
816       "//google_apis/gcm:gcm_unit_tests",  # PASSES 4/17/2015
817       "//google_apis:google_apis_unittests",  # PASSES 4/17/2015
818       "//gpu:gpu_unittests",  # PASSES 4/17/2015
819       "//ipc:ipc_tests",  # PASSES 4/17/2015
820       "//ipc/mojo:ipc_mojo_unittests",  # PASSES 4/17/2015
821       "//jingle:jingle_unittests",  # PASSES 4/17/2015
822       "//media/cast:cast_unittests",  # PASSES 4/17/2015
823       "//media:media_unittests",  # PASSES 4/17/2015
824       "//mojo/common:mojo_common_unittests",  # PASSES 4/17/2015
825       "//net:net_unittests",  # PASSES 4/17/2015
826       "//ppapi:ppapi_unittests",  # PASSES 4/17/2015
827       "//printing:printing_unittests",  # PASSES 4/17/2015
828       "//remoting:remoting_unittests",  # PASSES 4/17/2015
829       "//sandbox/win:sbox_integration_tests",  # PASSES 4/20/2015
830       "//sandbox/win:sbox_unittests",  # PASSES 4/20/2015
831       "//sandbox/win:sbox_validation_tests",  # PASSES 4/20/2015
832       "//skia:skia_unittests",  # PASSES 4/17/2015
833       "//sql:sql_unittests",  # PASSES 4/17/2015
834       "//sync:sync_unit_tests",  # PASSES 4/20/2015
835       "//third_party/cacheinvalidation:cacheinvalidation_unittests",  # PASSES 4/20/2015
836       "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",  # Seems to hang?
837       "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",  # FAILS
838       "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",  # PASSES 4/20/2015
839       "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",  # PASSES 4/20/2015
840       "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",  # PASSES 4/20/2015
841       "//ui/accessibility:accessibility_unittests",  # PASSES 4/20/2015
842       "//ui/app_list:app_list_unittests",  # PASSES 4/20/2015
843       "//ui/aura:aura_unittests",  # PASSES 4/17/2015
844       "//ui/base:ui_base_unittests",  # PASSES 4/20/2015
845       "//ui/compositor:compositor_unittests",  # PASSES 4/20/2015
846       "//ui/display:display_unittests",  # PASSES 4/20/2015
847       "//ui/events:events_unittests",  # PASSES 4/20/2015
848       "//ui/gfx:gfx_unittests",  # PASSES (with assertion failure?) 4/20/2015
849       "//ui/message_center:message_center_unittests",  # PASSES 4/20/2015
850       "//ui/touch_selection:ui_touch_selection_unittests",  # PASSES 4/20/2015
851       "//ui/views:views_unittests",  # TooltipControllerTest failures
852       "//ui/wm:wm_unittests",  # PASSES 4/21/2015
853       "//url:url_unittests",  # PASSES 4/17/2015
855       # TODO(GYP) nacl_integration
856       # TODO(GYP) telemetry_perf_unittests
857       # TODO(GYP) telemetry_unittests
858     ]
859   }