blob: 9492d51dc7310ab6a3cf399b017d08723a40692a [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",
sdefresne4128da42015-08-11 14:51:0868 "//sql:sql_unittests",
dprankee2ef3822015-02-24 21:42:1869 ]
dpranke2a294622015-08-07 05:23:0170
sherouk53f0f1a2015-08-03 15:59:3571 if (!is_ios) {
dpranke2a294622015-08-07 05:23:0172 # TODO(GYP): Figure out which of these should actually build on iOS,
73 # and whether there should be other targets that are iOS-only and missing.
sherouk53f0f1a2015-08-03 15:59:3574 deps += [
75 "//cc:cc_unittests",
76 "//chrome",
77 "//chrome/test:browser_tests",
78 "//chrome/test:interactive_ui_tests",
79 "//chrome/test:sync_integration_tests",
80 "//chrome/test:unit_tests",
81 "//chrome/test/chromedriver:chromedriver_unittests",
82 "//components:components_browsertests",
83 "//components:components_unittests",
84 "//content/shell:content_shell",
85 "//content/test:content_browsertests",
86 "//content/test:content_perftests",
87 "//content/test:content_unittests",
88 "//crypto:crypto_unittests",
89 "//device:device_unittests",
90 "//extensions:extensions_browsertests",
91 "//extensions:extensions_unittests",
92 "//google_apis/gcm:gcm_unit_tests",
93 "//gpu:gpu_unittests",
dprankedbdd9d82015-08-12 21:18:1894 "//gpu/gles2_conform_support:gles2_conform_test",
sherouk53f0f1a2015-08-03 15:59:3595 "//ipc:ipc_tests",
96 "//ipc/mojo:ipc_mojo_unittests",
97 "//jingle:jingle_unittests",
98 "//media:media_unittests",
99 "//media/cast:cast_unittests",
100 "//media/midi:midi_unittests",
101 "//mojo",
102 "//mojo/application/public/cpp",
103 "//mojo/common:mojo_common_unittests",
104 "//net:hpack_example_generator",
105 "//net:hpack_fuzz_mutator",
106 "//net:hpack_fuzz_wrapper",
107 "//net:net_perftests",
108 "//net:net_unittests",
109 "//ppapi:ppapi_unittests",
110 "//ppapi/examples/2d",
111 "//ppapi/examples/audio",
112 "//ppapi/examples/audio_input",
113 "//ppapi/examples/compositor",
114 "//ppapi/examples/crxfs",
115 "//ppapi/examples/enumerate_devices",
116 "//ppapi/examples/file_chooser",
117 "//ppapi/examples/flash_topmost",
118 "//ppapi/examples/font",
119 "//ppapi/examples/gamepad",
120 "//ppapi/examples/gles2",
121 "//ppapi/examples/gles2_spinning_cube",
122 "//ppapi/examples/ime",
123 "//ppapi/examples/input",
124 "//ppapi/examples/media_stream_audio",
125 "//ppapi/examples/media_stream_video",
126 "//ppapi/examples/mouse_cursor",
127 "//ppapi/examples/mouse_lock",
128 "//ppapi/examples/printing",
129 "//ppapi/examples/scaling",
130 "//ppapi/examples/scripting",
131 "//ppapi/examples/stub",
132 "//ppapi/examples/threading",
133 "//ppapi/examples/url_loader",
134 "//ppapi/examples/video_capture",
135 "//ppapi/examples/video_decode",
136 "//ppapi/examples/video_effects",
137 "//ppapi/examples/video_encode",
138 "//printing:printing_unittests",
139 "//skia:skia_unittests",
dpranke2a294622015-08-07 05:23:01140 "//sync:sync_unit_tests",
sherouk53f0f1a2015-08-03 15:59:35141 "//third_party/WebKit/Source/platform:heap_unittests",
142 "//third_party/WebKit/Source/platform:platform_unittests",
143 "//third_party/WebKit/Source/web:webkit_unit_tests",
144 "//third_party/WebKit/Source/wtf:wtf_unittests",
145 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
146 "//third_party/codesighs",
147 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
148 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
149 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
150 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
151 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
152 "//third_party/pdfium/samples:pdfium_test",
153 "//third_party/smhasher:pmurhash",
154 "//tools/imagediff($host_toolchain)",
155 "//tools/gn",
156 "//tools/gn:gn_unittests",
157 "//tools/gn:generate_test_gn_data",
158 "//tools/telemetry:bitmaptools($host_toolchain)",
159 "//ui/accessibility:accessibility_unittests",
160 "//ui/app_list:app_list_unittests",
161 "//ui/base:ui_base_unittests",
162 "//ui/display:display_unittests",
163 "//ui/events:events_unittests",
164 "//ui/gfx:gfx_unittests",
165 "//ui/gl:gl_unittests",
166 "//ui/touch_selection:ui_touch_selection_unittests",
167 "//url:url_unittests",
168 ]
169 }
dprankee2ef3822015-02-24 21:42:18170
scottmg34fb7e52014-12-03 23:27:24171 deps += root_extra_deps
[email protected]fce5c3fe2014-04-10 21:13:05172
dpranke021d4c92015-02-24 02:08:25173 if (enable_extensions && !is_mac) {
dprankefd1813272015-04-13 23:56:00174 # TODO(GYP): Get this working on the mac?
rockot2f1326e2015-02-23 23:53:51175 deps += [ "//extensions/shell:app_shell_unittests" ]
176 }
177
dprankefd1813272015-04-13 23:56:00178 if (enable_media_router) {
imchengb6b09239f2015-05-15 21:41:55179 deps += [ "//chrome/browser/media/router" ]
dprankefd1813272015-04-13 23:56:00180 }
181
garykac3eddb5b2015-04-17 23:16:38182 if (enable_remoting) {
183 deps += [ "//remoting:remoting_all" ]
dprankece5eb832015-04-01 20:21:05184 }
185
dprankee2ef3822015-02-24 21:42:18186 if (toolkit_views) {
187 deps += [ "//ui/views:views_unittests" ]
James Robinson060f2e32014-09-10 22:31:37188 }
189
dprankee2ef3822015-02-24 21:42:18190 if (use_aura) {
191 deps += [ "//ui/wm:wm_unittests" ]
192 }
193
194 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47195 deps += [ "//ui/ozone" ]
[email protected]a306aaa2014-05-24 13:21:50196 }
197
dprankefd1813272015-04-13 23:56:00198 if (use_x11) {
199 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22200 }
201
tmoniuszkoe5578b922015-04-14 09:38:03202 if (enable_configuration_policy) {
203 deps += [ "//components/policy:policy_templates" ]
204 }
205
dprankefd1813272015-04-13 23:56:00206 if (v8_use_external_startup_data) {
207 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
[email protected]2d6893a2014-06-02 19:16:36208 }
209
brettw66e3feab2015-07-20 23:52:22210 if (is_win) {
211 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
212 }
213
[email protected]5a8d5162014-04-12 01:19:16214 if (is_android) {
[email protected]26046b52014-07-16 00:11:03215 deps += [
cjhopman31511332014-10-23 01:05:02216 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38217 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02218 "//build/android/rezip",
yfriedmanc1995be82015-05-29 17:52:25219 "//chrome/android:chrome_public_apk",
220 "//chrome/android:chrome_public_test_apk",
hiroshigee6d374c2015-02-24 07:54:06221 "//chrome/android:chrome_shell_apk",
hiroshigee6d374c2015-02-24 07:54:06222 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
agrieve40ba6862015-07-15 02:09:05223 "//third_party/errorprone:chromium_errorprone",
dprankee2ef3822015-02-24 21:42:18224 "//tools/imagediff($host_toolchain)",
225
226 # TODO(GYP): Remove these when the components_unittests work.
227 "//components/history/core/test:test",
228 "//components/policy:policy_component_test_support",
229 "//components/policy:test_support",
230 "//components/rappor:test_support",
231 "//components/signin/core/browser:test_support",
232 "//components/sync_driver:test_support",
233 "//components/user_manager",
234 "//components/wallpaper",
235 "//content/shell/android:content_shell_apk",
236
237 # TODO(GYP): Are these needed, or will they be pulled in automatically?
[email protected]684b2292014-08-22 19:12:39238 "//third_party/android_tools:android_gcm_java",
239 "//third_party/android_tools:uiautomator_java",
240 "//third_party/android_tools:android_support_v13_java",
241 "//third_party/android_tools:android_support_v7_appcompat_java",
242 "//third_party/android_tools:android_support_v7_mediarouter_java",
dprankee2ef3822015-02-24 21:42:18243 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29244 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18245 "//third_party/openmax_dl/dl",
dprankee2ef3822015-02-24 21:42:18246 "//ui/android:ui_java",
247
248 # TODO(GYP): Are these needed?
249 "//chrome/test:test_support_unit",
250 "//third_party/smhasher:murmurhash3",
251 "//ui/message_center:test_support",
252 ]
253 deps -= [
dprankee2ef3822015-02-24 21:42:18254 "//chrome", # TODO(GYP) ??
255 "//chrome/test:browser_tests", # TODO(GYP) ??
256 "//chrome/test:interactive_ui_tests", # TODO(GYP) ??
257 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
258 "//chrome/test:unit_tests", # TODO(GYP)
brettw922d3aa2015-02-27 22:15:46259
260 # Chromedriver shouldn't be compiled on Android.
261 "//chrome/test/chromedriver:chromedriver_unittests",
dprankee2ef3822015-02-24 21:42:18262 "//extensions:extensions_browsertests",
263 "//extensions:extensions_unittests",
264 "//google_apis/gcm:gcm_unit_tests",
265 "//ipc:ipc_tests", # TODO(GYP) ??
266 "//jingle:jingle_unittests", # TODO(GYP) ??
rockot9c67e5f2015-03-12 20:01:21267 "//net:hpack_example_generator",
268 "//net:hpack_fuzz_mutator",
269 "//net:hpack_fuzz_wrapper",
270 "//net:net_perftests",
tfarina79ef072d2015-04-04 20:16:57271 "//ppapi/examples/2d",
272 "//ppapi/examples/audio",
273 "//ppapi/examples/audio_input",
274 "//ppapi/examples/compositor",
275 "//ppapi/examples/crxfs",
276 "//ppapi/examples/enumerate_devices",
277 "//ppapi/examples/file_chooser",
278 "//ppapi/examples/flash_topmost",
279 "//ppapi/examples/font",
280 "//ppapi/examples/gamepad",
281 "//ppapi/examples/gles2",
282 "//ppapi/examples/gles2_spinning_cube",
283 "//ppapi/examples/ime",
284 "//ppapi/examples/input",
285 "//ppapi/examples/media_stream_audio",
286 "//ppapi/examples/media_stream_video",
287 "//ppapi/examples/mouse_cursor",
288 "//ppapi/examples/mouse_lock",
289 "//ppapi/examples/printing",
290 "//ppapi/examples/scaling",
291 "//ppapi/examples/scripting",
292 "//ppapi/examples/stub",
293 "//ppapi/examples/threading",
294 "//ppapi/examples/url_loader",
295 "//ppapi/examples/video_capture",
296 "//ppapi/examples/video_decode",
297 "//ppapi/examples/video_effects",
298 "//ppapi/examples/video_encode",
dprankee2ef3822015-02-24 21:42:18299 "//third_party/pdfium/samples:pdfium_test",
300 "//tools/gn",
dprankefd1813272015-04-13 23:56:00301 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18302 "//tools/gn:gn_unittests",
303 "//ui/app_list:app_list_unittests",
304 "//url:url_unittests",
[email protected]26046b52014-07-16 00:11:03305 ]
306
cjhopmanca675d3e2014-10-24 03:50:45307 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18308 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45309 }
dprankedb5527d72015-03-08 04:22:47310 }
311
dprankefd1813272015-04-13 23:56:00312 if (is_linux) { # TODO(GYP): || is_android || is_bsd?
313 deps += [
314 "//breakpad:core-2-minidump",
315 "//breakpad:minidump-2-core",
316 ]
317 }
318
dpranke6293d252015-04-14 19:12:00319 if (is_chromeos) {
320 deps += [
321 "//chromeos:chromeos_unittests",
322 "//ui/chromeos:ui_chromeos_unittests",
323 ]
324 }
325
dprankefd1813272015-04-13 23:56:00326 if (is_chromeos || is_mac || is_win) {
327 deps += [
328 "//rlz:rlz_id",
329 "//rlz:rlz_lib",
330 "//rlz:rlz_unittests",
331 ]
332 }
333
dprankedb5527d72015-03-08 04:22:47334 if (is_linux) {
335 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06336 deps += [
dprankedb5527d72015-03-08 04:22:47337 "//breakpad:breakpad_unittests",
dprankedb5527d72015-03-08 04:22:47338 "//breakpad:generate_test_dump",
dprankedb5527d72015-03-08 04:22:47339 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18340 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47341 "//net:disk_cache_memory_test",
342 "//net:flip_in_mem_edsm_server",
343 "//net:flip_in_mem_edsm_server_unittests",
344 "//net:quic_client",
345 "//net:quic_server",
346 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18347 "//sandbox/linux:sandbox_linux_unittests",
dprankedb5527d72015-03-08 04:22:47348 "//sandbox/linux:sandbox_linux_jni_unittests",
hiroshigee6d374c2015-02-24 07:54:06349 ]
dnicoara8c6aa8e2015-03-11 23:20:32350
351 if (is_chromeos || use_ash) {
352 deps += [ "//components/session_manager/core" ]
353 }
dprankedb5527d72015-03-08 04:22:47354 }
355
sherouke1859f92015-08-05 10:19:10356 if (is_ios || is_win || (is_linux && !is_chromeos)) {
357 deps += [
358 "//base:base_i18n_perftests",
359 "//base:base_perftests",
360 ]
361 }
362
dprankefd1813272015-04-13 23:56:00363 if (is_win || (is_linux && !is_chromeos)) {
364 # TODO(GYP): Figure out which of these should (and can) build
365 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44366 deps += [
dprankedb5527d72015-03-08 04:22:47367 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47368 "//base:build_utf8_validator_tables",
dprankedb5527d72015-03-08 04:22:47369 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00370 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47371 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00372 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47373 "//chrome/test:sync_performance_tests",
374 "//chrome/test/chromedriver:chromedriver",
375 "//chrome/test/chromedriver:chromedriver_tests",
376 "//chrome/tools/profile_reset:jtl_compiler",
377 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47378 "//content/test:content_gl_tests",
379 "//content/test:content_gl_benchmark",
380 "//courgette:courgette",
381 "//courgette:courgette_fuzz",
382 "//courgette:courgette_minimal_tool",
383 "//courgette:courgette_unittests",
384 "//device:device_unittests",
385 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47386 "//gin:gin_unittests",
387 "//google_apis:google_apis_unittests",
388 "//google_apis/gcm:mcs_probe",
389 "//gpu:angle_unittests",
dprankedb5527d72015-03-08 04:22:47390 "//gpu:gpu_perftests",
dprankefd1813272015-04-13 23:56:00391 "//gpu:gl_tests",
dprankedb5527d72015-03-08 04:22:47392 "//ipc:ipc_perftests",
393 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional on media_use_ffmpeg
394 "//media:media_perftests",
dprankedb5527d72015-03-08 04:22:47395 "//media/cast:generate_barcode_video",
396 "//media/cast:generate_timecode_audio",
dprankedb5527d72015-03-08 04:22:47397 "//net:crash_cache",
398 "//net:crl_set_dump",
399 "//net:dns_fuzz_stub",
dprankefd1813272015-04-13 23:56:00400 "//net:dump_cache",
dprankedb5527d72015-03-08 04:22:47401 "//net:gdig",
402 "//net:get_server_time",
dprankedb5527d72015-03-08 04:22:47403 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
dprankefd1813272015-04-13 23:56:00404 "//net:run_testserver",
dprankedb5527d72015-03-08 04:22:47405 "//net:stress_cache",
406 "//net:tld_cleanup",
dprankec09ccaa2015-03-27 22:00:38407 "//ppapi:pepper_hash_for_uma",
dprankefd1813272015-04-13 23:56:00408 "//ppapi:ppapi_perftests",
dprankedb5527d72015-03-08 04:22:47409 "//sync:run_sync_testserver",
dprankedb5527d72015-03-08 04:22:47410 "//third_party/codesighs:maptsvdifftool",
dprankedb5527d72015-03-08 04:22:47411 "//third_party/leveldatabase:env_chromium_unittests",
412 "//third_party/libaddressinput:libaddressinput_unittests",
dprankefd1813272015-04-13 23:56:00413 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47414 "//ui/compositor:compositor_unittests",
415 ]
416
417 if (enable_extensions) {
418 deps += [ "//extensions/shell:app_shell" ]
419 }
420
421 if (enable_nacl) {
dprankefd1813272015-04-13 23:56:00422 deps += [ "//components/nacl:nacl_loader_unittests" ]
dprankedb5527d72015-03-08 04:22:47423 }
424
dprankefd1813272015-04-13 23:56:00425 if (enable_nacl && enable_remoting) {
426 deps += [ "//remoting:remoting_key_tester" ]
dprankedb5527d72015-03-08 04:22:47427 }
428
429 if (use_ash) {
430 deps += [
431 "//ash:ash_shell",
dprankedb5527d72015-03-08 04:22:47432 "//ash:ash_unittests",
433 ]
434 }
435
436 if (use_aura) {
437 deps += [
438 "//ui/aura:aura_unittests",
439 "//ui/aura:bench",
440 "//ui/aura:demo",
441 ]
442 }
dprankefd1813272015-04-13 23:56:00443 }
444
445 if (is_linux && !is_chromeos) {
446 deps += [
447 # TODO(GYP): Figure out which of these should (and can) build
448 # under which other conditions.
449 "//build/sanitizers:copy_llvm_symbolizer",
450 "//chrome/test:chrome_app_unittests",
451 "//cloud_print:cloud_print_unittests",
452 "//components/network_hints/browser",
dprankefd1813272015-04-13 23:56:00453 "//content/public/app:browser",
454 "//content/public/app:child",
455
456 # TODO(GYP): Remove this when the gles2 tests work
457 "//gpu/command_buffer/client:gles2_implementation_no_check",
458
459 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/471903 to make this complete.
460 "//media/cast:cast_benchmarks",
461 "//media/cast:tap_proxy",
jam00802992015-05-20 03:37:19462 "//mojo/application/public/cpp",
dprankefd1813272015-04-13 23:56:00463 "//skia:filter_fuzz_stub",
464 "//skia:image_operations_bench",
465 "//sync/tools:sync_client",
466 "//sync/tools:sync_listen_notifications",
467 "//testing/gmock:gmock_main",
468 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
469 "//tools/perf/clear_system_cache",
470 "//ui/keyboard:keyboard_unittests",
471 "//ui/message_center:message_center_unittests",
472 "//ui/snapshot:snapshot_unittests",
473 "//ui/views/examples:views_examples_with_content_exe",
474
475 # "//v8:v8_snapshot", # TODO(GYP): visibility?
476 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
477
478 "//third_party/codesighs:nm2tsv",
479 "//third_party/sqlite:sqlite_shell",
480 ]
481
482 if (current_toolchain == host_toolchain) {
483 # Do not build the breakpad utilities in cross-compiles.
484 deps += [
485 "//breakpad:dump_syms",
486 "//breakpad:microdump_stackwalk",
487 "//breakpad:minidump_dump",
488 "//breakpad:minidump_stackwalk",
489 ]
490 }
491
492 if (!is_debug && !is_component_build) {
493 deps += [ "//chrome/tools/service_discovery_sniffer" ]
494 }
495
496 if (toolkit_views) {
497 deps += [ "//ui/app_list:app_list_demo" ]
498 }
dprankedb5527d72015-03-08 04:22:47499
500 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44501 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59502 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44503 }
dprankedb5527d72015-03-08 04:22:47504 }
505 }
506
507 if (is_mac) {
508 deps += [
509 "//breakpad:crash_inspector",
510 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44511 "//third_party/apple_sample_code",
512 "//third_party/molokocacao",
513 ]
514
dprankee2ef3822015-02-24 21:42:18515 # TODO(GYP): Remove these when the targets below work and these
516 # are pulled in automatically.
517 deps += [
518 "//cc/blink",
519 "//components/ui/zoom:ui_zoom",
520 "//content",
521 "//content/test:test_support",
522 "//device/battery",
523 "//device/bluetooth",
524 "//device/nfc",
525 "//device/usb",
526 "//device/vibration",
527 "//media/blink",
528 "//pdf",
529 "//storage/browser",
530 "//third_party/brotli",
531 "//third_party/flac",
tfarinae4a03f8f2015-05-18 05:55:26532 "//third_party/hunspell",
dprankee2ef3822015-02-24 21:42:18533 "//third_party/iccjpeg",
534 "//third_party/libphonenumber",
535 "//third_party/ots",
536 "//third_party/qcms",
537 "//third_party/smhasher:murmurhash3",
dprankee2ef3822015-02-24 21:42:18538 "//third_party/webrtc/system_wrappers",
tfarinaeda26472015-08-12 19:30:15539 "//ui/gfx:gfx_unittests",
dprankee2ef3822015-02-24 21:42:18540 "//ui/native_theme",
541 "//ui/snapshot",
542 "//ui/surface",
543 ]
544
dprankecf8465db72014-11-10 23:51:22545 # TODO(dpranke): These are as-yet untriaged but need at least the above.
dpranke43760592014-11-08 02:59:57546 deps -= [
dprankee2ef3822015-02-24 21:42:18547 "//chrome", # TODO(GYP)
548 "//chrome/test:browser_tests", # TODO(GYP)
549 "//chrome/test:interactive_ui_tests", # TODO(GYP)
550 "//chrome/test:sync_integration_tests", # TODO(GYP)
551 "//chrome/test:unit_tests", # TODO(GYP)
dprankef6ca89c52015-03-30 22:01:38552 "//components:components_browsertests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18553 "//components:components_unittests", # TODO(GYP)
554 "//content/test:content_browsertests", # TODO(GYP)
555 "//content/test:content_perftests", # TODO(GYP)
dprankeb0713542015-07-31 21:07:21556 "//device:device_unittests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18557 "//extensions:extensions_browsertests", # TODO(GYP)
558 "//extensions:extensions_unittests", # TODO(GYP)
dprankeb0713542015-07-31 21:07:21559 "//mojo", # TODO(GYP)
560 "//mojo/application/public/cpp", # TODO(GYP)
tfarinacb2638b2015-05-12 03:24:15561
562 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
563 "//third_party/WebKit/Source/platform:heap_unittests",
564 "//third_party/WebKit/Source/platform:platform_unittests",
565 "//third_party/WebKit/Source/web:webkit_unit_tests",
dprankee2ef3822015-02-24 21:42:18566 "//ui/app_list:app_list_unittests", # TODO(GYP)
dprankecf8465db72014-11-10 23:51:22567 ]
dprankefd1813272015-04-13 23:56:00568 }
569
570 if (is_win) {
571 deps += [
572 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43573 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00574 "//chrome_elf:chrome_elf_unittests",
575 "//chrome_elf:dll_hash_main",
dprankedb5a56c2015-04-29 18:01:09576 "//components/crash/tools:crash_service",
dprankefd1813272015-04-13 23:56:00577 "//components/wifi:wifi_test",
578 "//net:quic_client",
579 "//net:quic_server",
580 "//sandbox/win:pocdll",
581 "//sandbox/win:sandbox_poc",
582 "//sandbox/win:sbox_integration_tests",
583 "//sandbox/win:sbox_unittests",
584 "//sandbox/win:sbox_validation_tests",
585 "//testing/gtest:gtest_main",
586 "//third_party/codesighs:msmap2tsv",
587 "//third_party/pdfium/samples:pdfium_diff",
588 "//ui/metro_viewer",
589 ]
dprankee2ef3822015-02-24 21:42:18590 deps -= [
591 "//crypto:crypto_unittests", # TODO(GYP)
592 "//net:net_unittests", # TODO(GYP)
593 ]
sherouk53f0f1a2015-08-03 15:59:35594 } else if (!is_android && !is_ios) {
dpranke6293d252015-04-14 19:12:00595 deps += [ "//breakpad:symupload" ]
mohsenf837da7c2014-12-09 19:01:34596 }
hendrikw5c1da6d2015-06-18 15:08:57597
598 if (!is_ios) {
599 deps += [ "//gpu/skia_runner:skia_runner" ]
600 }
[email protected]f0e7ff882013-12-26 21:23:09601}
brettw533c50422015-02-26 17:49:16602
dpranked62d8512015-03-02 03:06:03603group("gn_only") {
dprankedb5527d72015-03-08 04:22:47604 testonly = true
605
dpranke2a294622015-08-07 05:23:01606 deps = []
607
sherouk53f0f1a2015-08-03 15:59:35608 if (!is_ios) {
dpranke2a294622015-08-07 05:23:01609 deps += [ "//mandoline:all" ]
sherouk53f0f1a2015-08-03 15:59:35610 }
isherman0f89b43eb2015-04-11 00:02:45611
612 if (!is_android && !is_ios) {
613 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
614 }
615
dprankedb5527d72015-03-08 04:22:47616 if (is_linux && !is_chromeos) {
617 # TODO(GYP): Figure out if any of these should be in gn_all
618 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45619 deps += [
dprankedb5527d72015-03-08 04:22:47620 ":gn_mojo_targets",
621 "//chrome/browser/resources:extension_resource_demo",
622 "//chrome/installer/util:strings",
623 "//chrome:main_dll",
624 "//chrome/test:load_library_perf_tests",
625 "//chrome/tools/convert_dict",
626 "//components/constrained_window:unit_tests",
627 "//components/enhanced_bookmarks:test_support",
dprankedb5527d72015-03-08 04:22:47628 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45629 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47630 "//components/rappor:unit_tests",
631 "//components/sessions:unit_tests",
632 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47633 "//media/cast:udp_proxy",
634 "//native_client/src/trusted/platform_qualify:vcpuid",
635 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
636 "//storage/browser:dump_file_system",
637 "//third_party/angle:libANGLE",
638 "//third_party/angle:libEGL",
639 "//third_party/angle:libGLESv2",
640 "//third_party/cld_2:cld_2_dynamic_data_tool",
641 "//third_party/leveldatabase:leveldb_arena_test",
642 "//third_party/leveldatabase:leveldb_bloom_test",
643 "//third_party/leveldatabase:leveldb_db_test",
644 "//third_party/leveldatabase:leveldb_crc32c_test",
645 "//third_party/leveldatabase:leveldb_cache_test",
646 "//third_party/leveldatabase:leveldb_env_test",
647 "//third_party/leveldatabase:leveldb_write_batch_test",
648 "//third_party/leveldatabase:leveldb_filter_block_test",
649 "//third_party/leveldatabase:leveldb_version_edit_test",
650 "//third_party/leveldatabase:leveldb_db_bench",
651 "//third_party/leveldatabase:leveldb_log_test",
652 "//third_party/leveldatabase:leveldb_corruption_test",
653 "//third_party/leveldatabase:leveldb_table_test",
654 "//third_party/leveldatabase:leveldb_skiplist_test",
655 "//third_party/leveldatabase:leveldb_filename_test",
656 "//third_party/leveldatabase:leveldb_dbformat_test",
thestig93786e62015-08-05 04:03:29657 "//third_party/pdfium/third_party:fx_freetype",
dprankedb5527d72015-03-08 04:22:47658 "//third_party/libjpeg_turbo:simd",
dprankedb5527d72015-03-08 04:22:47659 "//third_party/libsrtp:replay_driver",
660 "//third_party/libsrtp:roc_driver",
661 "//third_party/libsrtp:rtpw",
662 "//third_party/libsrtp:rdbx_driver",
663 "//third_party/libsrtp:srtp_driver",
664 "//third_party/libsrtp:srtp_driver",
665 "//third_party/libsrtp:srtp_test_kernel_driver",
666 "//third_party/libsrtp:srtp_test_cipher_driver",
667 "//third_party/libsrtp:srtp_test_datatypes_driver",
668 "//third_party/libsrtp:srtp_test_aes_calc",
669 "//third_party/libsrtp:srtp_test_env",
670 "//third_party/libsrtp:srtp_test_rand_gen",
671 "//third_party/libsrtp:srtp_test_sha1_driver",
672 "//third_party/libsrtp:srtp_test_stat_driver",
673 "//third_party/opus:opus_compare",
674 "//third_party/opus:opus_demo",
675 "//third_party/opus:test_opus_decode",
676 "//third_party/opus:test_opus_encode",
677 "//third_party/opus:test_opus_api",
678 "//third_party/opus:test_opus_padding",
679 "//third_party/webrtc/system_wrappers:field_trial_default",
680 "//third_party/webrtc/system_wrappers:metrics_default",
681 "//ui/display/types",
682 "//ui/shell_dialogs:shell_dialogs_unittests",
683 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47684 ]
dprankeb0713542015-07-31 21:07:21685
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16686 if (target_cpu == "x86" || target_cpu == "x64") {
687 deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
688 }
dprankedb5527d72015-03-08 04:22:47689 if (enable_nacl) {
690 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
691 }
692 if (use_ozone) {
693 deps += [ "//ui/ozone/demo" ]
694 }
695 if (is_android) {
696 deps += [ "//build/android/gyp/test:hello_world" ]
697 }
dpranke807f602b2015-03-17 23:20:56698
699 if (is_linux && current_toolchain == host_toolchain) {
700 deps += [ "//v8:d8" ]
701 }
dprankedb5527d72015-03-08 04:22:47702 }
dprankeb0713542015-07-31 21:07:21703
704 if (is_mac) {
705 deps -= [ "//mandoline:all" ] # TODO(GYP)
706 }
dprankedb5527d72015-03-08 04:22:47707}
708
709group("gn_mojo_targets") {
710 testonly = true
711 if (is_linux && !is_chromeos) {
712 # TODO(GYP): Figure out if any of these should be in gn_all
713 # and figure out how cross-platform they are
714 deps = [
715 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47716 "//content/public/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47717 "//content/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47718 "//content/test:web_ui_test_mojo_bindings_python",
719 "//device/battery:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47720 "//device/vibration:mojo_bindings_python",
721 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47722 "//ipc/mojo:client_channel_python",
dprankedb5527d72015-03-08 04:22:47723 "//media/mojo/interfaces:interfaces_python",
724 "//media/mojo/services:cdm_service",
725 "//media/mojo:tests",
msw1bb9c6c2015-05-06 21:35:44726 "//mojo:tests",
dprankedb5527d72015-03-08 04:22:47727 "//net/interfaces:interfaces_python",
728 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47729 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
730 "//third_party/mojo/src/mojo/public/python:packaged_application",
731 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
dprankedb5527d72015-03-08 04:22:47732 "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
dprankedb5527d72015-03-08 04:22:47733 ]
dprankedb5527d72015-03-08 04:22:47734 }
735}
736
737group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03738 deps = [
dprankeb6128d02015-05-01 16:40:30739 "//build/config/sanitizers:options_sources",
740
dprankedb5527d72015-03-08 04:22:47741 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
742 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30743
744 "//ui/resources:repack_ui_test_mac_locale_pack",
745
dprankedb5527d72015-03-08 04:22:47746 # "//v8:v8_snapshot", # TODO(GYP): visibility?
747 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
dpranked62d8512015-03-02 03:06:03748 ]
749}
750
tfarinacb2638b2015-05-12 03:24:15751if (!is_ios) {
752 # This group includes all of the targets needed to build and test Blink,
753 # including running the layout tests (see below).
754 group("blink_tests") {
755 testonly = true
756
757 deps = [
758 "//third_party/WebKit/public:all_blink",
759 ]
760
761 # NOTE: The following deps are needed to run the layout tests
762 # (run-webkit-tests) but there is no GN target for the layout tests,
763 # so we need to specify the dependencies here instead.
764 if (is_android) {
765 deps += [
766 "//breakpad:dump_syms($host_toolchain)",
767 "//breakpad:minidump_stackwalk($host_toolchain)",
768 "//content/shell/android:content_shell_apk",
ojan94989c72015-07-17 21:56:42769 "//tools/imagediff($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15770 ]
771 } else {
ojan94989c72015-07-17 21:56:42772 deps += [
773 "//content/shell:content_shell",
774 "//tools/imagediff",
775 ]
tfarinacb2638b2015-05-12 03:24:15776 }
777
778 if (is_win) {
779 deps += [
jochen73e711c2015-06-03 10:01:46780 "//components/test_runner:layout_test_helper",
tfarina795e01a2015-05-15 19:29:57781 "//content/shell:crash_service",
tfarinacb2638b2015-05-12 03:24:15782 ]
783 }
784
785 if (!is_win && !is_android) {
Gordana.Cmiljanovicf243e9a2015-05-26 22:14:47786 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:15787 }
788
789 if (is_mac) {
790 deps += [
791 "//breakpad:dump_syms($host_toolchain)",
jochen73e711c2015-06-03 10:01:46792 "//components/test_runner:layout_test_helper",
tfarinacb2638b2015-05-12 03:24:15793 ]
794 }
795
796 if (is_linux) {
797 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
798 }
799 }
800}
801
brettw533c50422015-02-26 17:49:16802if (is_linux) {
803 # This group corresponds to the list of tests run on the waterfall for
804 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
805 # here to help track GYP -> GN conversion progress.
806 group("linux_default_tests") {
807 testonly = true
808 deps = [
brettw533c50422015-02-26 17:49:16809 "//base:base_unittests", # PASSES (*) 2/25/2015
810 "//cc:cc_unittests", # PASSES 2/25/2015
811 "//chrome/test:browser_tests",
812 "//chrome/test:interactive_ui_tests",
brettw922d3aa2015-02-27 22:15:46813 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GYP.
brettw533c50422015-02-26 17:49:16814 "//chrome/test:unit_tests", # PASSES 2/25/2015
brettw922d3aa2015-02-27 22:15:46815 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54816 "//components:components_browsertests", # PASSES 4/17/2015
brettw77b58722015-02-27 23:35:06817 "//components:components_unittests", # PASSES 2/27/2015
brettw533c50422015-02-26 17:49:16818 "//content/test:content_browsertests",
819 "//content/test:content_unittests", # PASSES 2/25/2015
820 "//crypto:crypto_unittests", # PASSES 2/25/2015
821 "//dbus:dbus_unittests", # PASSES 2/25/2015
tfarina466754f2015-03-09 23:39:29822 "//device:device_unittests", # PASSES 3/07/2015
brettw533c50422015-02-26 17:49:16823 "//extensions:extensions_browsertests", # PASSES 2/25/2015
824 "//extensions:extensions_unittests", # PASSES 2/25/2015
825 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
826 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
827 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
828 "//gpu:gpu_unittests", # PASSES 2/25/2015
829 "//ipc:ipc_tests", # PASSES 2/25/2015
830 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
831 "//jingle:jingle_unittests", # PASSES 2/25/2015
aboxhall60006f22015-04-22 18:27:55832 "//media:media_unittests", # PASSES 3/3/2015
toyoshimc64757792015-04-30 14:52:02833 "//media/cast:cast_unittests", # PASSES 2/25/2015
834 "//media/midi:midi_unittests", # PASSES 4/10/2015
brettw533c50422015-02-26 17:49:16835 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
836 "//net:net_unittests", # PASSES 2/25/2015
brettw31f4de692015-03-04 17:24:45837 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
brettw533c50422015-02-26 17:49:16838 "//printing:printing_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02839 "//remoting:remoting_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16840 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
841 "//skia:skia_unittests", # PASSES 2/25/2015
842 "//sql:sql_unittests", # PASSES 2/25/2015
843 "//sync:sync_unit_tests", # PASSES 2/25/2015
844 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015
845 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
846 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
847 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
848 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54849 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
brettw533c50422015-02-26 17:49:16850 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
851 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
852 "//ui/aura:aura_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02853 "//ui/base:ui_base_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16854 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
855 "//ui/display:display_unittests", # PASSES 2/25/2015
856 "//ui/events:events_unittests", # PASSES 2/25/2015
857 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
dyen781489a2015-05-05 21:40:56858 "//ui/gl:gl_unittests",
brettw533c50422015-02-26 17:49:16859 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
860 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
861 "//ui/wm:wm_unittests", # PASSES 2/25/2015
862 "//url:url_unittests", # PASSES 2/25/2015
863
864 # Note:
865 # (*) Fails but failures match GYP build at time of testing.
866 ]
tfarina47830e342015-03-30 23:02:11867
868 if (enable_nacl) {
869 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015
870 }
brettw533c50422015-02-26 17:49:16871 }
brettw690c96672015-04-21 16:19:54872} else if (is_win) {
873 group("windows_default_tests") {
874 testonly = true
875 deps = [
876 "//ash:ash_unittests", # FAILS 4/20/2015
brettw9a19ddb2015-04-24 19:30:50877 "//base:base_unittests", # PASSES 4/20/2015
brettw690c96672015-04-21 16:19:54878 "//cc:cc_unittests", # PASSES 4/17/2015
879 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
brettweb1f7ac2015-05-01 17:43:01880 "//chrome/installer/util:installer_util_unittests",
grt734e87b2015-07-06 19:36:43881 "//chrome/installer/setup:setup_unittests",
brettw690c96672015-04-21 16:19:54882 "//chrome/test:browser_tests",
883 "//chrome/test:interactive_ui_tests",
884 "//chrome/test:sync_integration_tests", # Note: need to turn off incremental linking for debug.
885 "//chrome/test:unit_tests",
886 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
brettweb1f7ac2015-05-01 17:43:01887 "//components:components_browsertests", # PASSES 4/24/2015
brettw690c96672015-04-21 16:19:54888 "//components:components_unittests", # PASSES 4/17/2015
889 "//courgette:courgette_unittests", # PASSES 4/20/2015
890 "//content/test:content_browsertests",
891 "//content/test:content_unittests", # PASSES 4/17/2015
892 "//crypto:crypto_unittests", # PASSES 4/17/2015
893 "//device:device_unittests", # PASSES 4/17/2015
894 "//extensions:extensions_browsertests", # PASSES 4/17/2015
895 "//extensions:extensions_unittests", # PASSES 4/17/2015
896 "//extensions/shell:app_shell_unittests", # Doesn't compile in 64-bit
897 "//google_apis/gcm:gcm_unit_tests", # PASSES 4/17/2015
898 "//google_apis:google_apis_unittests", # PASSES 4/17/2015
899 "//gpu:gpu_unittests", # PASSES 4/17/2015
900 "//ipc:ipc_tests", # PASSES 4/17/2015
901 "//ipc/mojo:ipc_mojo_unittests", # PASSES 4/17/2015
902 "//jingle:jingle_unittests", # PASSES 4/17/2015
903 "//media/cast:cast_unittests", # PASSES 4/17/2015
904 "//media:media_unittests", # PASSES 4/17/2015
905 "//mojo/common:mojo_common_unittests", # PASSES 4/17/2015
906 "//net:net_unittests", # PASSES 4/17/2015
907 "//ppapi:ppapi_unittests", # PASSES 4/17/2015
908 "//printing:printing_unittests", # PASSES 4/17/2015
909 "//remoting:remoting_unittests", # PASSES 4/17/2015
910 "//sandbox/win:sbox_integration_tests", # PASSES 4/20/2015
911 "//sandbox/win:sbox_unittests", # PASSES 4/20/2015
912 "//sandbox/win:sbox_validation_tests", # PASSES 4/20/2015
913 "//skia:skia_unittests", # PASSES 4/17/2015
914 "//sql:sql_unittests", # PASSES 4/17/2015
915 "//sync:sync_unit_tests", # PASSES 4/20/2015
916 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 4/20/2015
917 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # Seems to hang?
918 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # FAILS
919 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 4/20/2015
920 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 4/20/2015
921 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", # PASSES 4/20/2015
922 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015
923 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015
924 "//ui/aura:aura_unittests", # PASSES 4/17/2015
925 "//ui/base:ui_base_unittests", # PASSES 4/20/2015
926 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015
927 "//ui/display:display_unittests", # PASSES 4/20/2015
928 "//ui/events:events_unittests", # PASSES 4/20/2015
929 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015
dyen781489a2015-05-05 21:40:56930 "//ui/gl:gl_unittests",
brettw690c96672015-04-21 16:19:54931 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015
932 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015
brettw2a647722015-04-24 21:51:42933 "//ui/views:views_unittests", # TooltipControllerTest failures
934 "//ui/wm:wm_unittests", # PASSES 4/21/2015
brettw690c96672015-04-21 16:19:54935 "//url:url_unittests", # PASSES 4/17/2015
936
brettw690c96672015-04-21 16:19:54937 # TODO(GYP) nacl_integration
938 # TODO(GYP) telemetry_perf_unittests
939 # TODO(GYP) telemetry_unittests
940 ]
941 }
brettw533c50422015-02-26 17:49:16942}