blob: a899d4f449e8cedc4c5b132657915f6a4b7eda30 [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
dprankeddc174902015-04-29 01:38:3566 deps = [
dprankee2ef3822015-02-24 21:42:1867 "//base:base_unittests",
dprankee2ef3822015-02-24 21:42:1868 ]
sherouk53f0f1a2015-08-03 15:59:3569 if (!is_ios) {
70 deps += [
71 "//cc:cc_unittests",
72 "//chrome",
73 "//chrome/test:browser_tests",
74 "//chrome/test:interactive_ui_tests",
75 "//chrome/test:sync_integration_tests",
76 "//chrome/test:unit_tests",
77 "//chrome/test/chromedriver:chromedriver_unittests",
78 "//components:components_browsertests",
79 "//components:components_unittests",
80 "//content/shell:content_shell",
81 "//content/test:content_browsertests",
82 "//content/test:content_perftests",
83 "//content/test:content_unittests",
84 "//crypto:crypto_unittests",
85 "//device:device_unittests",
86 "//extensions:extensions_browsertests",
87 "//extensions:extensions_unittests",
88 "//google_apis/gcm:gcm_unit_tests",
89 "//gpu:gpu_unittests",
90 "//ipc:ipc_tests",
91 "//ipc/mojo:ipc_mojo_unittests",
92 "//jingle:jingle_unittests",
93 "//media:media_unittests",
94 "//media/cast:cast_unittests",
95 "//media/midi:midi_unittests",
96 "//mojo",
97 "//mojo/application/public/cpp",
98 "//mojo/common:mojo_common_unittests",
99 "//net:hpack_example_generator",
100 "//net:hpack_fuzz_mutator",
101 "//net:hpack_fuzz_wrapper",
102 "//net:net_perftests",
103 "//net:net_unittests",
104 "//ppapi:ppapi_unittests",
105 "//ppapi/examples/2d",
106 "//ppapi/examples/audio",
107 "//ppapi/examples/audio_input",
108 "//ppapi/examples/compositor",
109 "//ppapi/examples/crxfs",
110 "//ppapi/examples/enumerate_devices",
111 "//ppapi/examples/file_chooser",
112 "//ppapi/examples/flash_topmost",
113 "//ppapi/examples/font",
114 "//ppapi/examples/gamepad",
115 "//ppapi/examples/gles2",
116 "//ppapi/examples/gles2_spinning_cube",
117 "//ppapi/examples/ime",
118 "//ppapi/examples/input",
119 "//ppapi/examples/media_stream_audio",
120 "//ppapi/examples/media_stream_video",
121 "//ppapi/examples/mouse_cursor",
122 "//ppapi/examples/mouse_lock",
123 "//ppapi/examples/printing",
124 "//ppapi/examples/scaling",
125 "//ppapi/examples/scripting",
126 "//ppapi/examples/stub",
127 "//ppapi/examples/threading",
128 "//ppapi/examples/url_loader",
129 "//ppapi/examples/video_capture",
130 "//ppapi/examples/video_decode",
131 "//ppapi/examples/video_effects",
132 "//ppapi/examples/video_encode",
133 "//printing:printing_unittests",
134 "//skia:skia_unittests",
135 "//sql:sql_unittests",
136 "//sync:sync_unit_tests",
137 "//third_party/WebKit/Source/platform:heap_unittests",
138 "//third_party/WebKit/Source/platform:platform_unittests",
139 "//third_party/WebKit/Source/web:webkit_unit_tests",
140 "//third_party/WebKit/Source/wtf:wtf_unittests",
141 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
142 "//third_party/codesighs",
143 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
144 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
145 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
146 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
147 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
148 "//third_party/pdfium/samples:pdfium_test",
149 "//third_party/smhasher:pmurhash",
150 "//tools/imagediff($host_toolchain)",
151 "//tools/gn",
152 "//tools/gn:gn_unittests",
153 "//tools/gn:generate_test_gn_data",
154 "//tools/telemetry:bitmaptools($host_toolchain)",
155 "//ui/accessibility:accessibility_unittests",
156 "//ui/app_list:app_list_unittests",
157 "//ui/base:ui_base_unittests",
158 "//ui/display:display_unittests",
159 "//ui/events:events_unittests",
160 "//ui/gfx:gfx_unittests",
161 "//ui/gl:gl_unittests",
162 "//ui/touch_selection:ui_touch_selection_unittests",
163 "//url:url_unittests",
164 ]
165 }
dprankee2ef3822015-02-24 21:42:18166
scottmg34fb7e52014-12-03 23:27:24167 deps += root_extra_deps
[email protected]fce5c3fe2014-04-10 21:13:05168
dpranke021d4c92015-02-24 02:08:25169 if (enable_extensions && !is_mac) {
dprankefd1813272015-04-13 23:56:00170 # TODO(GYP): Get this working on the mac?
rockot2f1326e2015-02-23 23:53:51171 deps += [ "//extensions/shell:app_shell_unittests" ]
172 }
173
dprankefd1813272015-04-13 23:56:00174 if (enable_media_router) {
imchengb6b09239f2015-05-15 21:41:55175 deps += [ "//chrome/browser/media/router" ]
dprankefd1813272015-04-13 23:56:00176 }
177
garykac3eddb5b2015-04-17 23:16:38178 if (enable_remoting) {
179 deps += [ "//remoting:remoting_all" ]
dprankece5eb832015-04-01 20:21:05180 }
181
dprankee2ef3822015-02-24 21:42:18182 if (toolkit_views) {
183 deps += [ "//ui/views:views_unittests" ]
James Robinson060f2e32014-09-10 22:31:37184 }
185
dprankee2ef3822015-02-24 21:42:18186 if (use_aura) {
187 deps += [ "//ui/wm:wm_unittests" ]
188 }
189
190 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47191 deps += [ "//ui/ozone" ]
[email protected]a306aaa2014-05-24 13:21:50192 }
193
dprankefd1813272015-04-13 23:56:00194 if (use_x11) {
195 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22196 }
197
tmoniuszkoe5578b922015-04-14 09:38:03198 if (enable_configuration_policy) {
199 deps += [ "//components/policy:policy_templates" ]
200 }
201
dprankefd1813272015-04-13 23:56:00202 if (v8_use_external_startup_data) {
203 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
[email protected]2d6893a2014-06-02 19:16:36204 }
205
brettw66e3feab2015-07-20 23:52:22206 if (is_win) {
207 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
208 }
209
[email protected]5a8d5162014-04-12 01:19:16210 if (is_android) {
[email protected]26046b52014-07-16 00:11:03211 deps += [
cjhopman31511332014-10-23 01:05:02212 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38213 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02214 "//build/android/rezip",
yfriedmanc1995be82015-05-29 17:52:25215 "//chrome/android:chrome_public_apk",
216 "//chrome/android:chrome_public_test_apk",
hiroshigee6d374c2015-02-24 07:54:06217 "//chrome/android:chrome_shell_apk",
hiroshigee6d374c2015-02-24 07:54:06218 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
agrieve40ba6862015-07-15 02:09:05219 "//third_party/errorprone:chromium_errorprone",
dprankee2ef3822015-02-24 21:42:18220 "//tools/imagediff($host_toolchain)",
221
222 # TODO(GYP): Remove these when the components_unittests work.
223 "//components/history/core/test:test",
224 "//components/policy:policy_component_test_support",
225 "//components/policy:test_support",
226 "//components/rappor:test_support",
227 "//components/signin/core/browser:test_support",
228 "//components/sync_driver:test_support",
229 "//components/user_manager",
230 "//components/wallpaper",
231 "//content/shell/android:content_shell_apk",
232
233 # TODO(GYP): Are these needed, or will they be pulled in automatically?
[email protected]684b2292014-08-22 19:12:39234 "//third_party/android_tools:android_gcm_java",
235 "//third_party/android_tools:uiautomator_java",
236 "//third_party/android_tools:android_support_v13_java",
237 "//third_party/android_tools:android_support_v7_appcompat_java",
238 "//third_party/android_tools:android_support_v7_mediarouter_java",
dprankee2ef3822015-02-24 21:42:18239 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29240 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18241 "//third_party/openmax_dl/dl",
dprankee2ef3822015-02-24 21:42:18242 "//ui/android:ui_java",
243
244 # TODO(GYP): Are these needed?
245 "//chrome/test:test_support_unit",
246 "//third_party/smhasher:murmurhash3",
247 "//ui/message_center:test_support",
248 ]
249 deps -= [
dprankee2ef3822015-02-24 21:42:18250 "//chrome", # TODO(GYP) ??
251 "//chrome/test:browser_tests", # TODO(GYP) ??
252 "//chrome/test:interactive_ui_tests", # TODO(GYP) ??
253 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
254 "//chrome/test:unit_tests", # TODO(GYP)
brettw922d3aa2015-02-27 22:15:46255
256 # Chromedriver shouldn't be compiled on Android.
257 "//chrome/test/chromedriver:chromedriver_unittests",
dprankee2ef3822015-02-24 21:42:18258 "//extensions:extensions_browsertests",
259 "//extensions:extensions_unittests",
260 "//google_apis/gcm:gcm_unit_tests",
261 "//ipc:ipc_tests", # TODO(GYP) ??
262 "//jingle:jingle_unittests", # TODO(GYP) ??
rockot9c67e5f2015-03-12 20:01:21263 "//net:hpack_example_generator",
264 "//net:hpack_fuzz_mutator",
265 "//net:hpack_fuzz_wrapper",
266 "//net:net_perftests",
tfarina79ef072d2015-04-04 20:16:57267 "//ppapi/examples/2d",
268 "//ppapi/examples/audio",
269 "//ppapi/examples/audio_input",
270 "//ppapi/examples/compositor",
271 "//ppapi/examples/crxfs",
272 "//ppapi/examples/enumerate_devices",
273 "//ppapi/examples/file_chooser",
274 "//ppapi/examples/flash_topmost",
275 "//ppapi/examples/font",
276 "//ppapi/examples/gamepad",
277 "//ppapi/examples/gles2",
278 "//ppapi/examples/gles2_spinning_cube",
279 "//ppapi/examples/ime",
280 "//ppapi/examples/input",
281 "//ppapi/examples/media_stream_audio",
282 "//ppapi/examples/media_stream_video",
283 "//ppapi/examples/mouse_cursor",
284 "//ppapi/examples/mouse_lock",
285 "//ppapi/examples/printing",
286 "//ppapi/examples/scaling",
287 "//ppapi/examples/scripting",
288 "//ppapi/examples/stub",
289 "//ppapi/examples/threading",
290 "//ppapi/examples/url_loader",
291 "//ppapi/examples/video_capture",
292 "//ppapi/examples/video_decode",
293 "//ppapi/examples/video_effects",
294 "//ppapi/examples/video_encode",
dprankee2ef3822015-02-24 21:42:18295 "//third_party/pdfium/samples:pdfium_test",
296 "//tools/gn",
dprankefd1813272015-04-13 23:56:00297 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18298 "//tools/gn:gn_unittests",
299 "//ui/app_list:app_list_unittests",
300 "//url:url_unittests",
[email protected]26046b52014-07-16 00:11:03301 ]
302
cjhopmanca675d3e2014-10-24 03:50:45303 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18304 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45305 }
dprankedb5527d72015-03-08 04:22:47306 }
307
dprankefd1813272015-04-13 23:56:00308 if (is_linux) { # TODO(GYP): || is_android || is_bsd?
309 deps += [
310 "//breakpad:core-2-minidump",
311 "//breakpad:minidump-2-core",
312 ]
313 }
314
dpranke6293d252015-04-14 19:12:00315 if (is_chromeos) {
316 deps += [
317 "//chromeos:chromeos_unittests",
318 "//ui/chromeos:ui_chromeos_unittests",
319 ]
320 }
321
dprankefd1813272015-04-13 23:56:00322 if (is_chromeos || is_mac || is_win) {
323 deps += [
324 "//rlz:rlz_id",
325 "//rlz:rlz_lib",
326 "//rlz:rlz_unittests",
327 ]
328 }
329
dprankedb5527d72015-03-08 04:22:47330 if (is_linux) {
331 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06332 deps += [
dprankedb5527d72015-03-08 04:22:47333 "//breakpad:breakpad_unittests",
dprankedb5527d72015-03-08 04:22:47334 "//breakpad:generate_test_dump",
dprankedb5527d72015-03-08 04:22:47335 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18336 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47337 "//net:disk_cache_memory_test",
338 "//net:flip_in_mem_edsm_server",
339 "//net:flip_in_mem_edsm_server_unittests",
340 "//net:quic_client",
341 "//net:quic_server",
342 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18343 "//sandbox/linux:sandbox_linux_unittests",
dprankedb5527d72015-03-08 04:22:47344 "//sandbox/linux:sandbox_linux_jni_unittests",
hiroshigee6d374c2015-02-24 07:54:06345 ]
dnicoara8c6aa8e2015-03-11 23:20:32346
347 if (is_chromeos || use_ash) {
348 deps += [ "//components/session_manager/core" ]
349 }
dprankedb5527d72015-03-08 04:22:47350 }
351
dprankefd1813272015-04-13 23:56:00352 if (is_win || (is_linux && !is_chromeos)) {
353 # TODO(GYP): Figure out which of these should (and can) build
354 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44355 deps += [
dprankedb5527d72015-03-08 04:22:47356 "//base:base_perftests",
357 "//base:base_i18n_perftests",
358 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47359 "//base:build_utf8_validator_tables",
dprankedb5527d72015-03-08 04:22:47360 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00361 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47362 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00363 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47364 "//chrome/test:sync_performance_tests",
365 "//chrome/test/chromedriver:chromedriver",
366 "//chrome/test/chromedriver:chromedriver_tests",
367 "//chrome/tools/profile_reset:jtl_compiler",
368 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47369 "//content/test:content_gl_tests",
370 "//content/test:content_gl_benchmark",
371 "//courgette:courgette",
372 "//courgette:courgette_fuzz",
373 "//courgette:courgette_minimal_tool",
374 "//courgette:courgette_unittests",
375 "//device:device_unittests",
376 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47377 "//gin:gin_unittests",
378 "//google_apis:google_apis_unittests",
379 "//google_apis/gcm:mcs_probe",
380 "//gpu:angle_unittests",
dprankedb5527d72015-03-08 04:22:47381 "//gpu:gpu_perftests",
dprankefd1813272015-04-13 23:56:00382 "//gpu:gl_tests",
dprankedb5527d72015-03-08 04:22:47383 "//ipc:ipc_perftests",
384 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional on media_use_ffmpeg
385 "//media:media_perftests",
dprankedb5527d72015-03-08 04:22:47386 "//media/cast:generate_barcode_video",
387 "//media/cast:generate_timecode_audio",
dprankedb5527d72015-03-08 04:22:47388 "//net:crash_cache",
389 "//net:crl_set_dump",
390 "//net:dns_fuzz_stub",
dprankefd1813272015-04-13 23:56:00391 "//net:dump_cache",
dprankedb5527d72015-03-08 04:22:47392 "//net:gdig",
393 "//net:get_server_time",
dprankedb5527d72015-03-08 04:22:47394 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
dprankefd1813272015-04-13 23:56:00395 "//net:run_testserver",
dprankedb5527d72015-03-08 04:22:47396 "//net:stress_cache",
397 "//net:tld_cleanup",
dprankec09ccaa2015-03-27 22:00:38398 "//ppapi:pepper_hash_for_uma",
dprankefd1813272015-04-13 23:56:00399 "//ppapi:ppapi_perftests",
dprankedb5527d72015-03-08 04:22:47400 "//sync:run_sync_testserver",
dprankedb5527d72015-03-08 04:22:47401 "//third_party/codesighs:maptsvdifftool",
dprankedb5527d72015-03-08 04:22:47402 "//third_party/leveldatabase:env_chromium_unittests",
403 "//third_party/libaddressinput:libaddressinput_unittests",
dprankefd1813272015-04-13 23:56:00404 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47405 "//ui/compositor:compositor_unittests",
406 ]
407
408 if (enable_extensions) {
409 deps += [ "//extensions/shell:app_shell" ]
410 }
411
412 if (enable_nacl) {
dprankefd1813272015-04-13 23:56:00413 deps += [ "//components/nacl:nacl_loader_unittests" ]
dprankedb5527d72015-03-08 04:22:47414 }
415
dprankefd1813272015-04-13 23:56:00416 if (enable_nacl && enable_remoting) {
417 deps += [ "//remoting:remoting_key_tester" ]
dprankedb5527d72015-03-08 04:22:47418 }
419
420 if (use_ash) {
421 deps += [
422 "//ash:ash_shell",
dprankedb5527d72015-03-08 04:22:47423 "//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",
dprankee2ef3822015-02-24 21:42:18529 "//third_party/webrtc/system_wrappers",
530 "//ui/native_theme",
531 "//ui/snapshot",
532 "//ui/surface",
533 ]
534
dprankecf8465db72014-11-10 23:51:22535 # TODO(dpranke): These are as-yet untriaged but need at least the above.
dpranke43760592014-11-08 02:59:57536 deps -= [
dprankee2ef3822015-02-24 21:42:18537 "//chrome", # TODO(GYP)
538 "//chrome/test:browser_tests", # TODO(GYP)
539 "//chrome/test:interactive_ui_tests", # TODO(GYP)
540 "//chrome/test:sync_integration_tests", # TODO(GYP)
541 "//chrome/test:unit_tests", # TODO(GYP)
dprankef6ca89c52015-03-30 22:01:38542 "//components:components_browsertests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18543 "//components:components_unittests", # TODO(GYP)
544 "//content/test:content_browsertests", # TODO(GYP)
545 "//content/test:content_perftests", # TODO(GYP)
dprankeb0713542015-07-31 21:07:21546 "//device:device_unittests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18547 "//extensions:extensions_browsertests", # TODO(GYP)
548 "//extensions:extensions_unittests", # TODO(GYP)
dprankeb0713542015-07-31 21:07:21549 "//mojo", # TODO(GYP)
550 "//mojo/application/public/cpp", # TODO(GYP)
tfarinacb2638b2015-05-12 03:24:15551
552 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
553 "//third_party/WebKit/Source/platform:heap_unittests",
554 "//third_party/WebKit/Source/platform:platform_unittests",
555 "//third_party/WebKit/Source/web:webkit_unit_tests",
dprankee2ef3822015-02-24 21:42:18556 "//ui/app_list:app_list_unittests", # TODO(GYP)
557 "//ui/gfx:gfx_unittests", # TODO(GYP)
dprankecf8465db72014-11-10 23:51:22558 ]
dprankefd1813272015-04-13 23:56:00559 }
560
561 if (is_win) {
562 deps += [
563 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43564 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00565 "//chrome_elf:chrome_elf_unittests",
566 "//chrome_elf:dll_hash_main",
dprankedb5a56c2015-04-29 18:01:09567 "//components/crash/tools:crash_service",
dprankefd1813272015-04-13 23:56:00568 "//components/wifi:wifi_test",
569 "//net:quic_client",
570 "//net:quic_server",
571 "//sandbox/win:pocdll",
572 "//sandbox/win:sandbox_poc",
573 "//sandbox/win:sbox_integration_tests",
574 "//sandbox/win:sbox_unittests",
575 "//sandbox/win:sbox_validation_tests",
576 "//testing/gtest:gtest_main",
577 "//third_party/codesighs:msmap2tsv",
578 "//third_party/pdfium/samples:pdfium_diff",
579 "//ui/metro_viewer",
580 ]
dprankee2ef3822015-02-24 21:42:18581 deps -= [
582 "//crypto:crypto_unittests", # TODO(GYP)
583 "//net:net_unittests", # TODO(GYP)
584 ]
sherouk53f0f1a2015-08-03 15:59:35585 } else if (!is_android && !is_ios) {
dpranke6293d252015-04-14 19:12:00586 deps += [ "//breakpad:symupload" ]
mohsenf837da7c2014-12-09 19:01:34587 }
hendrikw5c1da6d2015-06-18 15:08:57588
589 if (!is_ios) {
590 deps += [ "//gpu/skia_runner:skia_runner" ]
591 }
[email protected]f0e7ff882013-12-26 21:23:09592}
brettw533c50422015-02-26 17:49:16593
dpranked62d8512015-03-02 03:06:03594group("gn_only") {
dprankedb5527d72015-03-08 04:22:47595 testonly = true
596
sherouk53f0f1a2015-08-03 15:59:35597 if (!is_ios) {
598 deps = [
599 "//mandoline:all",
600 ]
601 }
isherman0f89b43eb2015-04-11 00:02:45602
603 if (!is_android && !is_ios) {
604 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
605 }
606
dprankedb5527d72015-03-08 04:22:47607 if (is_linux && !is_chromeos) {
608 # TODO(GYP): Figure out if any of these should be in gn_all
609 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45610 deps += [
dprankedb5527d72015-03-08 04:22:47611 ":gn_mojo_targets",
612 "//chrome/browser/resources:extension_resource_demo",
613 "//chrome/installer/util:strings",
614 "//chrome:main_dll",
615 "//chrome/test:load_library_perf_tests",
616 "//chrome/tools/convert_dict",
617 "//components/constrained_window:unit_tests",
618 "//components/enhanced_bookmarks:test_support",
dprankedb5527d72015-03-08 04:22:47619 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45620 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47621 "//components/rappor:unit_tests",
622 "//components/sessions:unit_tests",
623 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47624 "//media/cast:udp_proxy",
625 "//native_client/src/trusted/platform_qualify:vcpuid",
626 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
627 "//storage/browser:dump_file_system",
628 "//third_party/angle:libANGLE",
629 "//third_party/angle:libEGL",
630 "//third_party/angle:libGLESv2",
631 "//third_party/cld_2:cld_2_dynamic_data_tool",
632 "//third_party/leveldatabase:leveldb_arena_test",
633 "//third_party/leveldatabase:leveldb_bloom_test",
634 "//third_party/leveldatabase:leveldb_db_test",
635 "//third_party/leveldatabase:leveldb_crc32c_test",
636 "//third_party/leveldatabase:leveldb_cache_test",
637 "//third_party/leveldatabase:leveldb_env_test",
638 "//third_party/leveldatabase:leveldb_write_batch_test",
639 "//third_party/leveldatabase:leveldb_filter_block_test",
640 "//third_party/leveldatabase:leveldb_version_edit_test",
641 "//third_party/leveldatabase:leveldb_db_bench",
642 "//third_party/leveldatabase:leveldb_log_test",
643 "//third_party/leveldatabase:leveldb_corruption_test",
644 "//third_party/leveldatabase:leveldb_table_test",
645 "//third_party/leveldatabase:leveldb_skiplist_test",
646 "//third_party/leveldatabase:leveldb_filename_test",
647 "//third_party/leveldatabase:leveldb_dbformat_test",
648 "//third_party/pdfium/third_party:freetype",
649 "//third_party/libjingle:peerconnnection_server",
650 "//third_party/libjpeg_turbo:simd",
dprankedb5527d72015-03-08 04:22:47651 "//third_party/libsrtp:replay_driver",
652 "//third_party/libsrtp:roc_driver",
653 "//third_party/libsrtp:rtpw",
654 "//third_party/libsrtp:rdbx_driver",
655 "//third_party/libsrtp:srtp_driver",
656 "//third_party/libsrtp:srtp_driver",
657 "//third_party/libsrtp:srtp_test_kernel_driver",
658 "//third_party/libsrtp:srtp_test_cipher_driver",
659 "//third_party/libsrtp:srtp_test_datatypes_driver",
660 "//third_party/libsrtp:srtp_test_aes_calc",
661 "//third_party/libsrtp:srtp_test_env",
662 "//third_party/libsrtp:srtp_test_rand_gen",
663 "//third_party/libsrtp:srtp_test_sha1_driver",
664 "//third_party/libsrtp:srtp_test_stat_driver",
665 "//third_party/opus:opus_compare",
666 "//third_party/opus:opus_demo",
667 "//third_party/opus:test_opus_decode",
668 "//third_party/opus:test_opus_encode",
669 "//third_party/opus:test_opus_api",
670 "//third_party/opus:test_opus_padding",
671 "//third_party/webrtc/system_wrappers:field_trial_default",
672 "//third_party/webrtc/system_wrappers:metrics_default",
673 "//ui/display/types",
674 "//ui/shell_dialogs:shell_dialogs_unittests",
675 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47676 ]
dprankeb0713542015-07-31 21:07:21677
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16678 if (target_cpu == "x86" || target_cpu == "x64") {
679 deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
680 }
dprankedb5527d72015-03-08 04:22:47681 if (enable_nacl) {
682 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
683 }
684 if (use_ozone) {
685 deps += [ "//ui/ozone/demo" ]
686 }
687 if (is_android) {
688 deps += [ "//build/android/gyp/test:hello_world" ]
689 }
dpranke807f602b2015-03-17 23:20:56690
691 if (is_linux && current_toolchain == host_toolchain) {
692 deps += [ "//v8:d8" ]
693 }
dprankedb5527d72015-03-08 04:22:47694 }
dprankeb0713542015-07-31 21:07:21695
696 if (is_mac) {
697 deps -= [ "//mandoline:all" ] # TODO(GYP)
698 }
dprankedb5527d72015-03-08 04:22:47699}
700
701group("gn_mojo_targets") {
702 testonly = true
703 if (is_linux && !is_chromeos) {
704 # TODO(GYP): Figure out if any of these should be in gn_all
705 # and figure out how cross-platform they are
706 deps = [
707 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47708 "//content/public/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47709 "//content/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47710 "//content/test:web_ui_test_mojo_bindings_python",
711 "//device/battery:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47712 "//device/vibration:mojo_bindings_python",
713 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47714 "//ipc/mojo:client_channel_python",
dprankedb5527d72015-03-08 04:22:47715 "//media/mojo/interfaces:interfaces_python",
716 "//media/mojo/services:cdm_service",
717 "//media/mojo:tests",
msw1bb9c6c2015-05-06 21:35:44718 "//mojo:tests",
dprankedb5527d72015-03-08 04:22:47719 "//net/interfaces:interfaces_python",
720 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47721 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
722 "//third_party/mojo/src/mojo/public/python:packaged_application",
723 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
dprankedb5527d72015-03-08 04:22:47724 "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
dprankedb5527d72015-03-08 04:22:47725 ]
dprankedb5527d72015-03-08 04:22:47726 }
727}
728
729group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03730 deps = [
dprankeb6128d02015-05-01 16:40:30731 "//build/config/sanitizers:options_sources",
732
dprankedb5527d72015-03-08 04:22:47733 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
734 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30735
736 "//ui/resources:repack_ui_test_mac_locale_pack",
737
dprankedb5527d72015-03-08 04:22:47738 # "//v8:v8_snapshot", # TODO(GYP): visibility?
739 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
dpranked62d8512015-03-02 03:06:03740 ]
741}
742
tfarinacb2638b2015-05-12 03:24:15743if (!is_ios) {
744 # This group includes all of the targets needed to build and test Blink,
745 # including running the layout tests (see below).
746 group("blink_tests") {
747 testonly = true
748
749 deps = [
750 "//third_party/WebKit/public:all_blink",
751 ]
752
753 # NOTE: The following deps are needed to run the layout tests
754 # (run-webkit-tests) but there is no GN target for the layout tests,
755 # so we need to specify the dependencies here instead.
756 if (is_android) {
757 deps += [
758 "//breakpad:dump_syms($host_toolchain)",
759 "//breakpad:minidump_stackwalk($host_toolchain)",
760 "//content/shell/android:content_shell_apk",
ojan94989c72015-07-17 21:56:42761 "//tools/imagediff($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15762 ]
763 } else {
ojan94989c72015-07-17 21:56:42764 deps += [
765 "//content/shell:content_shell",
766 "//tools/imagediff",
767 ]
tfarinacb2638b2015-05-12 03:24:15768 }
769
770 if (is_win) {
771 deps += [
jochen73e711c2015-06-03 10:01:46772 "//components/test_runner:layout_test_helper",
tfarina795e01a2015-05-15 19:29:57773 "//content/shell:crash_service",
tfarinacb2638b2015-05-12 03:24:15774 ]
775 }
776
777 if (!is_win && !is_android) {
Gordana.Cmiljanovicf243e9a2015-05-26 22:14:47778 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:15779 }
780
781 if (is_mac) {
782 deps += [
783 "//breakpad:dump_syms($host_toolchain)",
jochen73e711c2015-06-03 10:01:46784 "//components/test_runner:layout_test_helper",
tfarinacb2638b2015-05-12 03:24:15785 ]
786 }
787
788 if (is_linux) {
789 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
790 }
791 }
792}
793
brettw533c50422015-02-26 17:49:16794if (is_linux) {
795 # This group corresponds to the list of tests run on the waterfall for
796 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
797 # here to help track GYP -> GN conversion progress.
798 group("linux_default_tests") {
799 testonly = true
800 deps = [
brettw533c50422015-02-26 17:49:16801 "//base:base_unittests", # PASSES (*) 2/25/2015
802 "//cc:cc_unittests", # PASSES 2/25/2015
803 "//chrome/test:browser_tests",
804 "//chrome/test:interactive_ui_tests",
brettw922d3aa2015-02-27 22:15:46805 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GYP.
brettw533c50422015-02-26 17:49:16806 "//chrome/test:unit_tests", # PASSES 2/25/2015
brettw922d3aa2015-02-27 22:15:46807 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54808 "//components:components_browsertests", # PASSES 4/17/2015
brettw77b58722015-02-27 23:35:06809 "//components:components_unittests", # PASSES 2/27/2015
brettw533c50422015-02-26 17:49:16810 "//content/test:content_browsertests",
811 "//content/test:content_unittests", # PASSES 2/25/2015
812 "//crypto:crypto_unittests", # PASSES 2/25/2015
813 "//dbus:dbus_unittests", # PASSES 2/25/2015
tfarina466754f2015-03-09 23:39:29814 "//device:device_unittests", # PASSES 3/07/2015
brettw533c50422015-02-26 17:49:16815 "//extensions:extensions_browsertests", # PASSES 2/25/2015
816 "//extensions:extensions_unittests", # PASSES 2/25/2015
817 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
818 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
819 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
820 "//gpu:gpu_unittests", # PASSES 2/25/2015
821 "//ipc:ipc_tests", # PASSES 2/25/2015
822 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
823 "//jingle:jingle_unittests", # PASSES 2/25/2015
aboxhall60006f22015-04-22 18:27:55824 "//media:media_unittests", # PASSES 3/3/2015
toyoshimc64757792015-04-30 14:52:02825 "//media/cast:cast_unittests", # PASSES 2/25/2015
826 "//media/midi:midi_unittests", # PASSES 4/10/2015
brettw533c50422015-02-26 17:49:16827 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
828 "//net:net_unittests", # PASSES 2/25/2015
brettw31f4de692015-03-04 17:24:45829 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
brettw533c50422015-02-26 17:49:16830 "//printing:printing_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02831 "//remoting:remoting_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16832 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
833 "//skia:skia_unittests", # PASSES 2/25/2015
834 "//sql:sql_unittests", # PASSES 2/25/2015
835 "//sync:sync_unit_tests", # PASSES 2/25/2015
836 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015
837 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
838 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
839 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
840 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54841 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
brettw533c50422015-02-26 17:49:16842 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
843 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
844 "//ui/aura:aura_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02845 "//ui/base:ui_base_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16846 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
847 "//ui/display:display_unittests", # PASSES 2/25/2015
848 "//ui/events:events_unittests", # PASSES 2/25/2015
849 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
dyen781489a2015-05-05 21:40:56850 "//ui/gl:gl_unittests",
brettw533c50422015-02-26 17:49:16851 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
852 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
853 "//ui/wm:wm_unittests", # PASSES 2/25/2015
854 "//url:url_unittests", # PASSES 2/25/2015
855
856 # Note:
857 # (*) Fails but failures match GYP build at time of testing.
858 ]
tfarina47830e342015-03-30 23:02:11859
860 if (enable_nacl) {
861 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015
862 }
brettw533c50422015-02-26 17:49:16863 }
brettw690c96672015-04-21 16:19:54864} else if (is_win) {
865 group("windows_default_tests") {
866 testonly = true
867 deps = [
868 "//ash:ash_unittests", # FAILS 4/20/2015
brettw9a19ddb2015-04-24 19:30:50869 "//base:base_unittests", # PASSES 4/20/2015
brettw690c96672015-04-21 16:19:54870 "//cc:cc_unittests", # PASSES 4/17/2015
871 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
brettweb1f7ac2015-05-01 17:43:01872 "//chrome/installer/util:installer_util_unittests",
grt734e87b2015-07-06 19:36:43873 "//chrome/installer/setup:setup_unittests",
brettw690c96672015-04-21 16:19:54874 "//chrome/test:browser_tests",
875 "//chrome/test:interactive_ui_tests",
876 "//chrome/test:sync_integration_tests", # Note: need to turn off incremental linking for debug.
877 "//chrome/test:unit_tests",
878 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
brettweb1f7ac2015-05-01 17:43:01879 "//components:components_browsertests", # PASSES 4/24/2015
brettw690c96672015-04-21 16:19:54880 "//components:components_unittests", # PASSES 4/17/2015
881 "//courgette:courgette_unittests", # PASSES 4/20/2015
882 "//content/test:content_browsertests",
883 "//content/test:content_unittests", # PASSES 4/17/2015
884 "//crypto:crypto_unittests", # PASSES 4/17/2015
885 "//device:device_unittests", # PASSES 4/17/2015
886 "//extensions:extensions_browsertests", # PASSES 4/17/2015
887 "//extensions:extensions_unittests", # PASSES 4/17/2015
888 "//extensions/shell:app_shell_unittests", # Doesn't compile in 64-bit
889 "//google_apis/gcm:gcm_unit_tests", # PASSES 4/17/2015
890 "//google_apis:google_apis_unittests", # PASSES 4/17/2015
891 "//gpu:gpu_unittests", # PASSES 4/17/2015
892 "//ipc:ipc_tests", # PASSES 4/17/2015
893 "//ipc/mojo:ipc_mojo_unittests", # PASSES 4/17/2015
894 "//jingle:jingle_unittests", # PASSES 4/17/2015
895 "//media/cast:cast_unittests", # PASSES 4/17/2015
896 "//media:media_unittests", # PASSES 4/17/2015
897 "//mojo/common:mojo_common_unittests", # PASSES 4/17/2015
898 "//net:net_unittests", # PASSES 4/17/2015
899 "//ppapi:ppapi_unittests", # PASSES 4/17/2015
900 "//printing:printing_unittests", # PASSES 4/17/2015
901 "//remoting:remoting_unittests", # PASSES 4/17/2015
902 "//sandbox/win:sbox_integration_tests", # PASSES 4/20/2015
903 "//sandbox/win:sbox_unittests", # PASSES 4/20/2015
904 "//sandbox/win:sbox_validation_tests", # PASSES 4/20/2015
905 "//skia:skia_unittests", # PASSES 4/17/2015
906 "//sql:sql_unittests", # PASSES 4/17/2015
907 "//sync:sync_unit_tests", # PASSES 4/20/2015
908 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 4/20/2015
909 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # Seems to hang?
910 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # FAILS
911 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 4/20/2015
912 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 4/20/2015
913 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", # PASSES 4/20/2015
914 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015
915 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015
916 "//ui/aura:aura_unittests", # PASSES 4/17/2015
917 "//ui/base:ui_base_unittests", # PASSES 4/20/2015
918 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015
919 "//ui/display:display_unittests", # PASSES 4/20/2015
920 "//ui/events:events_unittests", # PASSES 4/20/2015
921 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015
dyen781489a2015-05-05 21:40:56922 "//ui/gl:gl_unittests",
brettw690c96672015-04-21 16:19:54923 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015
924 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015
brettw2a647722015-04-24 21:51:42925 "//ui/views:views_unittests", # TooltipControllerTest failures
926 "//ui/wm:wm_unittests", # PASSES 4/21/2015
brettw690c96672015-04-21 16:19:54927 "//url:url_unittests", # PASSES 4/17/2015
928
brettw690c96672015-04-21 16:19:54929 # TODO(GYP) nacl_integration
930 # TODO(GYP) telemetry_perf_unittests
931 # TODO(GYP) telemetry_unittests
932 ]
933 }
brettw533c50422015-02-26 17:49:16934}