blob: 498c599b57a3705f878cb3670bcafb11060fb512 [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")
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}
[email protected]378b4f02014-06-10 15:58:4520
brettwb84b29472014-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") {
51 testonly = true
52
53 deps = [
dprankeddc174902015-04-29 01:38:3554 ":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") {
66 testonly = true
dprankeddc174902015-04-29 01:38:3567 deps = [
dprankee2ef3822015-02-24 21:42:1868 "//base:base_unittests",
brettwa874dccb2015-08-28 23:59:1869 "//chrome/installer",
sheroukdc35ba272015-09-22 14:09:3770 "//components:components_unittests",
sheroukce1c7d72015-08-24 15:21:5971 "//net:net_unittests",
sherouk2866d662015-08-24 16:29:4472 "//skia:skia_unittests",
brettwa874dccb2015-08-28 23:59:1873 "//sql:sql_unittests",
sherouk3eee4a82015-09-01 10:42:3374 "//sync:sync_unit_tests",
sherouk4fb74d42015-08-24 15:58:4175 "//ui/base:ui_base_unittests",
sherouk84a45ff2015-09-01 13:31:3976 "//ui/gfx:gfx_unittests",
sherouk4fb74d42015-08-24 15:58:4177 "//url:url_unittests",
dprankee2ef3822015-02-24 21:42:1878 ]
dpranke2a294622015-08-07 05:23:0179
sherouk53f0f1a2015-08-03 15:59:3580 if (!is_ios) {
dpranke2a294622015-08-07 05:23:0181 # TODO(GYP): Figure out which of these should actually build on iOS,
82 # and whether there should be other targets that are iOS-only and missing.
sherouk53f0f1a2015-08-03 15:59:3583 deps += [
84 "//cc:cc_unittests",
85 "//chrome",
86 "//chrome/test:browser_tests",
87 "//chrome/test:interactive_ui_tests",
88 "//chrome/test:sync_integration_tests",
89 "//chrome/test:unit_tests",
90 "//chrome/test/chromedriver:chromedriver_unittests",
91 "//components:components_browsertests",
sherouk53f0f1a2015-08-03 15:59:3592 "//content/shell:content_shell",
93 "//content/test:content_browsertests",
94 "//content/test:content_perftests",
95 "//content/test:content_unittests",
96 "//crypto:crypto_unittests",
97 "//device:device_unittests",
98 "//extensions:extensions_browsertests",
99 "//extensions:extensions_unittests",
100 "//google_apis/gcm:gcm_unit_tests",
101 "//gpu:gpu_unittests",
dprankedbdd9d82015-08-12 21:18:18102 "//gpu/gles2_conform_support:gles2_conform_test",
sherouk53f0f1a2015-08-03 15:59:35103 "//ipc:ipc_tests",
104 "//ipc/mojo:ipc_mojo_unittests",
105 "//jingle:jingle_unittests",
106 "//media:media_unittests",
107 "//media/cast:cast_unittests",
108 "//media/midi:midi_unittests",
109 "//mojo",
110 "//mojo/application/public/cpp",
111 "//mojo/common:mojo_common_unittests",
112 "//net:hpack_example_generator",
113 "//net:hpack_fuzz_mutator",
114 "//net:hpack_fuzz_wrapper",
115 "//net:net_perftests",
sherouk53f0f1a2015-08-03 15:59:35116 "//ppapi:ppapi_unittests",
117 "//ppapi/examples/2d",
118 "//ppapi/examples/audio",
119 "//ppapi/examples/audio_input",
120 "//ppapi/examples/compositor",
121 "//ppapi/examples/crxfs",
122 "//ppapi/examples/enumerate_devices",
123 "//ppapi/examples/file_chooser",
124 "//ppapi/examples/flash_topmost",
125 "//ppapi/examples/font",
126 "//ppapi/examples/gamepad",
127 "//ppapi/examples/gles2",
128 "//ppapi/examples/gles2_spinning_cube",
129 "//ppapi/examples/ime",
130 "//ppapi/examples/input",
131 "//ppapi/examples/media_stream_audio",
132 "//ppapi/examples/media_stream_video",
133 "//ppapi/examples/mouse_cursor",
134 "//ppapi/examples/mouse_lock",
135 "//ppapi/examples/printing",
136 "//ppapi/examples/scaling",
137 "//ppapi/examples/scripting",
138 "//ppapi/examples/stub",
139 "//ppapi/examples/threading",
140 "//ppapi/examples/url_loader",
141 "//ppapi/examples/video_capture",
142 "//ppapi/examples/video_decode",
143 "//ppapi/examples/video_effects",
144 "//ppapi/examples/video_encode",
145 "//printing:printing_unittests",
sherouk53f0f1a2015-08-03 15:59:35146 "//third_party/WebKit/Source/platform:heap_unittests",
147 "//third_party/WebKit/Source/platform:platform_unittests",
148 "//third_party/WebKit/Source/web:webkit_unit_tests",
149 "//third_party/WebKit/Source/wtf:wtf_unittests",
150 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
151 "//third_party/codesighs",
152 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
153 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
154 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
155 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
156 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
157 "//third_party/pdfium/samples:pdfium_test",
158 "//third_party/smhasher:pmurhash",
159 "//tools/imagediff($host_toolchain)",
160 "//tools/gn",
161 "//tools/gn:gn_unittests",
162 "//tools/gn:generate_test_gn_data",
163 "//tools/telemetry:bitmaptools($host_toolchain)",
164 "//ui/accessibility:accessibility_unittests",
165 "//ui/app_list:app_list_unittests",
sherouk53f0f1a2015-08-03 15:59:35166 "//ui/display:display_unittests",
167 "//ui/events:events_unittests",
sherouk53f0f1a2015-08-03 15:59:35168 "//ui/gl:gl_unittests",
169 "//ui/touch_selection:ui_touch_selection_unittests",
sherouk53f0f1a2015-08-03 15:59:35170 ]
171 }
dprankee2ef3822015-02-24 21:42:18172
scottmg34fb7e52014-12-03 23:27:24173 deps += root_extra_deps
[email protected]fce5c3fe2014-04-10 21:13:05174
dpranke021d4c92015-02-24 02:08:25175 if (enable_extensions && !is_mac) {
dprankefd1813272015-04-13 23:56:00176 # TODO(GYP): Get this working on the mac?
rockot2f1326e2015-02-23 23:53:51177 deps += [ "//extensions/shell:app_shell_unittests" ]
178 }
179
dprankefd1813272015-04-13 23:56:00180 if (enable_media_router) {
imchengb6b09239f2015-05-15 21:41:55181 deps += [ "//chrome/browser/media/router" ]
dprankefd1813272015-04-13 23:56:00182 }
183
garykac3eddb5b2015-04-17 23:16:38184 if (enable_remoting) {
185 deps += [ "//remoting:remoting_all" ]
dprankece5eb832015-04-01 20:21:05186 }
187
dprankee2ef3822015-02-24 21:42:18188 if (toolkit_views) {
189 deps += [ "//ui/views:views_unittests" ]
James Robinson060f2e32014-09-10 22:31:37190 }
191
dprankee2ef3822015-02-24 21:42:18192 if (use_aura) {
193 deps += [ "//ui/wm:wm_unittests" ]
194 }
195
196 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47197 deps += [ "//ui/ozone" ]
[email protected]a306aaa2014-05-24 13:21:50198 }
199
dprankefd1813272015-04-13 23:56:00200 if (use_x11) {
201 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22202 }
203
tmoniuszkoe5578b922015-04-14 09:38:03204 if (enable_configuration_policy) {
205 deps += [ "//components/policy:policy_templates" ]
206 }
207
dprankefd1813272015-04-13 23:56:00208 if (v8_use_external_startup_data) {
209 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
[email protected]2d6893a2014-06-02 19:16:36210 }
211
brettw66e3feab2015-07-20 23:52:22212 if (is_win) {
213 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
214 }
215
[email protected]5a8d5162014-04-12 01:19:16216 if (is_android) {
[email protected]26046b52014-07-16 00:11:03217 deps += [
cjhopman31511332014-10-23 01:05:02218 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38219 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02220 "//build/android/rezip",
yfriedmanc1995be82015-05-29 17:52:25221 "//chrome/android:chrome_public_apk",
222 "//chrome/android:chrome_public_test_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",
pkotwicze38594d2015-09-25 00:05:10225 "//tools/android:android_tools",
dprankee2ef3822015-02-24 21:42:18226 "//tools/imagediff($host_toolchain)",
227
228 # TODO(GYP): Remove these when the components_unittests work.
229 "//components/history/core/test:test",
230 "//components/policy:policy_component_test_support",
231 "//components/policy:test_support",
232 "//components/rappor:test_support",
233 "//components/signin/core/browser:test_support",
234 "//components/sync_driver:test_support",
235 "//components/user_manager",
236 "//components/wallpaper",
237 "//content/shell/android:content_shell_apk",
238
239 # TODO(GYP): Are these needed, or will they be pulled in automatically?
[email protected]684b2292014-08-22 19:12:39240 "//third_party/android_tools:android_gcm_java",
241 "//third_party/android_tools:uiautomator_java",
242 "//third_party/android_tools:android_support_v13_java",
243 "//third_party/android_tools:android_support_v7_appcompat_java",
244 "//third_party/android_tools:android_support_v7_mediarouter_java",
dprankee2ef3822015-02-24 21:42:18245 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29246 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18247 "//third_party/openmax_dl/dl",
dprankee2ef3822015-02-24 21:42:18248 "//ui/android:ui_java",
249
250 # TODO(GYP): Are these needed?
251 "//chrome/test:test_support_unit",
252 "//third_party/smhasher:murmurhash3",
253 "//ui/message_center:test_support",
254 ]
255 deps -= [
dprankee2ef3822015-02-24 21:42:18256 "//chrome", # TODO(GYP) ??
257 "//chrome/test:browser_tests", # TODO(GYP) ??
258 "//chrome/test:interactive_ui_tests", # TODO(GYP) ??
259 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
260 "//chrome/test:unit_tests", # TODO(GYP)
brettw922d3aa2015-02-27 22:15:46261
262 # Chromedriver shouldn't be compiled on Android.
263 "//chrome/test/chromedriver:chromedriver_unittests",
dprankee2ef3822015-02-24 21:42:18264 "//extensions:extensions_browsertests",
265 "//extensions:extensions_unittests",
266 "//google_apis/gcm:gcm_unit_tests",
267 "//ipc:ipc_tests", # TODO(GYP) ??
268 "//jingle:jingle_unittests", # TODO(GYP) ??
rockot9c67e5f2015-03-12 20:01:21269 "//net:hpack_example_generator",
270 "//net:hpack_fuzz_mutator",
271 "//net:hpack_fuzz_wrapper",
272 "//net:net_perftests",
tfarina79ef072d2015-04-04 20:16:57273 "//ppapi/examples/2d",
274 "//ppapi/examples/audio",
275 "//ppapi/examples/audio_input",
276 "//ppapi/examples/compositor",
277 "//ppapi/examples/crxfs",
278 "//ppapi/examples/enumerate_devices",
279 "//ppapi/examples/file_chooser",
280 "//ppapi/examples/flash_topmost",
281 "//ppapi/examples/font",
282 "//ppapi/examples/gamepad",
283 "//ppapi/examples/gles2",
284 "//ppapi/examples/gles2_spinning_cube",
285 "//ppapi/examples/ime",
286 "//ppapi/examples/input",
287 "//ppapi/examples/media_stream_audio",
288 "//ppapi/examples/media_stream_video",
289 "//ppapi/examples/mouse_cursor",
290 "//ppapi/examples/mouse_lock",
291 "//ppapi/examples/printing",
292 "//ppapi/examples/scaling",
293 "//ppapi/examples/scripting",
294 "//ppapi/examples/stub",
295 "//ppapi/examples/threading",
296 "//ppapi/examples/url_loader",
297 "//ppapi/examples/video_capture",
298 "//ppapi/examples/video_decode",
299 "//ppapi/examples/video_effects",
300 "//ppapi/examples/video_encode",
dprankee2ef3822015-02-24 21:42:18301 "//third_party/pdfium/samples:pdfium_test",
302 "//tools/gn",
dprankefd1813272015-04-13 23:56:00303 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18304 "//tools/gn:gn_unittests",
305 "//ui/app_list:app_list_unittests",
306 "//url:url_unittests",
[email protected]26046b52014-07-16 00:11:03307 ]
308
cjhopmanca675d3e2014-10-24 03:50:45309 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18310 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45311 }
dprankedb5527d72015-03-08 04:22:47312 }
313
dprankefd1813272015-04-13 23:56:00314 if (is_linux) { # TODO(GYP): || is_android || is_bsd?
315 deps += [
316 "//breakpad:core-2-minidump",
317 "//breakpad:minidump-2-core",
318 ]
319 }
320
dpranke6293d252015-04-14 19:12:00321 if (is_chromeos) {
322 deps += [
323 "//chromeos:chromeos_unittests",
324 "//ui/chromeos:ui_chromeos_unittests",
325 ]
326 }
327
dprankefd1813272015-04-13 23:56:00328 if (is_chromeos || is_mac || is_win) {
329 deps += [
330 "//rlz:rlz_id",
331 "//rlz:rlz_lib",
332 "//rlz:rlz_unittests",
333 ]
334 }
335
dprankedb5527d72015-03-08 04:22:47336 if (is_linux) {
337 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06338 deps += [
dprankedb5527d72015-03-08 04:22:47339 "//breakpad:breakpad_unittests",
dprankedb5527d72015-03-08 04:22:47340 "//breakpad:generate_test_dump",
dprankedb5527d72015-03-08 04:22:47341 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18342 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47343 "//net:disk_cache_memory_test",
344 "//net:flip_in_mem_edsm_server",
345 "//net:flip_in_mem_edsm_server_unittests",
346 "//net:quic_client",
347 "//net:quic_server",
348 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18349 "//sandbox/linux:sandbox_linux_unittests",
dprankedb5527d72015-03-08 04:22:47350 "//sandbox/linux:sandbox_linux_jni_unittests",
hiroshigee6d374c2015-02-24 07:54:06351 ]
dnicoara8c6aa8e2015-03-11 23:20:32352
353 if (is_chromeos || use_ash) {
354 deps += [ "//components/session_manager/core" ]
355 }
dprankedb5527d72015-03-08 04:22:47356 }
357
sherouke1859f92015-08-05 10:19:10358 if (is_ios || is_win || (is_linux && !is_chromeos)) {
359 deps += [
360 "//base:base_i18n_perftests",
361 "//base:base_perftests",
sherouk710734d2015-09-02 19:02:58362 "//google_apis:google_apis_unittests",
sherouke1859f92015-08-05 10:19:10363 ]
364 }
365
dprankefd1813272015-04-13 23:56:00366 if (is_win || (is_linux && !is_chromeos)) {
367 # TODO(GYP): Figure out which of these should (and can) build
368 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44369 deps += [
dprankedb5527d72015-03-08 04:22:47370 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47371 "//base:build_utf8_validator_tables",
dprankedb5527d72015-03-08 04:22:47372 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00373 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47374 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00375 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47376 "//chrome/test:sync_performance_tests",
377 "//chrome/test/chromedriver:chromedriver",
378 "//chrome/test/chromedriver:chromedriver_tests",
379 "//chrome/tools/profile_reset:jtl_compiler",
380 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47381 "//content/test:content_gl_tests",
382 "//content/test:content_gl_benchmark",
383 "//courgette:courgette",
384 "//courgette:courgette_fuzz",
385 "//courgette:courgette_minimal_tool",
386 "//courgette:courgette_unittests",
387 "//device:device_unittests",
388 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47389 "//gin:gin_unittests",
dprankedb5527d72015-03-08 04:22:47390 "//google_apis/gcm:mcs_probe",
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",
cwallez4c57af32015-09-03 14:54:49410 "//third_party/angle/src/tests:angle_end2end_tests",
411 "//third_party/angle/src/tests:angle_unittests",
dprankedb5527d72015-03-08 04:22:47412 "//third_party/codesighs:maptsvdifftool",
dprankedb5527d72015-03-08 04:22:47413 "//third_party/leveldatabase:env_chromium_unittests",
414 "//third_party/libaddressinput:libaddressinput_unittests",
dprankefd1813272015-04-13 23:56:00415 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47416 "//ui/compositor:compositor_unittests",
417 ]
418
419 if (enable_extensions) {
420 deps += [ "//extensions/shell:app_shell" ]
421 }
422
423 if (enable_nacl) {
dprankefd1813272015-04-13 23:56:00424 deps += [ "//components/nacl:nacl_loader_unittests" ]
dprankedb5527d72015-03-08 04:22:47425 }
426
mostynb2196a462015-08-20 17:22:10427 if (media_use_ffmpeg) {
428 deps += [ "//media:ffmpeg_regression_tests" ]
429 }
430
dprankedb5527d72015-03-08 04:22:47431 if (use_ash) {
432 deps += [
benf97b2572015-09-25 23:12:53433 "//ash:ash_shell_with_content",
dprankedb5527d72015-03-08 04:22:47434 "//ash:ash_unittests",
435 ]
436 }
437
438 if (use_aura) {
439 deps += [
440 "//ui/aura:aura_unittests",
441 "//ui/aura:bench",
442 "//ui/aura:demo",
443 ]
444 }
dprankefd1813272015-04-13 23:56:00445 }
446
447 if (is_linux && !is_chromeos) {
448 deps += [
449 # TODO(GYP): Figure out which of these should (and can) build
450 # under which other conditions.
451 "//build/sanitizers:copy_llvm_symbolizer",
452 "//chrome/test:chrome_app_unittests",
453 "//cloud_print:cloud_print_unittests",
454 "//components/network_hints/browser",
dprankefd1813272015-04-13 23:56:00455 "//content/public/app:browser",
456 "//content/public/app:child",
457
458 # TODO(GYP): Remove this when the gles2 tests work
459 "//gpu/command_buffer/client:gles2_implementation_no_check",
460
461 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/471903 to make this complete.
462 "//media/cast:cast_benchmarks",
463 "//media/cast:tap_proxy",
jam00802992015-05-20 03:37:19464 "//mojo/application/public/cpp",
dprankefd1813272015-04-13 23:56:00465 "//skia:filter_fuzz_stub",
466 "//skia:image_operations_bench",
467 "//sync/tools:sync_client",
468 "//sync/tools:sync_listen_notifications",
469 "//testing/gmock:gmock_main",
470 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
471 "//tools/perf/clear_system_cache",
472 "//ui/keyboard:keyboard_unittests",
473 "//ui/message_center:message_center_unittests",
474 "//ui/snapshot:snapshot_unittests",
475 "//ui/views/examples:views_examples_with_content_exe",
476
dprankefd1813272015-04-13 23:56:00477 "//third_party/codesighs:nm2tsv",
478 "//third_party/sqlite:sqlite_shell",
479 ]
480
481 if (current_toolchain == host_toolchain) {
482 # Do not build the breakpad utilities in cross-compiles.
483 deps += [
484 "//breakpad:dump_syms",
485 "//breakpad:microdump_stackwalk",
486 "//breakpad:minidump_dump",
487 "//breakpad:minidump_stackwalk",
488 ]
489 }
490
491 if (!is_debug && !is_component_build) {
492 deps += [ "//chrome/tools/service_discovery_sniffer" ]
493 }
494
495 if (toolkit_views) {
496 deps += [ "//ui/app_list:app_list_demo" ]
497 }
dprankedb5527d72015-03-08 04:22:47498
499 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44500 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59501 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44502 }
dprankedb5527d72015-03-08 04:22:47503 }
504 }
505
506 if (is_mac) {
507 deps += [
508 "//breakpad:crash_inspector",
509 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44510 "//third_party/apple_sample_code",
511 "//third_party/molokocacao",
512 ]
513
dprankee2ef3822015-02-24 21:42:18514 # TODO(GYP): Remove these when the targets below work and these
515 # are pulled in automatically.
516 deps += [
517 "//cc/blink",
Brett Wilson817fec02015-08-22 20:36:49518 "//components/ui/zoom",
dprankee2ef3822015-02-24 21:42:18519 "//content",
520 "//content/test:test_support",
521 "//device/battery",
522 "//device/bluetooth",
523 "//device/nfc",
524 "//device/usb",
525 "//device/vibration",
526 "//media/blink",
527 "//pdf",
528 "//storage/browser",
529 "//third_party/brotli",
530 "//third_party/flac",
tfarinae4a03f8f2015-05-18 05:55:26531 "//third_party/hunspell",
dprankee2ef3822015-02-24 21:42:18532 "//third_party/iccjpeg",
533 "//third_party/libphonenumber",
534 "//third_party/ots",
535 "//third_party/qcms",
536 "//third_party/smhasher:murmurhash3",
dprankee2ef3822015-02-24 21:42:18537 "//third_party/webrtc/system_wrappers",
tfarina42aa0172015-08-13 21:12:40538 "//ui/app_list:app_list_unittests",
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",
dprankecf8465db72014-11-10 23:51:22566 ]
dprankefd1813272015-04-13 23:56:00567 }
568
569 if (is_win) {
570 deps += [
571 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43572 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00573 "//chrome_elf:chrome_elf_unittests",
574 "//chrome_elf:dll_hash_main",
sdefresne8ba0b88c2015-09-18 10:33:13575 "//components/crash/content/tools:crash_service",
dprankefd1813272015-04-13 23:56:00576 "//components/wifi:wifi_test",
577 "//net:quic_client",
578 "//net:quic_server",
579 "//sandbox/win:pocdll",
580 "//sandbox/win:sandbox_poc",
581 "//sandbox/win:sbox_integration_tests",
582 "//sandbox/win:sbox_unittests",
583 "//sandbox/win:sbox_validation_tests",
584 "//testing/gtest:gtest_main",
585 "//third_party/codesighs:msmap2tsv",
586 "//third_party/pdfium/samples:pdfium_diff",
587 "//ui/metro_viewer",
588 ]
dprankee2ef3822015-02-24 21:42:18589 deps -= [
590 "//crypto:crypto_unittests", # TODO(GYP)
591 "//net:net_unittests", # TODO(GYP)
592 ]
sherouk53f0f1a2015-08-03 15:59:35593 } else if (!is_android && !is_ios) {
dpranke6293d252015-04-14 19:12:00594 deps += [ "//breakpad:symupload" ]
mohsenf837da7c2014-12-09 19:01:34595 }
hendrikw5c1da6d2015-06-18 15:08:57596
597 if (!is_ios) {
dewittjacd39a012015-08-28 22:56:17598 deps += [ "//gpu/skia_runner:skia_runner" ]
hendrikw5c1da6d2015-06-18 15:08:57599 }
[email protected]f0e7ff882013-12-26 21:23:09600}
brettw533c50422015-02-26 17:49:16601
dpranked62d8512015-03-02 03:06:03602group("gn_only") {
dprankedb5527d72015-03-08 04:22:47603 testonly = true
604
dpranke2a294622015-08-07 05:23:01605 deps = []
606
sherouk53f0f1a2015-08-03 15:59:35607 if (!is_ios) {
dpranke2a294622015-08-07 05:23:01608 deps += [ "//mandoline:all" ]
sherouk53f0f1a2015-08-03 15:59:35609 }
isherman0f89b43eb2015-04-11 00:02:45610
611 if (!is_android && !is_ios) {
612 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
613 }
614
dprankedb5527d72015-03-08 04:22:47615 if (is_linux && !is_chromeos) {
616 # TODO(GYP): Figure out if any of these should be in gn_all
617 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45618 deps += [
dprankedb5527d72015-03-08 04:22:47619 ":gn_mojo_targets",
nyquistb5f050b2015-09-10 05:10:35620 "//blimp",
dprankedb5527d72015-03-08 04:22:47621 "//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",
dprankedb5527d72015-03-08 04:22:47634 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
635 "//storage/browser:dump_file_system",
636 "//third_party/angle:libANGLE",
637 "//third_party/angle:libEGL",
638 "//third_party/angle:libGLESv2",
639 "//third_party/cld_2:cld_2_dynamic_data_tool",
640 "//third_party/leveldatabase:leveldb_arena_test",
641 "//third_party/leveldatabase:leveldb_bloom_test",
642 "//third_party/leveldatabase:leveldb_db_test",
643 "//third_party/leveldatabase:leveldb_crc32c_test",
644 "//third_party/leveldatabase:leveldb_cache_test",
645 "//third_party/leveldatabase:leveldb_env_test",
646 "//third_party/leveldatabase:leveldb_write_batch_test",
647 "//third_party/leveldatabase:leveldb_filter_block_test",
648 "//third_party/leveldatabase:leveldb_version_edit_test",
649 "//third_party/leveldatabase:leveldb_db_bench",
650 "//third_party/leveldatabase:leveldb_log_test",
651 "//third_party/leveldatabase:leveldb_corruption_test",
652 "//third_party/leveldatabase:leveldb_table_test",
653 "//third_party/leveldatabase:leveldb_skiplist_test",
654 "//third_party/leveldatabase:leveldb_filename_test",
655 "//third_party/leveldatabase:leveldb_dbformat_test",
thestig93786e62015-08-05 04:03:29656 "//third_party/pdfium/third_party:fx_freetype",
dprankedb5527d72015-03-08 04:22:47657 "//third_party/libjpeg_turbo:simd",
dprankedb5527d72015-03-08 04:22:47658 "//third_party/libsrtp:replay_driver",
659 "//third_party/libsrtp:roc_driver",
660 "//third_party/libsrtp:rtpw",
661 "//third_party/libsrtp:rdbx_driver",
662 "//third_party/libsrtp:srtp_driver",
663 "//third_party/libsrtp:srtp_driver",
664 "//third_party/libsrtp:srtp_test_kernel_driver",
665 "//third_party/libsrtp:srtp_test_cipher_driver",
666 "//third_party/libsrtp:srtp_test_datatypes_driver",
667 "//third_party/libsrtp:srtp_test_aes_calc",
668 "//third_party/libsrtp:srtp_test_env",
669 "//third_party/libsrtp:srtp_test_rand_gen",
670 "//third_party/libsrtp:srtp_test_sha1_driver",
671 "//third_party/libsrtp:srtp_test_stat_driver",
672 "//third_party/opus:opus_compare",
673 "//third_party/opus:opus_demo",
674 "//third_party/opus:test_opus_decode",
675 "//third_party/opus:test_opus_encode",
676 "//third_party/opus:test_opus_api",
677 "//third_party/opus:test_opus_padding",
678 "//third_party/webrtc/system_wrappers:field_trial_default",
679 "//third_party/webrtc/system_wrappers:metrics_default",
680 "//ui/display/types",
681 "//ui/shell_dialogs:shell_dialogs_unittests",
682 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47683 ]
dprankeb0713542015-07-31 21:07:21684
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16685 if (target_cpu == "x86" || target_cpu == "x64") {
mcgrathr916aafa2015-09-15 00:06:53686 deps += [
687 "//third_party/libjpeg_turbo:simd_asm",
688 "//native_client/src/trusted/platform_qualify:vcpuid",
689 ]
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16690 }
dprankedb5527d72015-03-08 04:22:47691 if (enable_nacl) {
692 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
693 }
694 if (use_ozone) {
695 deps += [ "//ui/ozone/demo" ]
696 }
697 if (is_android) {
698 deps += [ "//build/android/gyp/test:hello_world" ]
699 }
dpranke807f602b2015-03-17 23:20:56700
701 if (is_linux && current_toolchain == host_toolchain) {
702 deps += [ "//v8:d8" ]
703 }
dprankedb5527d72015-03-08 04:22:47704 }
dprankeb0713542015-07-31 21:07:21705
nyquistb5f050b2015-09-10 05:10:35706 if (is_android) {
nyquist7af11b72015-09-10 20:18:14707 deps += [ "//blimp" ]
nyquistb5f050b2015-09-10 05:10:35708 }
709
dprankeb0713542015-07-31 21:07:21710 if (is_mac) {
711 deps -= [ "//mandoline:all" ] # TODO(GYP)
712 }
dprankedb5527d72015-03-08 04:22:47713}
714
715group("gn_mojo_targets") {
716 testonly = true
717 if (is_linux && !is_chromeos) {
718 # TODO(GYP): Figure out if any of these should be in gn_all
719 # and figure out how cross-platform they are
720 deps = [
dprankedb5527d72015-03-08 04:22:47721 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47722 "//media/mojo/services:cdm_service",
723 "//media/mojo:tests",
msw1bb9c6c2015-05-06 21:35:44724 "//mojo:tests",
dprankedb5527d72015-03-08 04:22:47725 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47726 ]
dprankedb5527d72015-03-08 04:22:47727 }
728}
729
730group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03731 deps = [
dprankeb6128d02015-05-01 16:40:30732 "//build/config/sanitizers:options_sources",
733
dprankedb5527d72015-03-08 04:22:47734 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
735 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30736
737 "//ui/resources:repack_ui_test_mac_locale_pack",
dpranked62d8512015-03-02 03:06:03738 ]
dpranked2fb5222015-09-10 22:39:05739
740 if (!is_ios) {
741 deps += [
742 "//v8:v8_snapshot",
743 "//v8:postmortem-metadata",
744 ]
745 }
dpranked62d8512015-03-02 03:06:03746}
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
dpranke6abd8652015-08-28 03:21:11799# Add a dummy target for compatibility w/ GYP
800group("chromium_swarm_tests") {
801}
802
brettw533c50422015-02-26 17:49:16803if (is_linux) {
804 # This group corresponds to the list of tests run on the waterfall for
805 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
806 # here to help track GYP -> GN conversion progress.
807 group("linux_default_tests") {
808 testonly = true
809 deps = [
brettw533c50422015-02-26 17:49:16810 "//base:base_unittests", # PASSES (*) 2/25/2015
811 "//cc:cc_unittests", # PASSES 2/25/2015
812 "//chrome/test:browser_tests",
813 "//chrome/test:interactive_ui_tests",
brettw922d3aa2015-02-27 22:15:46814 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GYP.
brettw533c50422015-02-26 17:49:16815 "//chrome/test:unit_tests", # PASSES 2/25/2015
brettw922d3aa2015-02-27 22:15:46816 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54817 "//components:components_browsertests", # PASSES 4/17/2015
brettw77b58722015-02-27 23:35:06818 "//components:components_unittests", # PASSES 2/27/2015
brettw533c50422015-02-26 17:49:16819 "//content/test:content_browsertests",
820 "//content/test:content_unittests", # PASSES 2/25/2015
821 "//crypto:crypto_unittests", # PASSES 2/25/2015
822 "//dbus:dbus_unittests", # PASSES 2/25/2015
tfarina466754f2015-03-09 23:39:29823 "//device:device_unittests", # PASSES 3/07/2015
brettw533c50422015-02-26 17:49:16824 "//extensions:extensions_browsertests", # PASSES 2/25/2015
825 "//extensions:extensions_unittests", # PASSES 2/25/2015
826 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
827 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
828 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
829 "//gpu:gpu_unittests", # PASSES 2/25/2015
830 "//ipc:ipc_tests", # PASSES 2/25/2015
831 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
832 "//jingle:jingle_unittests", # PASSES 2/25/2015
aboxhall60006f22015-04-22 18:27:55833 "//media:media_unittests", # PASSES 3/3/2015
toyoshimc64757792015-04-30 14:52:02834 "//media/cast:cast_unittests", # PASSES 2/25/2015
835 "//media/midi:midi_unittests", # PASSES 4/10/2015
brettw533c50422015-02-26 17:49:16836 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
837 "//net:net_unittests", # PASSES 2/25/2015
brettw31f4de692015-03-04 17:24:45838 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
brettw533c50422015-02-26 17:49:16839 "//printing:printing_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02840 "//remoting:remoting_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16841 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
842 "//skia:skia_unittests", # PASSES 2/25/2015
843 "//sql:sql_unittests", # PASSES 2/25/2015
844 "//sync:sync_unit_tests", # PASSES 2/25/2015
845 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015
846 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
847 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
848 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
849 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54850 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
brettw533c50422015-02-26 17:49:16851 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
852 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
853 "//ui/aura:aura_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02854 "//ui/base:ui_base_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16855 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
856 "//ui/display:display_unittests", # PASSES 2/25/2015
857 "//ui/events:events_unittests", # PASSES 2/25/2015
858 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
dyen781489a2015-05-05 21:40:56859 "//ui/gl:gl_unittests",
brettw533c50422015-02-26 17:49:16860 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
861 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
862 "//ui/wm:wm_unittests", # PASSES 2/25/2015
863 "//url:url_unittests", # PASSES 2/25/2015
864
865 # Note:
866 # (*) Fails but failures match GYP build at time of testing.
867 ]
tfarina47830e342015-03-30 23:02:11868
869 if (enable_nacl) {
870 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015
871 }
brettw533c50422015-02-26 17:49:16872 }
brettw690c96672015-04-21 16:19:54873} else if (is_win) {
874 group("windows_default_tests") {
875 testonly = true
876 deps = [
877 "//ash:ash_unittests", # FAILS 4/20/2015
brettw9a19ddb2015-04-24 19:30:50878 "//base:base_unittests", # PASSES 4/20/2015
brettw690c96672015-04-21 16:19:54879 "//cc:cc_unittests", # PASSES 4/17/2015
880 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
brettweb1f7ac2015-05-01 17:43:01881 "//chrome/installer/util:installer_util_unittests",
grt734e87b2015-07-06 19:36:43882 "//chrome/installer/setup:setup_unittests",
brettw690c96672015-04-21 16:19:54883 "//chrome/test:browser_tests",
884 "//chrome/test:interactive_ui_tests",
885 "//chrome/test:sync_integration_tests", # Note: need to turn off incremental linking for debug.
886 "//chrome/test:unit_tests",
887 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
brettweb1f7ac2015-05-01 17:43:01888 "//components:components_browsertests", # PASSES 4/24/2015
brettw690c96672015-04-21 16:19:54889 "//components:components_unittests", # PASSES 4/17/2015
890 "//courgette:courgette_unittests", # PASSES 4/20/2015
891 "//content/test:content_browsertests",
892 "//content/test:content_unittests", # PASSES 4/17/2015
893 "//crypto:crypto_unittests", # PASSES 4/17/2015
894 "//device:device_unittests", # PASSES 4/17/2015
895 "//extensions:extensions_browsertests", # PASSES 4/17/2015
896 "//extensions:extensions_unittests", # PASSES 4/17/2015
897 "//extensions/shell:app_shell_unittests", # Doesn't compile in 64-bit
898 "//google_apis/gcm:gcm_unit_tests", # PASSES 4/17/2015
899 "//google_apis:google_apis_unittests", # PASSES 4/17/2015
900 "//gpu:gpu_unittests", # PASSES 4/17/2015
901 "//ipc:ipc_tests", # PASSES 4/17/2015
902 "//ipc/mojo:ipc_mojo_unittests", # PASSES 4/17/2015
903 "//jingle:jingle_unittests", # PASSES 4/17/2015
904 "//media/cast:cast_unittests", # PASSES 4/17/2015
905 "//media:media_unittests", # PASSES 4/17/2015
906 "//mojo/common:mojo_common_unittests", # PASSES 4/17/2015
907 "//net:net_unittests", # PASSES 4/17/2015
908 "//ppapi:ppapi_unittests", # PASSES 4/17/2015
909 "//printing:printing_unittests", # PASSES 4/17/2015
910 "//remoting:remoting_unittests", # PASSES 4/17/2015
911 "//sandbox/win:sbox_integration_tests", # PASSES 4/20/2015
912 "//sandbox/win:sbox_unittests", # PASSES 4/20/2015
913 "//sandbox/win:sbox_validation_tests", # PASSES 4/20/2015
914 "//skia:skia_unittests", # PASSES 4/17/2015
915 "//sql:sql_unittests", # PASSES 4/17/2015
916 "//sync:sync_unit_tests", # PASSES 4/20/2015
917 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 4/20/2015
918 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # Seems to hang?
919 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # FAILS
920 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 4/20/2015
921 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 4/20/2015
922 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", # PASSES 4/20/2015
923 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015
924 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015
925 "//ui/aura:aura_unittests", # PASSES 4/17/2015
926 "//ui/base:ui_base_unittests", # PASSES 4/20/2015
927 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015
928 "//ui/display:display_unittests", # PASSES 4/20/2015
929 "//ui/events:events_unittests", # PASSES 4/20/2015
930 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015
dyen781489a2015-05-05 21:40:56931 "//ui/gl:gl_unittests",
brettw690c96672015-04-21 16:19:54932 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015
933 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015
brettw2a647722015-04-24 21:51:42934 "//ui/views:views_unittests", # TooltipControllerTest failures
935 "//ui/wm:wm_unittests", # PASSES 4/21/2015
brettw690c96672015-04-21 16:19:54936 "//url:url_unittests", # PASSES 4/17/2015
937
brettw690c96672015-04-21 16:19:54938 # TODO(GYP) nacl_integration
939 # TODO(GYP) telemetry_perf_unittests
940 # TODO(GYP) telemetry_unittests
941 ]
942 }
brettw533c50422015-02-26 17:49:16943}