[go: nahoru, domu]

blob: 3afc7578688e9e6218d8336835a2f06035b26b05 [file] [log] [blame]
brettw@chromium.orgf0e7ff882013-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")
tfarina@chromium.org378b4f02014-06-10 15:58:4513import("//build/config/ui.gni")
dprankefd1813272015-04-13 23:56:0014import("//build/module_args/v8.gni")
mostynb2196a462015-08-20 17:22:1015import("//media/media_options.gni")
dprankee2ef3822015-02-24 21:42:1816
cjhopmanca675d3e2014-10-24 03:50:4517if (is_android) {
18 import("//build/config/android/config.gni")
19}
tfarina@chromium.org378b4f02014-06-10 15:58:4520
brettwb84b2942014-10-22 22:58:4521declare_args() {
22 # A list of extra dependencies to add to the root target. This allows a
23 # checkout to add additional targets without explicitly changing any checked-
24 # in files.
25 root_extra_deps = []
26}
27
dprankeb6128d02015-05-01 16:40:3028# This file defines the following four main targets:
dpranked62d8512015-03-02 03:06:0329#
dprankeddc174902015-04-29 01:38:3530# "both_gn_and_gyp" should list every root target (target that nothing else
31# depends on) built by GN that is also built in the GYP build.
dpranked62d8512015-03-02 03:06:0332#
dprankeddc174902015-04-29 01:38:3533# "gn_all" should (transitively) cause everything to be built; if you run
34# 'ninja gn_all' and then 'ninja all', the second build should do no work.
35#
36# "gn_only" should list every root target that is *not* intended to be built
37# in a GYP build. Because GN has different rules for deciding what an 'all'
38# build is, this may end up including targets that are actually defined in a
39# GYP build but not dependencies of GYP's "all" (and so not actually built).
40#
dprankeb6128d02015-05-01 16:40:3041# "gn_visibility": targets that are normally not visible to top-level targets,
42# but are built anyway by "all". Since we don't want any such targets, we
43# have this placeholder to make sure hidden targets that aren't otherwise
44# depended on yet are accounted for.
45#
dprankeddc174902015-04-29 01:38:3546# TODO(GYP): crbug.com/481694. Make sure that the above is true and there are
47# scripts run on the bots that enforce this. Once the GYP migration is over,
48# we can collapse all of these targets as desired.
dprankeff30e3d2015-02-24 06:52:3949
dprankee2ef3822015-02-24 21:42:1850group("gn_all") {
dprankeddc174902015-04-29 01:38:3551 testonly = true
52
53 deps = [
54 ":both_gn_and_gyp",
55 ":gn_only",
dprankeb6128d02015-05-01 16:40:3056 ":gn_visibility",
dprankeddc174902015-04-29 01:38:3557 ]
58}
59
60# The "both_gn_and_gyp" target should reflect every target that is built
61# in both the GN and GYP builds, and ideally it should match the
62# "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line.
63#
64# TODO(GYP): Add build steps that check and enforce this on the bots.
65group("both_gn_and_gyp") {
dprankee2ef3822015-02-24 21:42:1866 testonly = true
dprankee2ef3822015-02-24 21:42:1867 deps = [
68 "//base:base_unittests",
sdefresne4128da42015-08-11 14:51:0869 "//sql:sql_unittests",
sheroukce1c7d72015-08-24 15:21:5970 "//net:net_unittests",
sherouk2866d662015-08-24 16:29:4471 "//skia:skia_unittests",
sherouk4fb74d42015-08-24 15:58:4172 "//ui/base:ui_base_unittests",
73 "//url:url_unittests",
dprankee2ef3822015-02-24 21:42:1874 ]
dpranke2a294622015-08-07 05:23:0175
sherouk53f0f1a2015-08-03 15:59:3576 if (!is_ios) {
dpranke2a294622015-08-07 05:23:0177 # TODO(GYP): Figure out which of these should actually build on iOS,
78 # and whether there should be other targets that are iOS-only and missing.
sherouk53f0f1a2015-08-03 15:59:3579 deps += [
80 "//cc:cc_unittests",
81 "//chrome",
82 "//chrome/test:browser_tests",
83 "//chrome/test:interactive_ui_tests",
84 "//chrome/test:sync_integration_tests",
85 "//chrome/test:unit_tests",
86 "//chrome/test/chromedriver:chromedriver_unittests",
87 "//components:components_browsertests",
88 "//components:components_unittests",
89 "//content/shell:content_shell",
90 "//content/test:content_browsertests",
91 "//content/test:content_perftests",
92 "//content/test:content_unittests",
93 "//crypto:crypto_unittests",
94 "//device:device_unittests",
95 "//extensions:extensions_browsertests",
96 "//extensions:extensions_unittests",
97 "//google_apis/gcm:gcm_unit_tests",
98 "//gpu:gpu_unittests",
dprankedbdd9d82015-08-12 21:18:1899 "//gpu/gles2_conform_support:gles2_conform_test",
sherouk53f0f1a2015-08-03 15:59:35100 "//ipc:ipc_tests",
101 "//ipc/mojo:ipc_mojo_unittests",
102 "//jingle:jingle_unittests",
103 "//media:media_unittests",
104 "//media/cast:cast_unittests",
105 "//media/midi:midi_unittests",
106 "//mojo",
107 "//mojo/application/public/cpp",
108 "//mojo/common:mojo_common_unittests",
109 "//net:hpack_example_generator",
110 "//net:hpack_fuzz_mutator",
111 "//net:hpack_fuzz_wrapper",
112 "//net:net_perftests",
sherouk53f0f1a2015-08-03 15:59:35113 "//ppapi:ppapi_unittests",
114 "//ppapi/examples/2d",
115 "//ppapi/examples/audio",
116 "//ppapi/examples/audio_input",
117 "//ppapi/examples/compositor",
118 "//ppapi/examples/crxfs",
119 "//ppapi/examples/enumerate_devices",
120 "//ppapi/examples/file_chooser",
121 "//ppapi/examples/flash_topmost",
122 "//ppapi/examples/font",
123 "//ppapi/examples/gamepad",
124 "//ppapi/examples/gles2",
125 "//ppapi/examples/gles2_spinning_cube",
126 "//ppapi/examples/ime",
127 "//ppapi/examples/input",
128 "//ppapi/examples/media_stream_audio",
129 "//ppapi/examples/media_stream_video",
130 "//ppapi/examples/mouse_cursor",
131 "//ppapi/examples/mouse_lock",
132 "//ppapi/examples/printing",
133 "//ppapi/examples/scaling",
134 "//ppapi/examples/scripting",
135 "//ppapi/examples/stub",
136 "//ppapi/examples/threading",
137 "//ppapi/examples/url_loader",
138 "//ppapi/examples/video_capture",
139 "//ppapi/examples/video_decode",
140 "//ppapi/examples/video_effects",
141 "//ppapi/examples/video_encode",
142 "//printing:printing_unittests",
dpranke2a294622015-08-07 05:23:01143 "//sync:sync_unit_tests",
sherouk53f0f1a2015-08-03 15:59:35144 "//third_party/WebKit/Source/platform:heap_unittests",
145 "//third_party/WebKit/Source/platform:platform_unittests",
146 "//third_party/WebKit/Source/web:webkit_unit_tests",
147 "//third_party/WebKit/Source/wtf:wtf_unittests",
148 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
149 "//third_party/codesighs",
150 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
151 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
152 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
153 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
154 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
155 "//third_party/pdfium/samples:pdfium_test",
156 "//third_party/smhasher:pmurhash",
157 "//tools/imagediff($host_toolchain)",
158 "//tools/gn",
159 "//tools/gn:gn_unittests",
160 "//tools/gn:generate_test_gn_data",
161 "//tools/telemetry:bitmaptools($host_toolchain)",
162 "//ui/accessibility:accessibility_unittests",
163 "//ui/app_list:app_list_unittests",
sherouk53f0f1a2015-08-03 15:59:35164 "//ui/display:display_unittests",
165 "//ui/events:events_unittests",
166 "//ui/gfx:gfx_unittests",
167 "//ui/gl:gl_unittests",
168 "//ui/touch_selection:ui_touch_selection_unittests",
sherouk53f0f1a2015-08-03 15:59:35169 ]
170 }
dprankee2ef3822015-02-24 21:42:18171
scottmg34fb7e52014-12-03 23:27:24172 deps += root_extra_deps
brettw@chromium.orgfce5c3fe2014-04-10 21:13:05173
dpranke021d4c92015-02-24 02:08:25174 if (enable_extensions && !is_mac) {
dprankefd1813272015-04-13 23:56:00175 # TODO(GYP): Get this working on the mac?
rockot2f1326e2015-02-23 23:53:51176 deps += [ "//extensions/shell:app_shell_unittests" ]
dprankefd1813272015-04-13 23:56:00177 }
178
dprankefd1813272015-04-13 23:56:00179 if (enable_media_router) {
imchengb6b09239f2015-05-15 21:41:55180 deps += [ "//chrome/browser/media/router" ]
rockot2f1326e2015-02-23 23:53:51181 }
182
garykac3eddb5b2015-04-17 23:16:38183 if (enable_remoting) {
184 deps += [ "//remoting:remoting_all" ]
James Robinson060f2e32014-09-10 22:31:37185 }
186
dprankee2ef3822015-02-24 21:42:18187 if (toolkit_views) {
188 deps += [ "//ui/views:views_unittests" ]
brettw@chromium.org6b9028ab2014-07-23 17:15:38189 }
190
dprankee2ef3822015-02-24 21:42:18191 if (use_aura) {
192 deps += [ "//ui/wm:wm_unittests" ]
193 }
194
195 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47196 deps += [ "//ui/ozone" ]
tfarina@chromium.orga306aaa2014-05-24 13:21:50197 }
198
dprankefd1813272015-04-13 23:56:00199 if (use_x11) {
200 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22201 }
202
tmoniuszkoe5578b922015-04-14 09:38:03203 if (enable_configuration_policy) {
204 deps += [ "//components/policy:policy_templates" ]
205 }
206
dprankefd1813272015-04-13 23:56:00207 if (v8_use_external_startup_data) {
208 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
brettw@chromium.org137dff6d2014-06-12 19:35:55209 }
210
brettw66e3feab2015-07-20 23:52:22211 if (is_win) {
212 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
213 }
214
dpranke@chromium.org5a8d5162014-04-12 01:19:16215 if (is_android) {
cjhopman@chromium.org26046b52014-07-16 00:11:03216 deps += [
cjhopman31511332014-10-23 01:05:02217 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38218 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02219 "//build/android/rezip",
yfriedmanc1995be82015-05-29 17:52:25220 "//chrome/android:chrome_public_apk",
221 "//chrome/android:chrome_public_test_apk",
hiroshigee6d374c2015-02-24 07:54:06222 "//chrome/android:chrome_shell_apk",
hiroshigee6d374c2015-02-24 07:54:06223 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
agrieve40ba6862015-07-15 02:09:05224 "//third_party/errorprone:chromium_errorprone",
dprankee2ef3822015-02-24 21:42:18225 "//tools/imagediff($host_toolchain)",
226
227 # TODO(GYP): Remove these when the components_unittests work.
228 "//components/history/core/test:test",
229 "//components/policy:policy_component_test_support",
230 "//components/policy:test_support",
231 "//components/rappor:test_support",
232 "//components/signin/core/browser:test_support",
233 "//components/sync_driver:test_support",
234 "//components/user_manager",
235 "//components/wallpaper",
236 "//content/shell/android:content_shell_apk",
237
238 # TODO(GYP): Are these needed, or will they be pulled in automatically?
cjhopman@chromium.org684b2292014-08-22 19:12:39239 "//third_party/android_tools:android_gcm_java",
240 "//third_party/android_tools:uiautomator_java",
241 "//third_party/android_tools:android_support_v13_java",
242 "//third_party/android_tools:android_support_v7_appcompat_java",
243 "//third_party/android_tools:android_support_v7_mediarouter_java",
dprankee2ef3822015-02-24 21:42:18244 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29245 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18246 "//third_party/openmax_dl/dl",
dprankee2ef3822015-02-24 21:42:18247 "//ui/android:ui_java",
248
249 # TODO(GYP): Are these needed?
250 "//chrome/test:test_support_unit",
251 "//third_party/smhasher:murmurhash3",
252 "//ui/message_center:test_support",
253 ]
254 deps -= [
dprankee2ef3822015-02-24 21:42:18255 "//chrome", # TODO(GYP) ??
256 "//chrome/test:browser_tests", # TODO(GYP) ??
257 "//chrome/test:interactive_ui_tests", # TODO(GYP) ??
258 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
259 "//chrome/test:unit_tests", # TODO(GYP)
brettw922d3aa2015-02-27 22:15:46260
261 # Chromedriver shouldn't be compiled on Android.
262 "//chrome/test/chromedriver:chromedriver_unittests",
dprankee2ef3822015-02-24 21:42:18263 "//extensions:extensions_browsertests",
264 "//extensions:extensions_unittests",
265 "//google_apis/gcm:gcm_unit_tests",
266 "//ipc:ipc_tests", # TODO(GYP) ??
267 "//jingle:jingle_unittests", # TODO(GYP) ??
rockot9c67e5f2015-03-12 20:01:21268 "//net:hpack_example_generator",
269 "//net:hpack_fuzz_mutator",
270 "//net:hpack_fuzz_wrapper",
271 "//net:net_perftests",
tfarina79ef072d2015-04-04 20:16:57272 "//ppapi/examples/2d",
273 "//ppapi/examples/audio",
274 "//ppapi/examples/audio_input",
275 "//ppapi/examples/compositor",
276 "//ppapi/examples/crxfs",
277 "//ppapi/examples/enumerate_devices",
278 "//ppapi/examples/file_chooser",
279 "//ppapi/examples/flash_topmost",
280 "//ppapi/examples/font",
281 "//ppapi/examples/gamepad",
282 "//ppapi/examples/gles2",
283 "//ppapi/examples/gles2_spinning_cube",
284 "//ppapi/examples/ime",
285 "//ppapi/examples/input",
286 "//ppapi/examples/media_stream_audio",
287 "//ppapi/examples/media_stream_video",
288 "//ppapi/examples/mouse_cursor",
289 "//ppapi/examples/mouse_lock",
290 "//ppapi/examples/printing",
291 "//ppapi/examples/scaling",
292 "//ppapi/examples/scripting",
293 "//ppapi/examples/stub",
294 "//ppapi/examples/threading",
295 "//ppapi/examples/url_loader",
296 "//ppapi/examples/video_capture",
297 "//ppapi/examples/video_decode",
298 "//ppapi/examples/video_effects",
299 "//ppapi/examples/video_encode",
dprankee2ef3822015-02-24 21:42:18300 "//third_party/pdfium/samples:pdfium_test",
301 "//tools/gn",
dprankefd1813272015-04-13 23:56:00302 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18303 "//tools/gn:gn_unittests",
304 "//ui/app_list:app_list_unittests",
305 "//url:url_unittests",
cjhopman@chromium.org26046b52014-07-16 00:11:03306 ]
307
cjhopmanca675d3e2014-10-24 03:50:45308 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18309 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45310 }
dprankefd1813272015-04-13 23:56:00311 }
312
313 if (is_linux) { # TODO(GYP): || is_android || is_bsd?
314 deps += [
315 "//breakpad:core-2-minidump",
316 "//breakpad:minidump-2-core",
317 ]
318 }
319
dpranke6293d252015-04-14 19:12:00320 if (is_chromeos) {
321 deps += [
322 "//chromeos:chromeos_unittests",
323 "//ui/chromeos:ui_chromeos_unittests",
324 ]
325 }
326
dprankefd1813272015-04-13 23:56:00327 if (is_chromeos || is_mac || is_win) {
328 deps += [
329 "//rlz:rlz_id",
330 "//rlz:rlz_lib",
331 "//rlz:rlz_unittests",
332 ]
dprankedb5527d72015-03-08 04:22:47333 }
334
335 if (is_linux) {
336 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06337 deps += [
dprankedb5527d72015-03-08 04:22:47338 "//breakpad:breakpad_unittests",
dprankedb5527d72015-03-08 04:22:47339 "//breakpad:generate_test_dump",
dprankedb5527d72015-03-08 04:22:47340 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18341 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47342 "//net:disk_cache_memory_test",
343 "//net:flip_in_mem_edsm_server",
344 "//net:flip_in_mem_edsm_server_unittests",
345 "//net:quic_client",
346 "//net:quic_server",
347 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18348 "//sandbox/linux:sandbox_linux_unittests",
dprankedb5527d72015-03-08 04:22:47349 "//sandbox/linux:sandbox_linux_jni_unittests",
hiroshigee6d374c2015-02-24 07:54:06350 ]
dnicoara8c6aa8e2015-03-11 23:20:32351
352 if (is_chromeos || use_ash) {
353 deps += [ "//components/session_manager/core" ]
354 }
dprankedb5527d72015-03-08 04:22:47355 }
356
sherouke1859f92015-08-05 10:19:10357 if (is_ios || is_win || (is_linux && !is_chromeos)) {
358 deps += [
359 "//base:base_i18n_perftests",
360 "//base:base_perftests",
361 ]
362 }
363
dprankefd1813272015-04-13 23:56:00364 if (is_win || (is_linux && !is_chromeos)) {
365 # TODO(GYP): Figure out which of these should (and can) build
366 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44367 deps += [
dprankedb5527d72015-03-08 04:22:47368 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47369 "//base:build_utf8_validator_tables",
dprankedb5527d72015-03-08 04:22:47370 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00371 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47372 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00373 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47374 "//chrome/test:sync_performance_tests",
375 "//chrome/test/chromedriver:chromedriver",
376 "//chrome/test/chromedriver:chromedriver_tests",
377 "//chrome/tools/profile_reset:jtl_compiler",
378 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47379 "//content/test:content_gl_tests",
380 "//content/test:content_gl_benchmark",
381 "//courgette:courgette",
382 "//courgette:courgette_fuzz",
383 "//courgette:courgette_minimal_tool",
384 "//courgette:courgette_unittests",
385 "//device:device_unittests",
386 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47387 "//gin:gin_unittests",
388 "//google_apis:google_apis_unittests",
389 "//google_apis/gcm:mcs_probe",
390 "//gpu:angle_unittests",
dprankedb5527d72015-03-08 04:22:47391 "//gpu:gpu_perftests",
dprankefd1813272015-04-13 23:56:00392 "//gpu:gl_tests",
dprankedb5527d72015-03-08 04:22:47393 "//ipc:ipc_perftests",
dprankedb5527d72015-03-08 04:22:47394 "//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
mostynb2196a462015-08-20 17:22:10425 if (media_use_ffmpeg) {
426 deps += [ "//media:ffmpeg_regression_tests" ]
427 }
428
dprankedb5527d72015-03-08 04:22:47429 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
dprankefd1813272015-04-13 23:56:00475 "//third_party/codesighs:nm2tsv",
476 "//third_party/sqlite:sqlite_shell",
477 ]
478
479 if (current_toolchain == host_toolchain) {
480 # Do not build the breakpad utilities in cross-compiles.
481 deps += [
482 "//breakpad:dump_syms",
483 "//breakpad:microdump_stackwalk",
484 "//breakpad:minidump_dump",
485 "//breakpad:minidump_stackwalk",
486 ]
487 }
488
489 if (!is_debug && !is_component_build) {
490 deps += [ "//chrome/tools/service_discovery_sniffer" ]
491 }
492
493 if (toolkit_views) {
494 deps += [ "//ui/app_list:app_list_demo" ]
495 }
dprankedb5527d72015-03-08 04:22:47496
497 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44498 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59499 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44500 }
dprankedb5527d72015-03-08 04:22:47501 }
502 }
503
504 if (is_mac) {
505 deps += [
506 "//breakpad:crash_inspector",
507 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44508 "//third_party/apple_sample_code",
509 "//third_party/molokocacao",
510 ]
511
dprankee2ef3822015-02-24 21:42:18512 # TODO(GYP): Remove these when the targets below work and these
513 # are pulled in automatically.
514 deps += [
515 "//cc/blink",
Brett Wilson817fec02015-08-22 20:36:49516 "//components/ui/zoom",
dprankee2ef3822015-02-24 21:42:18517 "//content",
518 "//content/test:test_support",
519 "//device/battery",
520 "//device/bluetooth",
521 "//device/nfc",
522 "//device/usb",
523 "//device/vibration",
524 "//media/blink",
525 "//pdf",
526 "//storage/browser",
527 "//third_party/brotli",
528 "//third_party/flac",
tfarinae4a03f8f2015-05-18 05:55:26529 "//third_party/hunspell",
dprankee2ef3822015-02-24 21:42:18530 "//third_party/iccjpeg",
531 "//third_party/libphonenumber",
532 "//third_party/ots",
533 "//third_party/qcms",
534 "//third_party/smhasher:murmurhash3",
dprankee2ef3822015-02-24 21:42:18535 "//third_party/webrtc/system_wrappers",
tfarina42aa0172015-08-13 21:12:40536 "//ui/app_list:app_list_unittests",
tfarinaeda26472015-08-12 19:30:15537 "//ui/gfx:gfx_unittests",
dprankee2ef3822015-02-24 21:42:18538 "//ui/native_theme",
539 "//ui/snapshot",
540 "//ui/surface",
541 ]
542
dprankecf8465db72014-11-10 23:51:22543 # TODO(dpranke): These are as-yet untriaged but need at least the above.
dpranke43760592014-11-08 02:59:57544 deps -= [
dprankee2ef3822015-02-24 21:42:18545 "//chrome", # TODO(GYP)
546 "//chrome/test:browser_tests", # TODO(GYP)
547 "//chrome/test:interactive_ui_tests", # TODO(GYP)
548 "//chrome/test:sync_integration_tests", # TODO(GYP)
549 "//chrome/test:unit_tests", # TODO(GYP)
dprankef6ca89c52015-03-30 22:01:38550 "//components:components_browsertests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18551 "//components:components_unittests", # TODO(GYP)
552 "//content/test:content_browsertests", # TODO(GYP)
553 "//content/test:content_perftests", # TODO(GYP)
dprankeb0713542015-07-31 21:07:21554 "//device:device_unittests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18555 "//extensions:extensions_browsertests", # TODO(GYP)
556 "//extensions:extensions_unittests", # TODO(GYP)
dprankeb0713542015-07-31 21:07:21557 "//mojo", # TODO(GYP)
558 "//mojo/application/public/cpp", # TODO(GYP)
tfarinacb2638b2015-05-12 03:24:15559
560 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
561 "//third_party/WebKit/Source/platform:heap_unittests",
562 "//third_party/WebKit/Source/platform:platform_unittests",
563 "//third_party/WebKit/Source/web:webkit_unit_tests",
mohsen29fd4052014-12-08 21:06:46564 ]
dprankefd1813272015-04-13 23:56:00565 }
566
567 if (is_win) {
568 deps += [
569 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43570 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00571 "//chrome_elf:chrome_elf_unittests",
572 "//chrome_elf:dll_hash_main",
dprankedb5a56c2015-04-29 18:01:09573 "//components/crash/tools:crash_service",
dprankefd1813272015-04-13 23:56:00574 "//components/wifi:wifi_test",
575 "//net:quic_client",
576 "//net:quic_server",
577 "//sandbox/win:pocdll",
578 "//sandbox/win:sandbox_poc",
579 "//sandbox/win:sbox_integration_tests",
580 "//sandbox/win:sbox_unittests",
581 "//sandbox/win:sbox_validation_tests",
582 "//testing/gtest:gtest_main",
583 "//third_party/codesighs:msmap2tsv",
584 "//third_party/pdfium/samples:pdfium_diff",
585 "//ui/metro_viewer",
586 ]
dprankee2ef3822015-02-24 21:42:18587 deps -= [
588 "//crypto:crypto_unittests", # TODO(GYP)
589 "//net:net_unittests", # TODO(GYP)
590 ]
sherouk53f0f1a2015-08-03 15:59:35591 } else if (!is_android && !is_ios) {
dpranke6293d252015-04-14 19:12:00592 deps += [ "//breakpad:symupload" ]
mohsenf837da7c2014-12-09 19:01:34593 }
hendrikw5c1da6d2015-06-18 15:08:57594
595 if (!is_ios) {
596 deps += [ "//gpu/skia_runner:skia_runner" ]
597 }
dpranke18e57432015-02-27 21:46:47598}
599
dpranked62d8512015-03-02 03:06:03600group("gn_only") {
dprankedb5527d72015-03-08 04:22:47601 testonly = true
602
dpranke2a294622015-08-07 05:23:01603 deps = []
604
sherouk53f0f1a2015-08-03 15:59:35605 if (!is_ios) {
dpranke2a294622015-08-07 05:23:01606 deps += [ "//mandoline:all" ]
sherouk53f0f1a2015-08-03 15:59:35607 }
isherman0f89b43eb2015-04-11 00:02:45608
609 if (!is_android && !is_ios) {
610 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
611 }
612
dprankedb5527d72015-03-08 04:22:47613 if (is_linux && !is_chromeos) {
614 # TODO(GYP): Figure out if any of these should be in gn_all
615 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45616 deps += [
dprankedb5527d72015-03-08 04:22:47617 ":gn_mojo_targets",
618 "//chrome/browser/resources:extension_resource_demo",
619 "//chrome/installer/util:strings",
620 "//chrome:main_dll",
621 "//chrome/test:load_library_perf_tests",
622 "//chrome/tools/convert_dict",
623 "//components/constrained_window:unit_tests",
624 "//components/enhanced_bookmarks:test_support",
dprankedb5527d72015-03-08 04:22:47625 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45626 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47627 "//components/rappor:unit_tests",
628 "//components/sessions:unit_tests",
629 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47630 "//media/cast:udp_proxy",
631 "//native_client/src/trusted/platform_qualify:vcpuid",
632 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
633 "//storage/browser:dump_file_system",
634 "//third_party/angle:libANGLE",
635 "//third_party/angle:libEGL",
636 "//third_party/angle:libGLESv2",
637 "//third_party/cld_2:cld_2_dynamic_data_tool",
638 "//third_party/leveldatabase:leveldb_arena_test",
639 "//third_party/leveldatabase:leveldb_bloom_test",
640 "//third_party/leveldatabase:leveldb_db_test",
641 "//third_party/leveldatabase:leveldb_crc32c_test",
642 "//third_party/leveldatabase:leveldb_cache_test",
643 "//third_party/leveldatabase:leveldb_env_test",
644 "//third_party/leveldatabase:leveldb_write_batch_test",
645 "//third_party/leveldatabase:leveldb_filter_block_test",
646 "//third_party/leveldatabase:leveldb_version_edit_test",
647 "//third_party/leveldatabase:leveldb_db_bench",
648 "//third_party/leveldatabase:leveldb_log_test",
649 "//third_party/leveldatabase:leveldb_corruption_test",
650 "//third_party/leveldatabase:leveldb_table_test",
651 "//third_party/leveldatabase:leveldb_skiplist_test",
652 "//third_party/leveldatabase:leveldb_filename_test",
653 "//third_party/leveldatabase:leveldb_dbformat_test",
thestig93786e62015-08-05 04:03:29654 "//third_party/pdfium/third_party:fx_freetype",
dprankedb5527d72015-03-08 04:22:47655 "//third_party/libjpeg_turbo:simd",
dprankedb5527d72015-03-08 04:22:47656 "//third_party/libsrtp:replay_driver",
657 "//third_party/libsrtp:roc_driver",
658 "//third_party/libsrtp:rtpw",
659 "//third_party/libsrtp:rdbx_driver",
660 "//third_party/libsrtp:srtp_driver",
661 "//third_party/libsrtp:srtp_driver",
662 "//third_party/libsrtp:srtp_test_kernel_driver",
663 "//third_party/libsrtp:srtp_test_cipher_driver",
664 "//third_party/libsrtp:srtp_test_datatypes_driver",
665 "//third_party/libsrtp:srtp_test_aes_calc",
666 "//third_party/libsrtp:srtp_test_env",
667 "//third_party/libsrtp:srtp_test_rand_gen",
668 "//third_party/libsrtp:srtp_test_sha1_driver",
669 "//third_party/libsrtp:srtp_test_stat_driver",
670 "//third_party/opus:opus_compare",
671 "//third_party/opus:opus_demo",
672 "//third_party/opus:test_opus_decode",
673 "//third_party/opus:test_opus_encode",
674 "//third_party/opus:test_opus_api",
675 "//third_party/opus:test_opus_padding",
676 "//third_party/webrtc/system_wrappers:field_trial_default",
677 "//third_party/webrtc/system_wrappers:metrics_default",
678 "//ui/display/types",
679 "//ui/shell_dialogs:shell_dialogs_unittests",
680 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47681 ]
dprankeb0713542015-07-31 21:07:21682
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16683 if (target_cpu == "x86" || target_cpu == "x64") {
684 deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
685 }
dprankedb5527d72015-03-08 04:22:47686 if (enable_nacl) {
687 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
688 }
689 if (use_ozone) {
690 deps += [ "//ui/ozone/demo" ]
691 }
692 if (is_android) {
693 deps += [ "//build/android/gyp/test:hello_world" ]
694 }
dpranke807f6022015-03-17 23:20:56695
696 if (is_linux && current_toolchain == host_toolchain) {
697 deps += [ "//v8:d8" ]
698 }
dprankedb5527d72015-03-08 04:22:47699 }
dprankeb0713542015-07-31 21:07:21700
701 if (is_mac) {
702 deps -= [ "//mandoline:all" ] # TODO(GYP)
703 }
dprankedb5527d72015-03-08 04:22:47704}
705
706group("gn_mojo_targets") {
707 testonly = true
708 if (is_linux && !is_chromeos) {
709 # TODO(GYP): Figure out if any of these should be in gn_all
710 # and figure out how cross-platform they are
711 deps = [
712 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47713 "//content/public/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47714 "//content/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47715 "//content/test:web_ui_test_mojo_bindings_python",
716 "//device/battery:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47717 "//device/vibration:mojo_bindings_python",
718 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47719 "//ipc/mojo:client_channel_python",
dprankedb5527d72015-03-08 04:22:47720 "//media/mojo/interfaces:interfaces_python",
721 "//media/mojo/services:cdm_service",
722 "//media/mojo:tests",
msw1bb9c6c2015-05-06 21:35:44723 "//mojo:tests",
dprankedb5527d72015-03-08 04:22:47724 "//net/interfaces:interfaces_python",
725 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47726 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
727 "//third_party/mojo/src/mojo/public/python:packaged_application",
728 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
dprankedb5527d72015-03-08 04:22:47729 "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
dprankedb5527d72015-03-08 04:22:47730 ]
dprankedb5527d72015-03-08 04:22:47731 }
732}
733
734group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03735 deps = [
dprankeb6128d02015-05-01 16:40:30736 "//build/config/sanitizers:options_sources",
737
dprankedb5527d72015-03-08 04:22:47738 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
739 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30740
741 "//ui/resources:repack_ui_test_mac_locale_pack",
742
tfarina5132ba02015-08-12 23:20:22743 "//v8:v8_snapshot",
744 "//v8:postmortem-metadata",
dpranked62d8512015-03-02 03:06:03745 ]
746}
747
tfarinacb2638b2015-05-12 03:24:15748if (!is_ios) {
749 # This group includes all of the targets needed to build and test Blink,
750 # including running the layout tests (see below).
751 group("blink_tests") {
752 testonly = true
753
754 deps = [
755 "//third_party/WebKit/public:all_blink",
756 ]
757
758 # NOTE: The following deps are needed to run the layout tests
759 # (run-webkit-tests) but there is no GN target for the layout tests,
760 # so we need to specify the dependencies here instead.
761 if (is_android) {
762 deps += [
763 "//breakpad:dump_syms($host_toolchain)",
764 "//breakpad:minidump_stackwalk($host_toolchain)",
765 "//content/shell/android:content_shell_apk",
ojan94989c72015-07-17 21:56:42766 "//tools/imagediff($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15767 ]
768 } else {
ojan94989c72015-07-17 21:56:42769 deps += [
770 "//content/shell:content_shell",
771 "//tools/imagediff",
772 ]
tfarinacb2638b2015-05-12 03:24:15773 }
774
775 if (is_win) {
776 deps += [
jochen73e711c2015-06-03 10:01:46777 "//components/test_runner:layout_test_helper",
tfarina795e01a2015-05-15 19:29:57778 "//content/shell:crash_service",
tfarinacb2638b2015-05-12 03:24:15779 ]
780 }
781
782 if (!is_win && !is_android) {
Gordana.Cmiljanovicf243e9a2015-05-26 22:14:47783 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:15784 }
785
786 if (is_mac) {
787 deps += [
788 "//breakpad:dump_syms($host_toolchain)",
jochen73e711c2015-06-03 10:01:46789 "//components/test_runner:layout_test_helper",
tfarinacb2638b2015-05-12 03:24:15790 ]
791 }
792
793 if (is_linux) {
794 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
795 }
796 }
797}
798
brettw533c50422015-02-26 17:49:16799if (is_linux) {
800 # This group corresponds to the list of tests run on the waterfall for
801 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
802 # here to help track GYP -> GN conversion progress.
803 group("linux_default_tests") {
804 testonly = true
805 deps = [
brettw533c50422015-02-26 17:49:16806 "//base:base_unittests", # PASSES (*) 2/25/2015
807 "//cc:cc_unittests", # PASSES 2/25/2015
808 "//chrome/test:browser_tests",
809 "//chrome/test:interactive_ui_tests",
brettw922d3aa2015-02-27 22:15:46810 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GYP.
brettw533c50422015-02-26 17:49:16811 "//chrome/test:unit_tests", # PASSES 2/25/2015
brettw922d3aa2015-02-27 22:15:46812 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54813 "//components:components_browsertests", # PASSES 4/17/2015
brettw77b58722015-02-27 23:35:06814 "//components:components_unittests", # PASSES 2/27/2015
brettw533c50422015-02-26 17:49:16815 "//content/test:content_browsertests",
816 "//content/test:content_unittests", # PASSES 2/25/2015
817 "//crypto:crypto_unittests", # PASSES 2/25/2015
818 "//dbus:dbus_unittests", # PASSES 2/25/2015
tfarina466754f2015-03-09 23:39:29819 "//device:device_unittests", # PASSES 3/07/2015
brettw533c50422015-02-26 17:49:16820 "//extensions:extensions_browsertests", # PASSES 2/25/2015
821 "//extensions:extensions_unittests", # PASSES 2/25/2015
822 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
823 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
824 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
825 "//gpu:gpu_unittests", # PASSES 2/25/2015
826 "//ipc:ipc_tests", # PASSES 2/25/2015
827 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
828 "//jingle:jingle_unittests", # PASSES 2/25/2015
aboxhall60006f22015-04-22 18:27:55829 "//media:media_unittests", # PASSES 3/3/2015
toyoshimc64757792015-04-30 14:52:02830 "//media/cast:cast_unittests", # PASSES 2/25/2015
831 "//media/midi:midi_unittests", # PASSES 4/10/2015
brettw533c50422015-02-26 17:49:16832 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
833 "//net:net_unittests", # PASSES 2/25/2015
brettw31f4de692015-03-04 17:24:45834 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
brettw533c50422015-02-26 17:49:16835 "//printing:printing_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02836 "//remoting:remoting_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16837 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
838 "//skia:skia_unittests", # PASSES 2/25/2015
839 "//sql:sql_unittests", # PASSES 2/25/2015
840 "//sync:sync_unit_tests", # PASSES 2/25/2015
841 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015
842 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
843 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
844 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
845 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54846 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
brettw533c50422015-02-26 17:49:16847 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
848 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
849 "//ui/aura:aura_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02850 "//ui/base:ui_base_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16851 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
852 "//ui/display:display_unittests", # PASSES 2/25/2015
853 "//ui/events:events_unittests", # PASSES 2/25/2015
854 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
dyen781489a2015-05-05 21:40:56855 "//ui/gl:gl_unittests",
brettw533c50422015-02-26 17:49:16856 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
857 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
858 "//ui/wm:wm_unittests", # PASSES 2/25/2015
859 "//url:url_unittests", # PASSES 2/25/2015
860
861 # Note:
862 # (*) Fails but failures match GYP build at time of testing.
863 ]
tfarina47830e32015-03-30 23:02:11864
865 if (enable_nacl) {
866 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015
867 }
brettw533c50422015-02-26 17:49:16868 }
brettw690c96672015-04-21 16:19:54869} else if (is_win) {
870 group("windows_default_tests") {
871 testonly = true
872 deps = [
873 "//ash:ash_unittests", # FAILS 4/20/2015
brettw9a19ddb2015-04-24 19:30:50874 "//base:base_unittests", # PASSES 4/20/2015
brettw690c96672015-04-21 16:19:54875 "//cc:cc_unittests", # PASSES 4/17/2015
876 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
brettweb1f7ac2015-05-01 17:43:01877 "//chrome/installer/util:installer_util_unittests",
grt734e87b2015-07-06 19:36:43878 "//chrome/installer/setup:setup_unittests",
brettw690c96672015-04-21 16:19:54879 "//chrome/test:browser_tests",
880 "//chrome/test:interactive_ui_tests",
881 "//chrome/test:sync_integration_tests", # Note: need to turn off incremental linking for debug.
882 "//chrome/test:unit_tests",
883 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
brettweb1f7ac2015-05-01 17:43:01884 "//components:components_browsertests", # PASSES 4/24/2015
brettw690c96672015-04-21 16:19:54885 "//components:components_unittests", # PASSES 4/17/2015
886 "//courgette:courgette_unittests", # PASSES 4/20/2015
887 "//content/test:content_browsertests",
888 "//content/test:content_unittests", # PASSES 4/17/2015
889 "//crypto:crypto_unittests", # PASSES 4/17/2015
890 "//device:device_unittests", # PASSES 4/17/2015
891 "//extensions:extensions_browsertests", # PASSES 4/17/2015
892 "//extensions:extensions_unittests", # PASSES 4/17/2015
893 "//extensions/shell:app_shell_unittests", # Doesn't compile in 64-bit
894 "//google_apis/gcm:gcm_unit_tests", # PASSES 4/17/2015
895 "//google_apis:google_apis_unittests", # PASSES 4/17/2015
896 "//gpu:gpu_unittests", # PASSES 4/17/2015
897 "//ipc:ipc_tests", # PASSES 4/17/2015
898 "//ipc/mojo:ipc_mojo_unittests", # PASSES 4/17/2015
899 "//jingle:jingle_unittests", # PASSES 4/17/2015
900 "//media/cast:cast_unittests", # PASSES 4/17/2015
901 "//media:media_unittests", # PASSES 4/17/2015
902 "//mojo/common:mojo_common_unittests", # PASSES 4/17/2015
903 "//net:net_unittests", # PASSES 4/17/2015
904 "//ppapi:ppapi_unittests", # PASSES 4/17/2015
905 "//printing:printing_unittests", # PASSES 4/17/2015
906 "//remoting:remoting_unittests", # PASSES 4/17/2015
907 "//sandbox/win:sbox_integration_tests", # PASSES 4/20/2015
908 "//sandbox/win:sbox_unittests", # PASSES 4/20/2015
909 "//sandbox/win:sbox_validation_tests", # PASSES 4/20/2015
910 "//skia:skia_unittests", # PASSES 4/17/2015
911 "//sql:sql_unittests", # PASSES 4/17/2015
912 "//sync:sync_unit_tests", # PASSES 4/20/2015
913 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 4/20/2015
914 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # Seems to hang?
915 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # FAILS
916 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 4/20/2015
917 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 4/20/2015
918 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", # PASSES 4/20/2015
919 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015
920 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015
921 "//ui/aura:aura_unittests", # PASSES 4/17/2015
922 "//ui/base:ui_base_unittests", # PASSES 4/20/2015
923 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015
924 "//ui/display:display_unittests", # PASSES 4/20/2015
925 "//ui/events:events_unittests", # PASSES 4/20/2015
926 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015
dyen781489a2015-05-05 21:40:56927 "//ui/gl:gl_unittests",
brettw690c96672015-04-21 16:19:54928 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015
929 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015
brettw2a647722015-04-24 21:51:42930 "//ui/views:views_unittests", # TooltipControllerTest failures
931 "//ui/wm:wm_unittests", # PASSES 4/21/2015
brettw690c96672015-04-21 16:19:54932 "//url:url_unittests", # PASSES 4/17/2015
933
brettw690c96672015-04-21 16:19:54934 # TODO(GYP) nacl_integration
935 # TODO(GYP) telemetry_perf_unittests
936 # TODO(GYP) telemetry_unittests
937 ]
938 }
brettw533c50422015-02-26 17:49:16939}