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/features.gni")
12 import("//build/config/ui.gni")
15 import("//build/config/android/config.gni")
19 # A list of extra dependencies to add to the root target. This allows a
20 # checkout to add additional targets without explicitly changing any checked-
25 # The "gn_all" target should list every root target (target that
26 # nothing else depends on) built by both GN and GYP. One should
27 # be able to run 'ninja gn_all gn_only gn_groups' and then run
28 # 'ninja' a second time and have the second ninja invocation do nothing.
30 # In addition, the "gn_all" target serves to pull in all of the other
31 # build files needed for the build.
33 # TODO(GYP): make sure that the above is true and there are scripts run
34 # on the bots that enforce this.
40 "//base:base_unittests",
43 "//chrome/test:browser_tests",
44 "//chrome/test:interactive_ui_tests",
45 "//chrome/test:sync_integration_tests",
46 "//chrome/test:unit_tests",
47 "//chrome/test/chromedriver:chromedriver_unittests",
48 "//components:components_unittests",
49 "//content/shell:content_shell",
50 "//content/test:content_browsertests",
51 "//content/test:content_perftests",
52 "//content/test:content_unittests",
53 "//crypto:crypto_unittests",
54 "//extensions:extensions_browsertests",
55 "//extensions:extensions_unittests",
56 "//google_apis/gcm:gcm_unit_tests",
57 "//gpu:gpu_unittests",
59 "//ipc/mojo:ipc_mojo_unittests",
60 "//jingle:jingle_unittests",
61 "//media:media_unittests",
62 "//media/cast:cast_unittests",
64 "//mojo/common:mojo_common_unittests",
65 "//net:hpack_example_generator",
66 "//net:hpack_fuzz_mutator",
67 "//net:hpack_fuzz_wrapper",
68 "//net:net_perftests",
69 "//net:net_unittests",
70 "//ppapi:ppapi_unittests",
71 "//ppapi/examples", # TODO(GYP): What's the GYP equivalent?
72 "//printing:printing_unittests",
73 "//skia:skia_unittests",
74 "//sql:sql_unittests",
75 "//sync:sync_unit_tests",
76 "//third_party/WebKit/public:blink_tests",
77 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
78 "//third_party/codesighs",
79 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
80 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
81 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
82 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
83 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
84 "//third_party/pdfium/samples:pdfium_test",
85 "//third_party/smhasher:pmurhash",
86 "//tools/imagediff($host_toolchain)",
88 "//tools/gn:gn_unittests",
89 "//tools/telemetry:bitmaptools($host_toolchain)",
90 "//ui/accessibility:accessibility_unittests",
91 "//ui/app_list:app_list_unittests",
92 "//ui/base:ui_base_unittests",
93 "//ui/display:display_unittests",
94 "//ui/events:events_unittests",
95 "//ui/gfx:gfx_unittests",
96 "//ui/touch_selection:ui_touch_selection_unittests",
97 "//url:url_unittests",
100 deps += root_extra_deps
102 # TODO(GYP): Get this working on the mac?
103 if (enable_extensions && !is_mac) {
104 deps += [ "//extensions/shell:app_shell_unittests" ]
108 deps += [ "//remoting:remoting_unittests" ]
112 deps += [ "//breakpad:symupload" ]
116 deps += [ "//tools/xdisplaycheck" ]
120 deps += [ "//ui/views:views_unittests" ]
124 deps += [ "//ui/wm:wm_unittests" ]
128 deps += [ "//ui/ozone" ]
131 if (enable_media_router) {
133 "//chrome/browser/media/router/",
134 "//chrome/browser/media/router:unit_tests",
138 if (is_win || is_mac || is_chromeos) {
139 # RLZ works on these platforms.
140 # TODO(GYP): Is this target needed, or pulled in automatically?
141 deps += [ "//rlz:rlz_lib" ]
146 "//base/android/linker:chromium_android_linker",
147 "//build/android/gyp/test:hello_world",
148 "//build/android/rezip",
149 "//chrome/android:chrome_shell_apk",
150 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
151 "//tools/imagediff($host_toolchain)",
153 # TODO(GYP): Remove these when the components_unittests work.
154 "//components/history/core/test:test",
155 "//components/policy:policy_component_test_support",
156 "//components/policy:test_support",
157 "//components/rappor:test_support",
158 "//components/signin/core/browser:test_support",
159 "//components/sync_driver:test_support",
160 "//components/user_manager",
161 "//components/wallpaper",
162 "//content/shell/android:content_shell_apk",
164 # TODO(GYP): Are these needed, or will they be pulled in automatically?
165 "//third_party/android_tools:android_gcm_java",
166 "//third_party/android_tools:uiautomator_java",
167 "//third_party/android_tools:android_support_v13_java",
168 "//third_party/android_tools:android_support_v7_appcompat_java",
169 "//third_party/android_tools:android_support_v7_mediarouter_java",
170 "//third_party/mesa",
171 "//third_party/mockito:mockito_java",
172 "//third_party/openmax_dl/dl",
173 "//third_party/speex",
174 "//ui/android:ui_java",
176 # TODO(GYP): Are these needed?
177 "//chrome/test:test_support_unit",
178 "//third_party/smhasher:murmurhash3",
179 "//ui/message_center:test_support",
182 "//breakpad:symupload", # TODO(GYP) ??
183 "//chrome", # TODO(GYP) ??
184 "//chrome/test:browser_tests", # TODO(GYP) ??
185 "//chrome/test:interactive_ui_tests", # TODO(GYP) ??
186 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
187 "//chrome/test:unit_tests", # TODO(GYP)
189 # Chromedriver shouldn't be compiled on Android.
190 "//chrome/test/chromedriver:chromedriver_unittests",
191 "//extensions:extensions_browsertests",
192 "//extensions:extensions_unittests",
193 "//google_apis/gcm:gcm_unit_tests",
194 "//ipc:ipc_tests", # TODO(GYP) ??
195 "//jingle:jingle_unittests", # TODO(GYP) ??
196 "//net:hpack_example_generator",
197 "//net:hpack_fuzz_mutator",
198 "//net:hpack_fuzz_wrapper",
199 "//net:net_perftests",
200 "//net:net_unittests",
202 "//third_party/pdfium/samples:pdfium_test",
204 "//tools/gn:gn_unittests",
205 "//ui/app_list:app_list_unittests",
206 "//url:url_unittests",
209 if (has_chrome_android_internal) {
210 deps += [ "//clank" ] # TODO(GYP) ??
215 # The following are definitely linux-only.
217 "//breakpad:breakpad_unittests",
218 "//breakpad:generate_test_dump",
219 "//dbus:dbus_test_server",
220 "//dbus:dbus_unittests",
221 "//net:disk_cache_memory_test",
222 "//net:flip_in_mem_edsm_server",
223 "//net:flip_in_mem_edsm_server_unittests",
226 "//sandbox/linux:chrome_sandbox",
227 "//sandbox/linux:sandbox_linux_unittests",
228 "//sandbox/linux:sandbox_linux_jni_unittests",
231 if (is_chromeos || use_ash) {
232 deps += [ "//components/session_manager/core" ]
236 if (is_linux && !is_chromeos) {
238 # TODO(GYP): Figure out which of these should (and can) build
239 # under which other conditions.
240 "//base:base_perftests",
241 "//base:base_i18n_perftests",
242 "//base:check_example",
243 "//base:protect_file_posix",
244 "//base:build_utf8_validator_tables",
245 "//breakpad:core-2-minidump",
246 "//breakpad:dump_syms",
247 "//breakpad:microdump_stackwalk",
248 "//breakpad:minidump-2-core",
249 "//breakpad:minidump_dump",
250 "//breakpad:minidump_stackwalk",
251 "//build/sanitizers:copy_llvm_symbolizer",
252 "//cc/blink:cc_blink_unittests",
254 "//chrome/test:chrome_app_unittests",
255 "//chrome/test:load_library_perf_tests",
256 "//chrome/test:sync_performance_tests",
257 "//chrome/test/chromedriver:chromedriver",
258 "//chrome/test/chromedriver:chromedriver_tests",
259 "//chrome/tools/profile_reset:jtl_compiler",
260 "//components:components_perftests",
261 "//components/network_hints/browser",
262 "//components/webui_generator",
263 "//content/public/app:browser",
264 "//content/public/app:child",
265 "//content/test:content_gl_tests",
266 "//content/test:content_gl_benchmark",
267 "//courgette:courgette",
268 "//courgette:courgette_fuzz",
269 "//courgette:courgette_minimal_tool",
270 "//courgette:courgette_unittests",
271 "//device:device_unittests",
273 "//gin:gin_v8_snapshot_fingerprint",
274 "//gin:gin_unittests",
275 "//google_apis:google_apis_unittests",
276 "//google_apis/gcm:mcs_probe",
277 "//gpu:angle_unittests",
280 # TODO(GYP): Remove this when the gles2 tests work
281 "//gpu/command_buffer/client:gles2_implementation_no_check",
283 "//gpu:gpu_perftests",
284 "//ipc:ipc_perftests",
285 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional on media_use_ffmpeg
286 "//media:media_perftests",
287 "//media/cast:cast_benchmarks",
288 "//media/cast:generate_barcode_video",
289 "//media/cast:generate_timecode_audio",
290 "//media/cast:tap_proxy",
291 "//mojo/application",
293 "//net:crl_set_dump",
294 "//net:dns_fuzz_stub",
296 "//net:get_server_time",
298 #"//net:hpack_example_generator", # TODO(GYP) rockot in progress
299 #"//net:hpack_fuzz_mutator", # TODO(GYP) rockot in progress
300 #"//net:hpack_fuzz_wrapper", # TODO(GYP) rockot in progress
301 #"//net:net_perftests", # TODO(GYP) rockot in progress
302 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
303 "//net:stress_cache",
305 "//net:run_testserver",
308 # "//ppapi:pepper_hash_for_uma", # TODO(GYP): Implement me.
309 "//ppapi:ppapi_perftests", # TODO(GYP): Are there other ppapi_* test targets?
310 "//skia:filter_fuzz_stub",
311 "//skia:image_operations_bench",
312 "//sync:run_sync_testserver",
313 "//sync:sync_endtoend_tests",
314 "//sync/tools:sync_client",
315 "//sync/tools:sync_listen_notifications",
316 "//testing/gmock:gmock_main",
317 "//third_party/codesighs:maptsvdifftool",
318 "//third_party/libphonenumber:libphonenumber_unittests",
319 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
320 "//tools/gn:generate_test_gn_data",
321 "//tools/perf/clear_system_cache",
322 "//ui/keyboard:keyboard_unittests",
323 "//ui/message_center:message_center_unittests",
324 "//ui/snapshot:snapshot_unittests",
325 "//ui/views/examples:views_examples_with_content_exe",
327 # "//v8:v8_snapshot", # TODO(GYP): visibility?
328 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
330 "//third_party/codesighs:nm2tsv",
331 "//third_party/leveldatabase:env_chromium_unittests",
332 "//third_party/libaddressinput:libaddressinput_unittests",
333 "//third_party/sqlite:sqlite_shell",
334 "//ui/compositor:compositor_unittests",
337 if (enable_extensions) {
338 deps += [ "//extensions/shell:app_shell" ]
342 deps += [ "//components/nacl:nacl_loader_unittests" ]
345 if (!is_debug && !is_component_build) {
346 deps += [ "//chrome/tools/service_discovery_sniffer" ]
350 deps += [ "//ui/app_list:app_list_demo" ]
356 "//ash:ash_shell_unittests",
357 "//ash:ash_unittests",
363 "//ui/aura:aura_unittests",
370 deps += [ "//media:player_x11" ]
371 if (target_cpu != "arm") {
372 deps += [ "//gpu:compositor_model_bench" ]
379 "//breakpad:crash_inspector",
380 "//breakpad:dump_syms",
381 "//breakpad:symupload",
382 "//third_party/apple_sample_code",
383 "//third_party/molokocacao",
386 # TODO(GYP): Remove these when the targets below work and these
387 # are pulled in automatically.
390 "//components/ui/zoom:ui_zoom",
392 "//content/test:test_support",
394 "//device/bluetooth",
397 "//device/vibration",
401 "//third_party/brotli",
402 "//third_party/flac",
403 "//third_party/hunspell",
404 "//third_party/iccjpeg",
405 "//third_party/libphonenumber",
407 "//third_party/qcms",
408 "//third_party/smhasher:murmurhash3",
409 "//third_party/speex",
410 "//third_party/webrtc/system_wrappers",
416 # TODO(dpranke): These are as-yet untriaged but need at least the above.
418 "//chrome", # TODO(GYP)
419 "//chrome/test:browser_tests", # TODO(GYP)
420 "//chrome/test:interactive_ui_tests", # TODO(GYP)
421 "//chrome/test:sync_integration_tests", # TODO(GYP)
422 "//chrome/test:unit_tests", # TODO(GYP)
423 "//components:components_unittests", # TODO(GYP)
424 "//content/test:content_browsertests", # TODO(GYP)
425 "//content/test:content_perftests", # TODO(GYP)
426 "//content/test:content_unittests", # TODO(GYP)
427 "//extensions:extensions_browsertests", # TODO(GYP)
428 "//extensions:extensions_unittests", # TODO(GYP)
429 "//net:net_unittests", # TODO(GYP)
430 "//ui/app_list:app_list_unittests", # TODO(GYP)
431 "//ui/gfx:gfx_unittests", # TODO(GYP)
434 deps += [ "//ui/metro_viewer" ]
436 "//crypto:crypto_unittests", # TODO(GYP)
437 "//net:net_unittests", # TODO(GYP)
445 if (is_linux && !is_chromeos) {
446 # TODO(GYP): Figure out if any of these should be in gn_all
447 # and figure out how cross-platform they are
450 "//chrome/browser/resources:extension_resource_demo",
451 "//chrome/installer/util:strings",
453 "//chrome/test:load_library_perf_tests",
454 "//chrome/tools/convert_dict",
455 "//components/constrained_window:unit_tests",
456 "//components/enhanced_bookmarks:test_support",
457 "//components/password_manager/content/renderer:browser_tests",
458 "//components/metrics:serialization",
459 "//components/proximity_auth:proximity_auth_unittests",
460 "//components/rappor:unit_tests",
461 "//components/sessions:unit_tests",
462 "//media/blink:media_blink_unittests",
463 "//media/base:base_for_cast_ios",
464 "//media/cast:udp_proxy",
465 "//native_client/src/trusted/platform_qualify:vcpuid",
466 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
467 "//storage/browser:dump_file_system",
468 "//third_party/angle:libANGLE",
469 "//third_party/angle:libEGL",
470 "//third_party/angle:libGLESv2",
471 "//third_party/cld_2:cld_2_dynamic_data_tool",
472 "//third_party/leveldatabase:leveldb_arena_test",
473 "//third_party/leveldatabase:leveldb_bloom_test",
474 "//third_party/leveldatabase:leveldb_db_test",
475 "//third_party/leveldatabase:leveldb_crc32c_test",
476 "//third_party/leveldatabase:leveldb_cache_test",
477 "//third_party/leveldatabase:leveldb_env_test",
478 "//third_party/leveldatabase:leveldb_write_batch_test",
479 "//third_party/leveldatabase:leveldb_filter_block_test",
480 "//third_party/leveldatabase:leveldb_version_edit_test",
481 "//third_party/leveldatabase:leveldb_db_bench",
482 "//third_party/leveldatabase:leveldb_log_test",
483 "//third_party/leveldatabase:leveldb_corruption_test",
484 "//third_party/leveldatabase:leveldb_table_test",
485 "//third_party/leveldatabase:leveldb_skiplist_test",
486 "//third_party/leveldatabase:leveldb_filename_test",
487 "//third_party/leveldatabase:leveldb_dbformat_test",
488 "//third_party/pdfium/third_party:freetype",
489 "//third_party/libjingle:peerconnnection_server",
490 "//third_party/libjpeg_turbo:simd",
491 "//third_party/libjpeg_turbo:simd_asm",
492 "//third_party/libsrtp:replay_driver",
493 "//third_party/libsrtp:roc_driver",
494 "//third_party/libsrtp:rtpw",
495 "//third_party/libsrtp:rdbx_driver",
496 "//third_party/libsrtp:srtp_driver",
497 "//third_party/libsrtp:srtp_driver",
498 "//third_party/libsrtp:srtp_test_kernel_driver",
499 "//third_party/libsrtp:srtp_test_cipher_driver",
500 "//third_party/libsrtp:srtp_test_datatypes_driver",
501 "//third_party/libsrtp:srtp_test_aes_calc",
502 "//third_party/libsrtp:srtp_test_env",
503 "//third_party/libsrtp:srtp_test_rand_gen",
504 "//third_party/libsrtp:srtp_test_sha1_driver",
505 "//third_party/libsrtp:srtp_test_stat_driver",
506 "//third_party/opus:opus_compare",
507 "//third_party/opus:opus_demo",
508 "//third_party/opus:test_opus_decode",
509 "//third_party/opus:test_opus_encode",
510 "//third_party/opus:test_opus_api",
511 "//third_party/opus:test_opus_padding",
512 "//third_party/webrtc/system_wrappers:field_trial_default",
513 "//third_party/webrtc/system_wrappers:metrics_default",
514 "//ui/display/types",
515 "//ui/shell_dialogs:shell_dialogs_unittests",
516 "//ui/views/examples:views_examples_exe",
520 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
523 deps += [ "//ui/ozone/demo" ]
526 deps += [ "//build/android/gyp/test:hello_world" ]
531 group("gn_mojo_targets") {
533 if (is_linux && !is_chromeos) {
534 # TODO(GYP): Figure out if any of these should be in gn_all
535 # and figure out how cross-platform they are
537 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
538 "//chrome/browser/ui/webui/omnibox:mojo_bindings_dart",
539 "//content/public/common:mojo_bindings_dart",
540 "//content/public/common:mojo_bindings_python",
541 "//content/common:mojo_bindings_dart",
542 "//content/common:mojo_bindings_python",
543 "//content/test:web_ui_test_mojo_bindings_dart",
544 "//content/test:web_ui_test_mojo_bindings_python",
545 "//device/battery:mojo_bindings_python",
546 "//device/battery:mojo_bindings_dart",
547 "//device/vibration:mojo_bindings_dart",
548 "//device/vibration:mojo_bindings_python",
549 "//ipc/mojo:ipc_mojo_perftests",
550 "//ipc/mojo:client_channel_dart",
551 "//ipc/mojo:client_channel_python",
552 "//media/mojo/interfaces:interfaces_dart",
553 "//media/mojo/interfaces:interfaces_python",
554 "//media/mojo/services:cdm_service",
555 "//media/mojo:tests",
556 "//net/interfaces:interfaces_dart",
557 "//net/interfaces:interfaces_python",
558 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
559 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_dart",
560 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
561 "//third_party/mojo/src/mojo/public/python:packaged_application",
562 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
563 "//third_party/mojo/src/mojo/public/cpp/application:test_support_standalone",
564 "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_dart",
565 "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
566 "//third_party/mojo_services/src/window_manager/public/interfaces:interfaces_dart",
567 "//third_party/mojo_services/src/window_manager/public/interfaces:interfaces_python",
572 "//mojo/services/html_viewer:tests",
573 "//mojo/services/network:apptests",
579 group("gn_visibility") {
581 # "//build/config/sanitizers:options_sources",
582 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
583 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
584 # "//ui/resources:repack_ui_test_mac_locale_pack",
585 # "//v8:v8_snapshot", # TODO(GYP): visibility?
586 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
591 # This group corresponds to the list of tests run on the waterfall for
592 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
593 # here to help track GYP -> GN conversion progress.
594 group("linux_default_tests") {
597 # components_browsertests TODO(GYP)
598 # nacl_loader_unittests TODO(GYP)
600 "//base:base_unittests", # PASSES (*) 2/25/2015
601 "//cc:cc_unittests", # PASSES 2/25/2015
602 "//chrome/test:browser_tests",
603 "//chrome/test:interactive_ui_tests",
604 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GYP.
605 "//chrome/test:unit_tests", # PASSES 2/25/2015
606 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015
607 "//components:components_unittests", # PASSES 2/27/2015
608 "//content/test:content_browsertests",
609 "//content/test:content_unittests", # PASSES 2/25/2015
610 "//crypto:crypto_unittests", # PASSES 2/25/2015
611 "//dbus:dbus_unittests", # PASSES 2/25/2015
612 "//device:device_unittests", # PASSES 3/07/2015
613 "//extensions:extensions_browsertests", # PASSES 2/25/2015
614 "//extensions:extensions_unittests", # PASSES 2/25/2015
615 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
616 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
617 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
618 "//gpu:gpu_unittests", # PASSES 2/25/2015
619 "//ipc:ipc_tests", # PASSES 2/25/2015
620 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
621 "//jingle:jingle_unittests", # PASSES 2/25/2015
622 "//media/cast:cast_unittests", # PASSES 2/25/2015
623 "//media:media_unittests", # PASSES 3/3/2015
624 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
625 "//net:net_unittests", # PASSES 2/25/2015
626 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
627 "//printing:printing_unittests", # PASSES 2/25/2015
628 "//remoting:remoting_unittests", # Some crashes.
629 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
630 "//skia:skia_unittests", # PASSES 2/25/2015
631 "//sql:sql_unittests", # PASSES 2/25/2015
632 "//sync:sync_unit_tests", # PASSES 2/25/2015
633 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015
634 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
635 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
636 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
637 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015
638 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
639 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
640 "//ui/aura:aura_unittests", # PASSES 2/25/2015
641 "//ui/base:ui_base_unittests", # TODO(GYP) ResourceBundleTest.* fails.
642 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
643 "//ui/display:display_unittests", # PASSES 2/25/2015
644 "//ui/events:events_unittests", # PASSES 2/25/2015
645 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
646 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
647 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
648 "//ui/wm:wm_unittests", # PASSES 2/25/2015
649 "//url:url_unittests", # PASSES 2/25/2015
652 # (*) Fails but failures match GYP build at time of testing.