blob: 5ebdb82a19bc3fc4007cebd6686a202883fb7009 [file] [log] [blame]
[email protected]f0e7ff882013-12-26 21:23:091# 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.
4
5# This is the root build file for GN. GN will start processing by loading this
6# file, and recursively load all dependencies until all dependencies are either
7# resolved or known not to exist (which will cause the build to fail). So if
8# you add a new build file, there must be some path of dependencies from this
9# file to your new one or GN won't know about it.
10
dprankefd1813272015-04-13 23:56:0011import("//build/config/crypto.gni")
rockot2f1326e2015-02-23 23:53:5112import("//build/config/features.gni")
[email protected]378b4f02014-06-10 15:58:4513import("//build/config/ui.gni")
dprankefd1813272015-04-13 23:56:0014import("//build/module_args/v8.gni")
dprankee2ef3822015-02-24 21:42:1815
cjhopmanca675d3e2014-10-24 03:50:4516if (is_android) {
17 import("//build/config/android/config.gni")
18}
[email protected]378b4f02014-06-10 15:58:4519
brettwb84b29472014-10-22 22:58:4520declare_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 = []
25}
26
dprankeb6128d02015-05-01 16:40:3027# This file defines the following four main targets:
dpranked62d8512015-03-02 03:06:0328#
dprankeddc174902015-04-29 01:38:3529# "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.
dpranked62d8512015-03-02 03:06:0331#
dprankeddc174902015-04-29 01:38:3532# "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.
34#
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).
39#
dprankeb6128d02015-05-01 16:40:3040# "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.
44#
dprankeddc174902015-04-29 01:38:3545# 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.
dprankeff30e3d2015-02-24 06:52:3948
dprankee2ef3822015-02-24 21:42:1849group("gn_all") {
50 testonly = true
51
52 deps = [
dprankeddc174902015-04-29 01:38:3553 ":both_gn_and_gyp",
54 ":gn_only",
dprankeb6128d02015-05-01 16:40:3055 ":gn_visibility",
dprankeddc174902015-04-29 01:38:3556 ]
57}
58
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.
62#
63# TODO(GYP): Add build steps that check and enforce this on the bots.
64group("both_gn_and_gyp") {
65 testonly = true
66
67 deps = [
dprankee2ef3822015-02-24 21:42:1868 "//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",
brettw922d3aa2015-02-27 22:15:4675 "//chrome/test/chromedriver:chromedriver_unittests",
dprankef6ca89c52015-03-30 22:01:3876 "//components:components_browsertests",
dprankee2ef3822015-02-24 21:42:1877 "//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",
scheibcfdca0e2015-04-01 05:27:5883 "//device:device_unittests",
dprankee2ef3822015-02-24 21:42:1884 "//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",
dprankee2ef3822015-02-24 21:42:1892 "//media/cast:cast_unittests",
toyoshimc64757792015-04-30 14:52:0293 "//media/midi:midi_unittests",
dprankee2ef3822015-02-24 21:42:1894 "//mojo",
jam00802992015-05-20 03:37:1995 "//mojo/application/public/cpp",
dprankee2ef3822015-02-24 21:42:1896 "//mojo/common:mojo_common_unittests",
rockot9c67e5f2015-03-12 20:01:2197 "//net:hpack_example_generator",
98 "//net:hpack_fuzz_mutator",
99 "//net:hpack_fuzz_wrapper",
100 "//net:net_perftests",
dprankee2ef3822015-02-24 21:42:18101 "//net:net_unittests",
brettw31f4de692015-03-04 17:24:45102 "//ppapi:ppapi_unittests",
tfarina79ef072d2015-04-04 20:16:57103 "//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",
dprankee2ef3822015-02-24 21:42:18131 "//printing:printing_unittests",
132 "//skia:skia_unittests",
133 "//sql:sql_unittests",
134 "//sync:sync_unit_tests",
tfarinacb2638b2015-05-12 03:24:15135 "//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",
dprankee2ef3822015-02-24 21:42:18139 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
dprankee2ef3822015-02-24 21:42:18140 "//third_party/codesighs",
dprankee2ef3822015-02-24 21:42:18141 "//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",
dprankee2ef3822015-02-24 21:42:18147 "//third_party/smhasher:pmurhash",
dprankee2ef3822015-02-24 21:42:18148 "//tools/imagediff($host_toolchain)",
149 "//tools/gn",
150 "//tools/gn:gn_unittests",
dprankefd1813272015-04-13 23:56:00151 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18152 "//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",
dyen781489a2015-05-05 21:40:56159 "//ui/gl:gl_unittests",
dprankee2ef3822015-02-24 21:42:18160 "//ui/touch_selection:ui_touch_selection_unittests",
161 "//url:url_unittests",
162 ]
163
scottmg34fb7e52014-12-03 23:27:24164 deps += root_extra_deps
[email protected]fce5c3fe2014-04-10 21:13:05165
dpranke021d4c92015-02-24 02:08:25166 if (enable_extensions && !is_mac) {
dprankefd1813272015-04-13 23:56:00167 # TODO(GYP): Get this working on the mac?
rockot2f1326e2015-02-23 23:53:51168 deps += [ "//extensions/shell:app_shell_unittests" ]
169 }
170
dprankefd1813272015-04-13 23:56:00171 if (enable_media_router) {
imchengb6b09239f2015-05-15 21:41:55172 deps += [ "//chrome/browser/media/router" ]
dprankefd1813272015-04-13 23:56:00173 }
174
garykac3eddb5b2015-04-17 23:16:38175 if (enable_remoting) {
176 deps += [ "//remoting:remoting_all" ]
dprankece5eb832015-04-01 20:21:05177 }
178
dprankee2ef3822015-02-24 21:42:18179 if (toolkit_views) {
180 deps += [ "//ui/views:views_unittests" ]
James Robinson060f2e32014-09-10 22:31:37181 }
182
dprankee2ef3822015-02-24 21:42:18183 if (use_aura) {
184 deps += [ "//ui/wm:wm_unittests" ]
185 }
186
187 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47188 deps += [ "//ui/ozone" ]
[email protected]a306aaa2014-05-24 13:21:50189 }
190
dprankefd1813272015-04-13 23:56:00191 if (use_x11) {
192 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22193 }
194
tmoniuszkoe5578b922015-04-14 09:38:03195 if (enable_configuration_policy) {
196 deps += [ "//components/policy:policy_templates" ]
197 }
198
dprankefd1813272015-04-13 23:56:00199 if (v8_use_external_startup_data) {
200 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
[email protected]2d6893a2014-06-02 19:16:36201 }
202
brettw66e3feab2015-07-20 23:52:22203 if (is_win) {
204 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
205 }
206
[email protected]5a8d5162014-04-12 01:19:16207 if (is_android) {
[email protected]26046b52014-07-16 00:11:03208 deps += [
cjhopman31511332014-10-23 01:05:02209 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38210 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02211 "//build/android/rezip",
yfriedmanc1995be82015-05-29 17:52:25212 "//chrome/android:chrome_public_apk",
213 "//chrome/android:chrome_public_test_apk",
hiroshigee6d374c2015-02-24 07:54:06214 "//chrome/android:chrome_shell_apk",
hiroshigee6d374c2015-02-24 07:54:06215 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
agrieve40ba6862015-07-15 02:09:05216 "//third_party/errorprone:chromium_errorprone",
dprankee2ef3822015-02-24 21:42:18217 "//tools/imagediff($host_toolchain)",
218
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",
229
230 # TODO(GYP): Are these needed, or will they be pulled in automatically?
[email protected]684b2292014-08-22 19:12:39231 "//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",
dprankee2ef3822015-02-24 21:42:18236 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29237 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18238 "//third_party/openmax_dl/dl",
239 "//third_party/speex",
240 "//ui/android:ui_java",
241
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 -= [
dprankee2ef3822015-02-24 21:42:18248 "//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)
brettw922d3aa2015-02-27 22:15:46253
254 # Chromedriver shouldn't be compiled on Android.
255 "//chrome/test/chromedriver:chromedriver_unittests",
dprankee2ef3822015-02-24 21:42:18256 "//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) ??
rockot9c67e5f2015-03-12 20:01:21261 "//net:hpack_example_generator",
262 "//net:hpack_fuzz_mutator",
263 "//net:hpack_fuzz_wrapper",
264 "//net:net_perftests",
dprankee2ef3822015-02-24 21:42:18265 "//net:net_unittests",
tfarina79ef072d2015-04-04 20:16:57266 "//ppapi/examples/2d",
267 "//ppapi/examples/audio",
268 "//ppapi/examples/audio_input",
269 "//ppapi/examples/compositor",
270 "//ppapi/examples/crxfs",
271 "//ppapi/examples/enumerate_devices",
272 "//ppapi/examples/file_chooser",
273 "//ppapi/examples/flash_topmost",
274 "//ppapi/examples/font",
275 "//ppapi/examples/gamepad",
276 "//ppapi/examples/gles2",
277 "//ppapi/examples/gles2_spinning_cube",
278 "//ppapi/examples/ime",
279 "//ppapi/examples/input",
280 "//ppapi/examples/media_stream_audio",
281 "//ppapi/examples/media_stream_video",
282 "//ppapi/examples/mouse_cursor",
283 "//ppapi/examples/mouse_lock",
284 "//ppapi/examples/printing",
285 "//ppapi/examples/scaling",
286 "//ppapi/examples/scripting",
287 "//ppapi/examples/stub",
288 "//ppapi/examples/threading",
289 "//ppapi/examples/url_loader",
290 "//ppapi/examples/video_capture",
291 "//ppapi/examples/video_decode",
292 "//ppapi/examples/video_effects",
293 "//ppapi/examples/video_encode",
dprankee2ef3822015-02-24 21:42:18294 "//third_party/pdfium/samples:pdfium_test",
295 "//tools/gn",
dprankefd1813272015-04-13 23:56:00296 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18297 "//tools/gn:gn_unittests",
298 "//ui/app_list:app_list_unittests",
299 "//url:url_unittests",
[email protected]26046b52014-07-16 00:11:03300 ]
301
cjhopmanca675d3e2014-10-24 03:50:45302 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18303 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45304 }
dprankedb5527d72015-03-08 04:22:47305 }
306
dprankefd1813272015-04-13 23:56:00307 if (is_linux) { # TODO(GYP): || is_android || is_bsd?
308 deps += [
309 "//breakpad:core-2-minidump",
310 "//breakpad:minidump-2-core",
311 ]
312 }
313
dpranke6293d252015-04-14 19:12:00314 if (is_chromeos) {
315 deps += [
316 "//chromeos:chromeos_unittests",
317 "//ui/chromeos:ui_chromeos_unittests",
318 ]
319 }
320
dprankefd1813272015-04-13 23:56:00321 if (is_chromeos || is_mac || is_win) {
322 deps += [
323 "//rlz:rlz_id",
324 "//rlz:rlz_lib",
325 "//rlz:rlz_unittests",
326 ]
327 }
328
dprankedb5527d72015-03-08 04:22:47329 if (is_linux) {
330 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06331 deps += [
dprankedb5527d72015-03-08 04:22:47332 "//breakpad:breakpad_unittests",
dprankedb5527d72015-03-08 04:22:47333 "//breakpad:generate_test_dump",
dprankedb5527d72015-03-08 04:22:47334 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18335 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47336 "//net:disk_cache_memory_test",
337 "//net:flip_in_mem_edsm_server",
338 "//net:flip_in_mem_edsm_server_unittests",
339 "//net:quic_client",
340 "//net:quic_server",
341 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18342 "//sandbox/linux:sandbox_linux_unittests",
dprankedb5527d72015-03-08 04:22:47343 "//sandbox/linux:sandbox_linux_jni_unittests",
hiroshigee6d374c2015-02-24 07:54:06344 ]
dnicoara8c6aa8e2015-03-11 23:20:32345
346 if (is_chromeos || use_ash) {
347 deps += [ "//components/session_manager/core" ]
348 }
dprankedb5527d72015-03-08 04:22:47349 }
350
dprankefd1813272015-04-13 23:56:00351 if (is_win || (is_linux && !is_chromeos)) {
352 # TODO(GYP): Figure out which of these should (and can) build
353 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44354 deps += [
dprankedb5527d72015-03-08 04:22:47355 "//base:base_perftests",
356 "//base:base_i18n_perftests",
357 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47358 "//base:build_utf8_validator_tables",
dprankedb5527d72015-03-08 04:22:47359 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00360 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47361 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00362 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47363 "//chrome/test:sync_performance_tests",
364 "//chrome/test/chromedriver:chromedriver",
365 "//chrome/test/chromedriver:chromedriver_tests",
366 "//chrome/tools/profile_reset:jtl_compiler",
367 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47368 "//content/test:content_gl_tests",
369 "//content/test:content_gl_benchmark",
370 "//courgette:courgette",
371 "//courgette:courgette_fuzz",
372 "//courgette:courgette_minimal_tool",
373 "//courgette:courgette_unittests",
374 "//device:device_unittests",
375 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47376 "//gin:gin_unittests",
377 "//google_apis:google_apis_unittests",
378 "//google_apis/gcm:mcs_probe",
379 "//gpu:angle_unittests",
dprankedb5527d72015-03-08 04:22:47380 "//gpu:gpu_perftests",
dprankefd1813272015-04-13 23:56:00381 "//gpu:gl_tests",
dprankedb5527d72015-03-08 04:22:47382 "//ipc:ipc_perftests",
383 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional on media_use_ffmpeg
384 "//media:media_perftests",
dprankedb5527d72015-03-08 04:22:47385 "//media/cast:generate_barcode_video",
386 "//media/cast:generate_timecode_audio",
dprankedb5527d72015-03-08 04:22:47387 "//net:crash_cache",
388 "//net:crl_set_dump",
389 "//net:dns_fuzz_stub",
dprankefd1813272015-04-13 23:56:00390 "//net:dump_cache",
dprankedb5527d72015-03-08 04:22:47391 "//net:gdig",
392 "//net:get_server_time",
dprankedb5527d72015-03-08 04:22:47393 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
dprankefd1813272015-04-13 23:56:00394 "//net:run_testserver",
dprankedb5527d72015-03-08 04:22:47395 "//net:stress_cache",
396 "//net:tld_cleanup",
dprankec09ccaa2015-03-27 22:00:38397 "//ppapi:pepper_hash_for_uma",
dprankefd1813272015-04-13 23:56:00398 "//ppapi:ppapi_perftests",
dprankedb5527d72015-03-08 04:22:47399 "//sync:run_sync_testserver",
dprankedb5527d72015-03-08 04:22:47400 "//third_party/codesighs:maptsvdifftool",
dprankedb5527d72015-03-08 04:22:47401 "//third_party/leveldatabase:env_chromium_unittests",
402 "//third_party/libaddressinput:libaddressinput_unittests",
dprankefd1813272015-04-13 23:56:00403 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47404 "//ui/compositor:compositor_unittests",
405 ]
406
407 if (enable_extensions) {
408 deps += [ "//extensions/shell:app_shell" ]
409 }
410
411 if (enable_nacl) {
dprankefd1813272015-04-13 23:56:00412 deps += [ "//components/nacl:nacl_loader_unittests" ]
dprankedb5527d72015-03-08 04:22:47413 }
414
dprankefd1813272015-04-13 23:56:00415 if (enable_nacl && enable_remoting) {
416 deps += [ "//remoting:remoting_key_tester" ]
dprankedb5527d72015-03-08 04:22:47417 }
418
419 if (use_ash) {
420 deps += [
421 "//ash:ash_shell",
422 "//ash:ash_shell_unittests",
423 "//ash:ash_unittests",
424 ]
425 }
426
427 if (use_aura) {
428 deps += [
429 "//ui/aura:aura_unittests",
430 "//ui/aura:bench",
431 "//ui/aura:demo",
432 ]
433 }
dprankefd1813272015-04-13 23:56:00434 }
435
436 if (is_linux && !is_chromeos) {
437 deps += [
438 # TODO(GYP): Figure out which of these should (and can) build
439 # under which other conditions.
440 "//build/sanitizers:copy_llvm_symbolizer",
441 "//chrome/test:chrome_app_unittests",
442 "//cloud_print:cloud_print_unittests",
443 "//components/network_hints/browser",
dprankefd1813272015-04-13 23:56:00444 "//content/public/app:browser",
445 "//content/public/app:child",
446
447 # TODO(GYP): Remove this when the gles2 tests work
448 "//gpu/command_buffer/client:gles2_implementation_no_check",
449
450 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/471903 to make this complete.
451 "//media/cast:cast_benchmarks",
452 "//media/cast:tap_proxy",
jam00802992015-05-20 03:37:19453 "//mojo/application/public/cpp",
dprankefd1813272015-04-13 23:56:00454 "//skia:filter_fuzz_stub",
455 "//skia:image_operations_bench",
456 "//sync/tools:sync_client",
457 "//sync/tools:sync_listen_notifications",
458 "//testing/gmock:gmock_main",
459 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
460 "//tools/perf/clear_system_cache",
461 "//ui/keyboard:keyboard_unittests",
462 "//ui/message_center:message_center_unittests",
463 "//ui/snapshot:snapshot_unittests",
464 "//ui/views/examples:views_examples_with_content_exe",
465
466 # "//v8:v8_snapshot", # TODO(GYP): visibility?
467 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
468
469 "//third_party/codesighs:nm2tsv",
470 "//third_party/sqlite:sqlite_shell",
471 ]
472
473 if (current_toolchain == host_toolchain) {
474 # Do not build the breakpad utilities in cross-compiles.
475 deps += [
476 "//breakpad:dump_syms",
477 "//breakpad:microdump_stackwalk",
478 "//breakpad:minidump_dump",
479 "//breakpad:minidump_stackwalk",
480 ]
481 }
482
483 if (!is_debug && !is_component_build) {
484 deps += [ "//chrome/tools/service_discovery_sniffer" ]
485 }
486
487 if (toolkit_views) {
488 deps += [ "//ui/app_list:app_list_demo" ]
489 }
dprankedb5527d72015-03-08 04:22:47490
491 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44492 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59493 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44494 }
dprankedb5527d72015-03-08 04:22:47495 }
496 }
497
498 if (is_mac) {
499 deps += [
500 "//breakpad:crash_inspector",
501 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44502 "//third_party/apple_sample_code",
503 "//third_party/molokocacao",
504 ]
505
dprankee2ef3822015-02-24 21:42:18506 # TODO(GYP): Remove these when the targets below work and these
507 # are pulled in automatically.
508 deps += [
509 "//cc/blink",
510 "//components/ui/zoom:ui_zoom",
511 "//content",
512 "//content/test:test_support",
513 "//device/battery",
514 "//device/bluetooth",
515 "//device/nfc",
516 "//device/usb",
517 "//device/vibration",
518 "//media/blink",
519 "//pdf",
520 "//storage/browser",
521 "//third_party/brotli",
522 "//third_party/flac",
tfarinae4a03f8f2015-05-18 05:55:26523 "//third_party/hunspell",
dprankee2ef3822015-02-24 21:42:18524 "//third_party/iccjpeg",
525 "//third_party/libphonenumber",
526 "//third_party/ots",
527 "//third_party/qcms",
528 "//third_party/smhasher:murmurhash3",
529 "//third_party/speex",
530 "//third_party/webrtc/system_wrappers",
531 "//ui/native_theme",
532 "//ui/snapshot",
533 "//ui/surface",
534 ]
535
dprankecf8465db72014-11-10 23:51:22536 # TODO(dpranke): These are as-yet untriaged but need at least the above.
dpranke43760592014-11-08 02:59:57537 deps -= [
dprankee2ef3822015-02-24 21:42:18538 "//chrome", # TODO(GYP)
539 "//chrome/test:browser_tests", # TODO(GYP)
540 "//chrome/test:interactive_ui_tests", # TODO(GYP)
541 "//chrome/test:sync_integration_tests", # TODO(GYP)
542 "//chrome/test:unit_tests", # TODO(GYP)
dprankef6ca89c52015-03-30 22:01:38543 "//components:components_browsertests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18544 "//components:components_unittests", # TODO(GYP)
545 "//content/test:content_browsertests", # TODO(GYP)
546 "//content/test:content_perftests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18547 "//extensions:extensions_browsertests", # TODO(GYP)
548 "//extensions:extensions_unittests", # TODO(GYP)
549 "//net:net_unittests", # TODO(GYP)
tfarinacb2638b2015-05-12 03:24:15550
551 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
552 "//third_party/WebKit/Source/platform:heap_unittests",
553 "//third_party/WebKit/Source/platform:platform_unittests",
554 "//third_party/WebKit/Source/web:webkit_unit_tests",
dprankee2ef3822015-02-24 21:42:18555 "//ui/app_list:app_list_unittests", # TODO(GYP)
556 "//ui/gfx:gfx_unittests", # TODO(GYP)
dprankecf8465db72014-11-10 23:51:22557 ]
dprankefd1813272015-04-13 23:56:00558 }
559
560 if (is_win) {
561 deps += [
562 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43563 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00564 "//chrome_elf:chrome_elf_unittests",
565 "//chrome_elf:dll_hash_main",
dprankedb5a56c2015-04-29 18:01:09566 "//components/crash/tools:crash_service",
dprankefd1813272015-04-13 23:56:00567 "//components/wifi:wifi_test",
568 "//net:quic_client",
569 "//net:quic_server",
570 "//sandbox/win:pocdll",
571 "//sandbox/win:sandbox_poc",
572 "//sandbox/win:sbox_integration_tests",
573 "//sandbox/win:sbox_unittests",
574 "//sandbox/win:sbox_validation_tests",
575 "//testing/gtest:gtest_main",
576 "//third_party/codesighs:msmap2tsv",
577 "//third_party/pdfium/samples:pdfium_diff",
578 "//ui/metro_viewer",
579 ]
dprankee2ef3822015-02-24 21:42:18580 deps -= [
581 "//crypto:crypto_unittests", # TODO(GYP)
582 "//net:net_unittests", # TODO(GYP)
583 ]
dpranke6293d252015-04-14 19:12:00584 } else if (!is_android) {
585 deps += [ "//breakpad:symupload" ]
mohsenf837da7c2014-12-09 19:01:34586 }
hendrikw5c1da6d2015-06-18 15:08:57587
588 if (!is_ios) {
589 deps += [ "//gpu/skia_runner:skia_runner" ]
590 }
[email protected]f0e7ff882013-12-26 21:23:09591}
brettw533c50422015-02-26 17:49:16592
dpranked62d8512015-03-02 03:06:03593group("gn_only") {
dprankedb5527d72015-03-08 04:22:47594 testonly = true
595
dprankeddc174902015-04-29 01:38:35596 deps = [
bend8a7fac2015-05-05 18:30:59597 "//mandoline:all",
dprankeddc174902015-04-29 01:38:35598 ]
isherman0f89b43eb2015-04-11 00:02:45599
600 if (!is_android && !is_ios) {
601 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
602 }
603
dprankedb5527d72015-03-08 04:22:47604 if (is_linux && !is_chromeos) {
605 # TODO(GYP): Figure out if any of these should be in gn_all
606 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45607 deps += [
dprankedb5527d72015-03-08 04:22:47608 ":gn_mojo_targets",
609 "//chrome/browser/resources:extension_resource_demo",
610 "//chrome/installer/util:strings",
611 "//chrome:main_dll",
612 "//chrome/test:load_library_perf_tests",
613 "//chrome/tools/convert_dict",
614 "//components/constrained_window:unit_tests",
615 "//components/enhanced_bookmarks:test_support",
dprankedb5527d72015-03-08 04:22:47616 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45617 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47618 "//components/rappor:unit_tests",
619 "//components/sessions:unit_tests",
620 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47621 "//media/cast:udp_proxy",
622 "//native_client/src/trusted/platform_qualify:vcpuid",
623 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
624 "//storage/browser:dump_file_system",
625 "//third_party/angle:libANGLE",
626 "//third_party/angle:libEGL",
627 "//third_party/angle:libGLESv2",
628 "//third_party/cld_2:cld_2_dynamic_data_tool",
629 "//third_party/leveldatabase:leveldb_arena_test",
630 "//third_party/leveldatabase:leveldb_bloom_test",
631 "//third_party/leveldatabase:leveldb_db_test",
632 "//third_party/leveldatabase:leveldb_crc32c_test",
633 "//third_party/leveldatabase:leveldb_cache_test",
634 "//third_party/leveldatabase:leveldb_env_test",
635 "//third_party/leveldatabase:leveldb_write_batch_test",
636 "//third_party/leveldatabase:leveldb_filter_block_test",
637 "//third_party/leveldatabase:leveldb_version_edit_test",
638 "//third_party/leveldatabase:leveldb_db_bench",
639 "//third_party/leveldatabase:leveldb_log_test",
640 "//third_party/leveldatabase:leveldb_corruption_test",
641 "//third_party/leveldatabase:leveldb_table_test",
642 "//third_party/leveldatabase:leveldb_skiplist_test",
643 "//third_party/leveldatabase:leveldb_filename_test",
644 "//third_party/leveldatabase:leveldb_dbformat_test",
645 "//third_party/pdfium/third_party:freetype",
646 "//third_party/libjingle:peerconnnection_server",
647 "//third_party/libjpeg_turbo:simd",
dprankedb5527d72015-03-08 04:22:47648 "//third_party/libsrtp:replay_driver",
649 "//third_party/libsrtp:roc_driver",
650 "//third_party/libsrtp:rtpw",
651 "//third_party/libsrtp:rdbx_driver",
652 "//third_party/libsrtp:srtp_driver",
653 "//third_party/libsrtp:srtp_driver",
654 "//third_party/libsrtp:srtp_test_kernel_driver",
655 "//third_party/libsrtp:srtp_test_cipher_driver",
656 "//third_party/libsrtp:srtp_test_datatypes_driver",
657 "//third_party/libsrtp:srtp_test_aes_calc",
658 "//third_party/libsrtp:srtp_test_env",
659 "//third_party/libsrtp:srtp_test_rand_gen",
660 "//third_party/libsrtp:srtp_test_sha1_driver",
661 "//third_party/libsrtp:srtp_test_stat_driver",
662 "//third_party/opus:opus_compare",
663 "//third_party/opus:opus_demo",
664 "//third_party/opus:test_opus_decode",
665 "//third_party/opus:test_opus_encode",
666 "//third_party/opus:test_opus_api",
667 "//third_party/opus:test_opus_padding",
668 "//third_party/webrtc/system_wrappers:field_trial_default",
669 "//third_party/webrtc/system_wrappers:metrics_default",
670 "//ui/display/types",
671 "//ui/shell_dialogs:shell_dialogs_unittests",
672 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47673 ]
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16674 if (target_cpu == "x86" || target_cpu == "x64") {
675 deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
676 }
dprankedb5527d72015-03-08 04:22:47677 if (enable_nacl) {
678 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
679 }
680 if (use_ozone) {
681 deps += [ "//ui/ozone/demo" ]
682 }
683 if (is_android) {
684 deps += [ "//build/android/gyp/test:hello_world" ]
685 }
dpranke807f602b2015-03-17 23:20:56686
687 if (is_linux && current_toolchain == host_toolchain) {
688 deps += [ "//v8:d8" ]
689 }
dprankedb5527d72015-03-08 04:22:47690 }
691}
692
693group("gn_mojo_targets") {
694 testonly = true
695 if (is_linux && !is_chromeos) {
696 # TODO(GYP): Figure out if any of these should be in gn_all
697 # and figure out how cross-platform they are
698 deps = [
699 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47700 "//content/public/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47701 "//content/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47702 "//content/test:web_ui_test_mojo_bindings_python",
703 "//device/battery:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47704 "//device/vibration:mojo_bindings_python",
705 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47706 "//ipc/mojo:client_channel_python",
dprankedb5527d72015-03-08 04:22:47707 "//media/mojo/interfaces:interfaces_python",
708 "//media/mojo/services:cdm_service",
709 "//media/mojo:tests",
msw1bb9c6c2015-05-06 21:35:44710 "//mojo:tests",
dprankedb5527d72015-03-08 04:22:47711 "//net/interfaces:interfaces_python",
712 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47713 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
714 "//third_party/mojo/src/mojo/public/python:packaged_application",
715 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
dprankedb5527d72015-03-08 04:22:47716 "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
dprankedb5527d72015-03-08 04:22:47717 ]
dprankedb5527d72015-03-08 04:22:47718 }
719}
720
721group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03722 deps = [
dprankeb6128d02015-05-01 16:40:30723 "//build/config/sanitizers:options_sources",
724
dprankedb5527d72015-03-08 04:22:47725 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
726 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30727
728 "//ui/resources:repack_ui_test_mac_locale_pack",
729
dprankedb5527d72015-03-08 04:22:47730 # "//v8:v8_snapshot", # TODO(GYP): visibility?
731 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
dpranked62d8512015-03-02 03:06:03732 ]
733}
734
tfarinacb2638b2015-05-12 03:24:15735if (!is_ios) {
736 # This group includes all of the targets needed to build and test Blink,
737 # including running the layout tests (see below).
738 group("blink_tests") {
739 testonly = true
740
741 deps = [
742 "//third_party/WebKit/public:all_blink",
743 ]
744
745 # NOTE: The following deps are needed to run the layout tests
746 # (run-webkit-tests) but there is no GN target for the layout tests,
747 # so we need to specify the dependencies here instead.
748 if (is_android) {
749 deps += [
750 "//breakpad:dump_syms($host_toolchain)",
751 "//breakpad:minidump_stackwalk($host_toolchain)",
752 "//content/shell/android:content_shell_apk",
ojan94989c72015-07-17 21:56:42753 "//tools/imagediff($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15754 ]
755 } else {
ojan94989c72015-07-17 21:56:42756 deps += [
757 "//content/shell:content_shell",
758 "//tools/imagediff",
759 ]
tfarinacb2638b2015-05-12 03:24:15760 }
761
762 if (is_win) {
763 deps += [
jochen73e711c2015-06-03 10:01:46764 "//components/test_runner:layout_test_helper",
tfarina795e01a2015-05-15 19:29:57765 "//content/shell:crash_service",
tfarinacb2638b2015-05-12 03:24:15766 ]
767 }
768
769 if (!is_win && !is_android) {
Gordana.Cmiljanovicf243e9a2015-05-26 22:14:47770 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:15771 }
772
773 if (is_mac) {
774 deps += [
775 "//breakpad:dump_syms($host_toolchain)",
jochen73e711c2015-06-03 10:01:46776 "//components/test_runner:layout_test_helper",
tfarinacb2638b2015-05-12 03:24:15777 ]
778 }
779
780 if (is_linux) {
781 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
782 }
783 }
784}
785
brettw533c50422015-02-26 17:49:16786if (is_linux) {
787 # This group corresponds to the list of tests run on the waterfall for
788 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
789 # here to help track GYP -> GN conversion progress.
790 group("linux_default_tests") {
791 testonly = true
792 deps = [
brettw533c50422015-02-26 17:49:16793 "//base:base_unittests", # PASSES (*) 2/25/2015
794 "//cc:cc_unittests", # PASSES 2/25/2015
795 "//chrome/test:browser_tests",
796 "//chrome/test:interactive_ui_tests",
brettw922d3aa2015-02-27 22:15:46797 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GYP.
brettw533c50422015-02-26 17:49:16798 "//chrome/test:unit_tests", # PASSES 2/25/2015
brettw922d3aa2015-02-27 22:15:46799 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54800 "//components:components_browsertests", # PASSES 4/17/2015
brettw77b58722015-02-27 23:35:06801 "//components:components_unittests", # PASSES 2/27/2015
brettw533c50422015-02-26 17:49:16802 "//content/test:content_browsertests",
803 "//content/test:content_unittests", # PASSES 2/25/2015
804 "//crypto:crypto_unittests", # PASSES 2/25/2015
805 "//dbus:dbus_unittests", # PASSES 2/25/2015
tfarina466754f2015-03-09 23:39:29806 "//device:device_unittests", # PASSES 3/07/2015
brettw533c50422015-02-26 17:49:16807 "//extensions:extensions_browsertests", # PASSES 2/25/2015
808 "//extensions:extensions_unittests", # PASSES 2/25/2015
809 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
810 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
811 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
812 "//gpu:gpu_unittests", # PASSES 2/25/2015
813 "//ipc:ipc_tests", # PASSES 2/25/2015
814 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
815 "//jingle:jingle_unittests", # PASSES 2/25/2015
aboxhall60006f22015-04-22 18:27:55816 "//media:media_unittests", # PASSES 3/3/2015
toyoshimc64757792015-04-30 14:52:02817 "//media/cast:cast_unittests", # PASSES 2/25/2015
818 "//media/midi:midi_unittests", # PASSES 4/10/2015
brettw533c50422015-02-26 17:49:16819 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
820 "//net:net_unittests", # PASSES 2/25/2015
brettw31f4de692015-03-04 17:24:45821 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
brettw533c50422015-02-26 17:49:16822 "//printing:printing_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02823 "//remoting:remoting_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16824 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
825 "//skia:skia_unittests", # PASSES 2/25/2015
826 "//sql:sql_unittests", # PASSES 2/25/2015
827 "//sync:sync_unit_tests", # PASSES 2/25/2015
828 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015
829 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
830 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
831 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
832 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54833 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
brettw533c50422015-02-26 17:49:16834 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
835 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
836 "//ui/aura:aura_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02837 "//ui/base:ui_base_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16838 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
839 "//ui/display:display_unittests", # PASSES 2/25/2015
840 "//ui/events:events_unittests", # PASSES 2/25/2015
841 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
dyen781489a2015-05-05 21:40:56842 "//ui/gl:gl_unittests",
brettw533c50422015-02-26 17:49:16843 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
844 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
845 "//ui/wm:wm_unittests", # PASSES 2/25/2015
846 "//url:url_unittests", # PASSES 2/25/2015
847
848 # Note:
849 # (*) Fails but failures match GYP build at time of testing.
850 ]
tfarina47830e342015-03-30 23:02:11851
852 if (enable_nacl) {
853 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015
854 }
brettw533c50422015-02-26 17:49:16855 }
brettw690c96672015-04-21 16:19:54856} else if (is_win) {
857 group("windows_default_tests") {
858 testonly = true
859 deps = [
860 "//ash:ash_unittests", # FAILS 4/20/2015
brettw9a19ddb2015-04-24 19:30:50861 "//base:base_unittests", # PASSES 4/20/2015
brettw690c96672015-04-21 16:19:54862 "//cc:cc_unittests", # PASSES 4/17/2015
863 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
brettweb1f7ac2015-05-01 17:43:01864 "//chrome/installer/util:installer_util_unittests",
grt734e87b2015-07-06 19:36:43865 "//chrome/installer/setup:setup_unittests",
brettw690c96672015-04-21 16:19:54866 "//chrome/test:browser_tests",
867 "//chrome/test:interactive_ui_tests",
868 "//chrome/test:sync_integration_tests", # Note: need to turn off incremental linking for debug.
869 "//chrome/test:unit_tests",
870 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
brettweb1f7ac2015-05-01 17:43:01871 "//components:components_browsertests", # PASSES 4/24/2015
brettw690c96672015-04-21 16:19:54872 "//components:components_unittests", # PASSES 4/17/2015
873 "//courgette:courgette_unittests", # PASSES 4/20/2015
874 "//content/test:content_browsertests",
875 "//content/test:content_unittests", # PASSES 4/17/2015
876 "//crypto:crypto_unittests", # PASSES 4/17/2015
877 "//device:device_unittests", # PASSES 4/17/2015
878 "//extensions:extensions_browsertests", # PASSES 4/17/2015
879 "//extensions:extensions_unittests", # PASSES 4/17/2015
880 "//extensions/shell:app_shell_unittests", # Doesn't compile in 64-bit
881 "//google_apis/gcm:gcm_unit_tests", # PASSES 4/17/2015
882 "//google_apis:google_apis_unittests", # PASSES 4/17/2015
883 "//gpu:gpu_unittests", # PASSES 4/17/2015
884 "//ipc:ipc_tests", # PASSES 4/17/2015
885 "//ipc/mojo:ipc_mojo_unittests", # PASSES 4/17/2015
886 "//jingle:jingle_unittests", # PASSES 4/17/2015
887 "//media/cast:cast_unittests", # PASSES 4/17/2015
888 "//media:media_unittests", # PASSES 4/17/2015
889 "//mojo/common:mojo_common_unittests", # PASSES 4/17/2015
890 "//net:net_unittests", # PASSES 4/17/2015
891 "//ppapi:ppapi_unittests", # PASSES 4/17/2015
892 "//printing:printing_unittests", # PASSES 4/17/2015
893 "//remoting:remoting_unittests", # PASSES 4/17/2015
894 "//sandbox/win:sbox_integration_tests", # PASSES 4/20/2015
895 "//sandbox/win:sbox_unittests", # PASSES 4/20/2015
896 "//sandbox/win:sbox_validation_tests", # PASSES 4/20/2015
897 "//skia:skia_unittests", # PASSES 4/17/2015
898 "//sql:sql_unittests", # PASSES 4/17/2015
899 "//sync:sync_unit_tests", # PASSES 4/20/2015
900 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 4/20/2015
901 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # Seems to hang?
902 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # FAILS
903 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 4/20/2015
904 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 4/20/2015
905 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", # PASSES 4/20/2015
906 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015
907 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015
908 "//ui/aura:aura_unittests", # PASSES 4/17/2015
909 "//ui/base:ui_base_unittests", # PASSES 4/20/2015
910 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015
911 "//ui/display:display_unittests", # PASSES 4/20/2015
912 "//ui/events:events_unittests", # PASSES 4/20/2015
913 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015
dyen781489a2015-05-05 21:40:56914 "//ui/gl:gl_unittests",
brettw690c96672015-04-21 16:19:54915 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015
916 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015
brettw2a647722015-04-24 21:51:42917 "//ui/views:views_unittests", # TooltipControllerTest failures
918 "//ui/wm:wm_unittests", # PASSES 4/21/2015
brettw690c96672015-04-21 16:19:54919 "//url:url_unittests", # PASSES 4/17/2015
920
brettw690c96672015-04-21 16:19:54921 # TODO(GYP) nacl_integration
922 # TODO(GYP) telemetry_perf_unittests
923 # TODO(GYP) telemetry_unittests
924 ]
925 }
brettw533c50422015-02-26 17:49:16926}