blob: 3216b4c2cd365e63d05adbb27f67db475665e04f [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
rockot2f1326e2015-02-23 23:53:5111import("//build/config/features.gni")
aizatskyfc46a9f2015-10-09 21:20:0812import("//build/config/sanitizers/sanitizers.gni")
[email protected]378b4f02014-06-10 15:58:4513import("//build/config/ui.gni")
dpranked4da5ab42015-10-13 06:20:3314import("//build_overrides/v8.gni")
mostynb2196a462015-08-20 17:22:1015import("//media/media_options.gni")
hbos17a7b4a22015-12-07 10:49:4516import("//third_party/openh264/openh264_args.gni")
dprankee2ef3822015-02-24 21:42:1817
cjhopmanca675d3e2014-10-24 03:50:4518if (is_android) {
19 import("//build/config/android/config.gni")
20}
[email protected]378b4f02014-06-10 15:58:4521
brettwb84b29472014-10-22 22:58:4522declare_args() {
23 # A list of extra dependencies to add to the root target. This allows a
24 # checkout to add additional targets without explicitly changing any checked-
25 # in files.
26 root_extra_deps = []
27}
28
dprankeef9c5e582015-11-15 23:22:0829# This file defines the following five main targets:
dpranked62d8512015-03-02 03:06:0330#
dprankeddc174902015-04-29 01:38:3531# "both_gn_and_gyp" should list every root target (target that nothing else
32# depends on) built by GN that is also built in the GYP build.
dpranked62d8512015-03-02 03:06:0333#
dprankeddc174902015-04-29 01:38:3534# "gn_all" should (transitively) cause everything to be built; if you run
35# 'ninja gn_all' and then 'ninja all', the second build should do no work.
36#
dprankeef9c5e582015-11-15 23:22:0837# "gn_only" should list every root target that is *not* intended to be built in
38# a GYP build. Because GN has different rules for deciding what an 'all' build
39# is, this may end up including targets that are actually defined in a GYP
40# build but not dependencies of GYP's "all" (and so not actually built).
dprankeddc174902015-04-29 01:38:3541#
dprankeb6128d02015-05-01 16:40:3042# "gn_visibility": targets that are normally not visible to top-level targets,
dprankeef9c5e582015-11-15 23:22:0843# but are built anyway by "all". Since we don't want any such targets, we have
44# this placeholder to make sure hidden targets that aren't otherwise depended
45# on yet are accounted for.
46#
47# "All" is an alias for "gn_all". It exists for bot compatibility w/ GYP for
48# the iOS bots and the official builders, but should not be generally used
49# during the GYP->GN migration. We cannot guarantee that GN's "All" builds the
50# same set of targets as GYP's "All" does, because GYP's "All" supports
51# wildcards.
52#
53# Lastly, none of these targets are guaranteed to be the same as what ninja
54# will build with "all". For more on how "all" works and the differences in how
55# GYP and GN determine "all", see crbug.com/503241.
dprankeb6128d02015-05-01 16:40:3056#
dprankeddc174902015-04-29 01:38:3557# TODO(GYP): crbug.com/481694. Make sure that the above is true and there are
dprankeef9c5e582015-11-15 23:22:0858# scripts run on the bots that enforce this. Once the GYP migration is over, we
59# can collapse all of these targets as desired.
dprankeff30e3d2015-02-24 06:52:3960
dprankee2ef3822015-02-24 21:42:1861group("gn_all") {
62 testonly = true
63
64 deps = [
dprankeddc174902015-04-29 01:38:3565 ":both_gn_and_gyp",
66 ":gn_only",
dprankeb6128d02015-05-01 16:40:3067 ":gn_visibility",
dprankeddc174902015-04-29 01:38:3568 ]
69}
70
dprankeef9c5e582015-11-15 23:22:0871# TODO(GYP): This target exists for compatibility with GYP, specifically
72# for the iOS bots and the official builders.
73group("All") {
74 testonly = true
75
76 deps = [
77 ":gn_all",
78 ]
79}
80
dprankeddc174902015-04-29 01:38:3581# The "both_gn_and_gyp" target should reflect every target that is built
82# in both the GN and GYP builds, and ideally it should match the
83# "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line.
84#
85# TODO(GYP): Add build steps that check and enforce this on the bots.
86group("both_gn_and_gyp") {
87 testonly = true
dprankeddc174902015-04-29 01:38:3588 deps = [
dprankee2ef3822015-02-24 21:42:1889 "//base:base_unittests",
brettwa874dcc2015-08-28 23:59:1890 "//chrome/installer",
sheroukdc35ba272015-09-22 14:09:3791 "//components:components_unittests",
sheroukce1c7d72015-08-24 15:21:5992 "//net:net_unittests",
sherouk2866d662015-08-24 16:29:4493 "//skia:skia_unittests",
brettwa874dcc2015-08-28 23:59:1894 "//sql:sql_unittests",
sherouk3eee4a82015-09-01 10:42:3395 "//sync:sync_unit_tests",
sherouk4fb74d42015-08-24 15:58:4196 "//ui/base:ui_base_unittests",
sherouk84a45ff2015-09-01 13:31:3997 "//ui/gfx:gfx_unittests",
sherouk4fb74d42015-08-24 15:58:4198 "//url:url_unittests",
dprankee2ef3822015-02-24 21:42:1899 ]
dpranke2a294622015-08-07 05:23:01100
slance9d62f2015-11-04 01:15:01101 if (!is_ios && !is_android && !is_chromecast) {
sherouk53f0f1a2015-08-03 15:59:35102 deps += [
sherouk53f0f1a2015-08-03 15:59:35103 "//chrome",
104 "//chrome/test:browser_tests",
105 "//chrome/test:interactive_ui_tests",
106 "//chrome/test:sync_integration_tests",
sherouk53f0f1a2015-08-03 15:59:35107 "//chrome/test/chromedriver:chromedriver_unittests",
sherouk53f0f1a2015-08-03 15:59:35108 "//crypto:crypto_unittests",
sherouk53f0f1a2015-08-03 15:59:35109 "//extensions:extensions_browsertests",
110 "//extensions:extensions_unittests",
111 "//google_apis/gcm:gcm_unit_tests",
dprankedbdd9d82015-08-12 21:18:18112 "//gpu/gles2_conform_support:gles2_conform_test",
sherouk53f0f1a2015-08-03 15:59:35113 "//jingle:jingle_unittests",
sherouk53f0f1a2015-08-03 15:59:35114 "//net:hpack_example_generator",
115 "//net:hpack_fuzz_mutator",
116 "//net:hpack_fuzz_wrapper",
sherouk53f0f1a2015-08-03 15:59:35117 "//ppapi:ppapi_unittests",
118 "//ppapi/examples/2d",
119 "//ppapi/examples/audio",
120 "//ppapi/examples/audio_input",
121 "//ppapi/examples/compositor",
122 "//ppapi/examples/crxfs",
123 "//ppapi/examples/enumerate_devices",
124 "//ppapi/examples/file_chooser",
125 "//ppapi/examples/flash_topmost",
126 "//ppapi/examples/font",
127 "//ppapi/examples/gamepad",
128 "//ppapi/examples/gles2",
129 "//ppapi/examples/gles2_spinning_cube",
130 "//ppapi/examples/ime",
131 "//ppapi/examples/input",
132 "//ppapi/examples/media_stream_audio",
133 "//ppapi/examples/media_stream_video",
134 "//ppapi/examples/mouse_cursor",
135 "//ppapi/examples/mouse_lock",
136 "//ppapi/examples/printing",
137 "//ppapi/examples/scaling",
138 "//ppapi/examples/scripting",
139 "//ppapi/examples/stub",
140 "//ppapi/examples/threading",
141 "//ppapi/examples/url_loader",
142 "//ppapi/examples/video_capture",
143 "//ppapi/examples/video_decode",
144 "//ppapi/examples/video_effects",
145 "//ppapi/examples/video_encode",
146 "//printing:printing_unittests",
sherouk53f0f1a2015-08-03 15:59:35147 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
148 "//third_party/codesighs",
pkotwicz558d5252015-10-19 21:09:55149 "//third_party/pdfium/samples:pdfium_test",
150 "//tools/gn",
pkotwicz558d5252015-10-19 21:09:55151 "//tools/gn:generate_test_gn_data",
dpranke244f973d62015-11-20 05:38:10152 "//tools/gn:gn_unittests",
pkotwicz558d5252015-10-19 21:09:55153 "//tools/perf/clear_system_cache",
154 "//ui/accessibility:accessibility_unittests",
155 "//ui/app_list:app_list_unittests",
156 ]
157 }
158
159 if (!is_ios) {
160 # TODO(GYP): Figure out which of these should actually build on iOS,
161 # and whether there should be other targets that are iOS-only and missing.
162 deps += [
163 "//cc:cc_unittests",
164 "//chrome/test:unit_tests",
165 "//components:components_browsertests",
166 "//content/shell:content_shell",
167 "//content/test:content_browsertests",
168 "//content/test:content_perftests",
169 "//content/test:content_unittests",
170 "//device:device_unittests",
171 "//gpu:gpu_unittests",
172 "//ipc:ipc_tests",
173 "//ipc/mojo:ipc_mojo_unittests",
174 "//media:media_unittests",
miu45b848fe2015-11-26 01:23:29175 "//media/cast:cast_unittests",
pkotwicz558d5252015-10-19 21:09:55176 "//media/midi:midi_unittests",
177 "//mojo",
178 "//mojo/application/public/cpp",
179 "//mojo/common:mojo_common_unittests",
180 "//net:net_perftests",
jam76bcf0c2015-10-02 21:01:28181
182 # TODO(use-new-edk):
183 #"//mojo/edk/system:mojo_system_unittests",
184 #"//mojo/edk/test:mojo_public_bindings_unittests",
185 #"//mojo/edk/test:mojo_public_environment_unittests",
186 #"//mojo/edk/test:mojo_public_system_unittests",
187 #"//mojo/edk/test:mojo_public_utility_unittests",
Dirk Pranke49802732015-12-10 01:36:41188 "//third_party/WebKit/Source/platform:blink_heap_unittests",
189 "//third_party/WebKit/Source/platform:blink_platform_unittests",
dpranke244f973d62015-11-20 05:38:10190 "//third_party/WebKit/Source/web:webkit_unit_tests",
191 "//third_party/WebKit/Source/wtf:wtf_unittests",
sherouk53f0f1a2015-08-03 15:59:35192 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
193 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
194 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
195 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
196 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
sherouk53f0f1a2015-08-03 15:59:35197 "//third_party/smhasher:pmurhash",
charliea9a3b7202015-10-26 22:12:29198 "//tools/battor_agent",
sherouk53f0f1a2015-08-03 15:59:35199 "//tools/imagediff($host_toolchain)",
sherouk53f0f1a2015-08-03 15:59:35200 "//tools/telemetry:bitmaptools($host_toolchain)",
sherouk53f0f1a2015-08-03 15:59:35201 "//ui/display:display_unittests",
202 "//ui/events:events_unittests",
sherouk53f0f1a2015-08-03 15:59:35203 "//ui/gl:gl_unittests",
204 "//ui/touch_selection:ui_touch_selection_unittests",
sherouk53f0f1a2015-08-03 15:59:35205 ]
sdefresne998e8582015-10-07 13:36:45206 } else {
sdefresnea378b452015-10-08 09:55:58207 deps += [
dpranke244f973d62015-11-20 05:38:10208 "//ios/chrome:ios_chrome_unittests",
sdefresne0ddaed52015-11-19 10:40:02209 "//ios/chrome/app",
210 "//ios/chrome/browser",
211 "//ios/chrome/common",
sdefresnea378b452015-10-08 09:55:58212 "//ios/net:ios_net_unittests",
sdefresne32132f23c2015-11-17 16:22:23213 "//ios/public/provider/chrome/browser",
sdefresne89308c92015-11-16 10:40:34214 "//ios/public/provider/web",
sdefresnec6ddd7ac2015-10-09 17:30:19215 "//ios/testing:ocmock_support_unittest",
sdefresneaa7c1cf2015-10-22 00:41:11216 "//ios/web:ios_web_unittests",
dpranke244f973d62015-11-20 05:38:10217 "//ios/web/shell:ios_web_shell",
sdefresnea378b452015-10-08 09:55:58218 ]
sherouk53f0f1a2015-08-03 15:59:35219 }
dprankee2ef3822015-02-24 21:42:18220
scottmg34fb7e52014-12-03 23:27:24221 deps += root_extra_deps
[email protected]fce5c3fe2014-04-10 21:13:05222
tfarina4aa9edc2015-10-26 22:14:02223 if (enable_extensions) {
rockot2f1326e2015-02-23 23:53:51224 deps += [ "//extensions/shell:app_shell_unittests" ]
225 }
226
dprankefd1813272015-04-13 23:56:00227 if (enable_media_router) {
imchengb6b09239f2015-05-15 21:41:55228 deps += [ "//chrome/browser/media/router" ]
dprankefd1813272015-04-13 23:56:00229 }
230
garykac3eddb5b2015-04-17 23:16:38231 if (enable_remoting) {
232 deps += [ "//remoting:remoting_all" ]
dprankece5eb832015-04-01 20:21:05233 }
234
dprankee2ef3822015-02-24 21:42:18235 if (toolkit_views) {
236 deps += [ "//ui/views:views_unittests" ]
James Robinson060f2e32014-09-10 22:31:37237 }
238
dprankee2ef3822015-02-24 21:42:18239 if (use_aura) {
240 deps += [ "//ui/wm:wm_unittests" ]
241 }
242
243 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47244 deps += [ "//ui/ozone" ]
[email protected]a306aaa2014-05-24 13:21:50245 }
246
dprankefd1813272015-04-13 23:56:00247 if (use_x11) {
248 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22249 }
250
tmoniuszkoe5578b922015-04-14 09:38:03251 if (enable_configuration_policy) {
252 deps += [ "//components/policy:policy_templates" ]
253 }
254
dprankefd1813272015-04-13 23:56:00255 if (v8_use_external_startup_data) {
256 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
[email protected]2d6893a2014-06-02 19:16:36257 }
258
brettw66e3feab2015-07-20 23:52:22259 if (is_win) {
brettwf986f9572015-10-07 17:18:15260 deps += [
261 "//chrome/installer/gcapi",
262 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy",
263 ]
brettw66e3feab2015-07-20 23:52:22264 }
265
[email protected]5a8d5162014-04-12 01:19:16266 if (is_android) {
[email protected]26046b52014-07-16 00:11:03267 deps += [
pkotwicze2dae8b2015-11-03 20:12:55268 "//base:base_junit_tests",
dpranke244f973d62015-11-20 05:38:10269 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38270 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02271 "//build/android/rezip",
pkotwicze2dae8b2015-11-03 20:12:55272 "//components/invalidation/impl:components_invalidation_impl_junit_tests",
273 "//components/policy/android:components_policy_junit_tests",
274 "//content/public/android:content_junit_tests",
275 "//net/android:net_junit_tests",
276 "//testing/android/junit:junit_unittests",
agrieve40ba6862015-07-15 02:09:05277 "//third_party/errorprone:chromium_errorprone",
pkotwicze38594d2015-09-25 00:05:10278 "//tools/android:android_tools",
pkotwicz6b5571b2015-12-08 21:54:49279 "//tools/android:memconsumer",
pkotwicz8b9d18c2015-10-05 01:59:33280 "//tools/android/heap_profiler:heap_profiler_unittests",
dgn28050da2015-10-19 10:16:43281 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk",
dprankee2ef3822015-02-24 21:42:18282 "//tools/imagediff($host_toolchain)",
283
284 # TODO(GYP): Remove these when the components_unittests work.
285 "//components/history/core/test:test",
286 "//components/policy:policy_component_test_support",
287 "//components/policy:test_support",
288 "//components/rappor:test_support",
289 "//components/signin/core/browser:test_support",
290 "//components/sync_driver:test_support",
291 "//components/user_manager",
292 "//components/wallpaper",
293 "//content/shell/android:content_shell_apk",
pkotwicz8c316092015-11-23 20:30:53294 "//content/test:video_decode_accelerator_unittest",
dprankee2ef3822015-02-24 21:42:18295
296 # TODO(GYP): Are these needed, or will they be pulled in automatically?
[email protected]684b2292014-08-22 19:12:39297 "//third_party/android_tools:android_gcm_java",
[email protected]684b2292014-08-22 19:12:39298 "//third_party/android_tools:android_support_v13_java",
299 "//third_party/android_tools:android_support_v7_appcompat_java",
300 "//third_party/android_tools:android_support_v7_mediarouter_java",
dpranke244f973d62015-11-20 05:38:10301 "//third_party/android_tools:uiautomator_java",
dprankee2ef3822015-02-24 21:42:18302 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29303 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18304 "//third_party/openmax_dl/dl",
dprankee2ef3822015-02-24 21:42:18305 "//ui/android:ui_java",
306
307 # TODO(GYP): Are these needed?
308 "//chrome/test:test_support_unit",
309 "//third_party/smhasher:murmurhash3",
310 "//ui/message_center:test_support",
311 ]
312 deps -= [
rockot9c67e5f2015-03-12 20:01:21313 "//net:net_perftests",
dprankee2ef3822015-02-24 21:42:18314 "//url:url_unittests",
[email protected]26046b52014-07-16 00:11:03315 ]
316
pkotwicz061c5a42015-09-30 02:16:54317 if (!is_chromecast) {
318 deps += [
michaelbaicbcc7e62015-11-12 04:29:53319 "//android_webview",
pkotwicze2dae8b2015-11-03 20:12:55320 "//chrome/android:chrome_junit_tests",
pkotwicz061c5a42015-09-30 02:16:54321 "//chrome/android:chrome_public_apk",
322 "//chrome/android:chrome_public_test_apk",
323 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
pkotwicz0a2255e2015-10-06 16:29:05324 "//third_party/custom_tabs_client:custom_tabs_client_example_apk",
pkotwicz061c5a42015-09-30 02:16:54325 ]
326 }
327
pkotwicz06a4b4b42015-10-29 23:11:11328 if (target_cpu != "x64") {
329 deps += [ "//third_party/android_platform:android_relocation_packer_unittests($host_toolchain)" ]
330 }
331
cjhopmanca675d3e2014-10-24 03:50:45332 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18333 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45334 }
dprankedb5527d72015-03-08 04:22:47335 }
336
pkotwicza4d233b22015-11-02 18:20:38337 if (is_linux || is_android) { # TODO(GYP): || is_bsd?
dprankefd1813272015-04-13 23:56:00338 deps += [
pkotwicza4d233b22015-11-02 18:20:38339 "//breakpad:breakpad_unittests",
dprankefd1813272015-04-13 23:56:00340 "//breakpad:core-2-minidump",
pkotwicza4d233b22015-11-02 18:20:38341 "//breakpad:generate_test_dump",
dprankefd1813272015-04-13 23:56:00342 "//breakpad:minidump-2-core",
343 ]
344 }
345
dpranke6293d252015-04-14 19:12:00346 if (is_chromeos) {
347 deps += [
348 "//chromeos:chromeos_unittests",
349 "//ui/chromeos:ui_chromeos_unittests",
350 ]
351 }
352
dprankefd1813272015-04-13 23:56:00353 if (is_chromeos || is_mac || is_win) {
354 deps += [
355 "//rlz:rlz_id",
356 "//rlz:rlz_lib",
357 "//rlz:rlz_unittests",
358 ]
359 }
360
dprankedb5527d72015-03-08 04:22:47361 if (is_linux) {
362 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06363 deps += [
dpranke2bc89212015-11-18 00:24:43364 "//chrome:manpage",
365 "//chrome:xdg_mime",
dprankedb5527d72015-03-08 04:22:47366 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18367 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47368 "//net:disk_cache_memory_test",
369 "//net:flip_in_mem_edsm_server",
370 "//net:flip_in_mem_edsm_server_unittests",
371 "//net:quic_client",
372 "//net:quic_server",
373 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18374 "//sandbox/linux:sandbox_linux_unittests",
hiroshigee6d374c2015-02-24 07:54:06375 ]
dnicoara8c6aa8e2015-03-11 23:20:32376
377 if (is_chromeos || use_ash) {
378 deps += [ "//components/session_manager/core" ]
379 }
dpranke2bc89212015-11-18 00:24:43380
381 if (is_chrome_branded && is_official_build) {
382 # TODO(dpranke): add the linux_dump_symbols flag?
383 deps += [ "//chrome:linux_symbols" ]
384 }
dprankedb5527d72015-03-08 04:22:47385 }
386
sherouke1859f92015-08-05 10:19:10387 if (is_ios || is_win || (is_linux && !is_chromeos)) {
388 deps += [
389 "//base:base_i18n_perftests",
390 "//base:base_perftests",
sherouk710734d2015-09-02 19:02:58391 "//google_apis:google_apis_unittests",
sherouke1859f92015-08-05 10:19:10392 ]
393 }
394
dprankefd1813272015-04-13 23:56:00395 if (is_win || (is_linux && !is_chromeos)) {
396 # TODO(GYP): Figure out which of these should (and can) build
397 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44398 deps += [
dprankedb5527d72015-03-08 04:22:47399 "//base:build_utf8_validator_tables",
dpranke244f973d62015-11-20 05:38:10400 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47401 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00402 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47403 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00404 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47405 "//chrome/test:sync_performance_tests",
406 "//chrome/test/chromedriver:chromedriver",
407 "//chrome/test/chromedriver:chromedriver_tests",
dprankedb5527d72015-03-08 04:22:47408 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47409 "//content/test:content_gl_benchmark",
dpranke244f973d62015-11-20 05:38:10410 "//content/test:content_gl_tests",
dprankedb5527d72015-03-08 04:22:47411 "//courgette:courgette",
412 "//courgette:courgette_fuzz",
413 "//courgette:courgette_minimal_tool",
414 "//courgette:courgette_unittests",
415 "//device:device_unittests",
416 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47417 "//gin:gin_unittests",
dprankedb5527d72015-03-08 04:22:47418 "//google_apis/gcm:mcs_probe",
dprankefd1813272015-04-13 23:56:00419 "//gpu:gl_tests",
dpranke244f973d62015-11-20 05:38:10420 "//gpu:gpu_perftests",
dprankedb5527d72015-03-08 04:22:47421 "//ipc:ipc_perftests",
dprankedb5527d72015-03-08 04:22:47422 "//media:media_perftests",
dprankedb5527d72015-03-08 04:22:47423 "//net:crash_cache",
424 "//net:crl_set_dump",
425 "//net:dns_fuzz_stub",
dprankefd1813272015-04-13 23:56:00426 "//net:dump_cache",
dprankedb5527d72015-03-08 04:22:47427 "//net:gdig",
428 "//net:get_server_time",
dprankedb5527d72015-03-08 04:22:47429 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
dprankefd1813272015-04-13 23:56:00430 "//net:run_testserver",
dprankedb5527d72015-03-08 04:22:47431 "//net:stress_cache",
432 "//net:tld_cleanup",
dprankec09ccaa2015-03-27 22:00:38433 "//ppapi:pepper_hash_for_uma",
dprankefd1813272015-04-13 23:56:00434 "//ppapi:ppapi_perftests",
dprankedb5527d72015-03-08 04:22:47435 "//sync:run_sync_testserver",
cwallez4c57af32015-09-03 14:54:49436 "//third_party/angle/src/tests:angle_unittests",
dprankedb5527d72015-03-08 04:22:47437 "//third_party/codesighs:maptsvdifftool",
dprankedb5527d72015-03-08 04:22:47438 "//third_party/leveldatabase:env_chromium_unittests",
439 "//third_party/libaddressinput:libaddressinput_unittests",
dprankefd1813272015-04-13 23:56:00440 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47441 "//ui/compositor:compositor_unittests",
442 ]
443
dpranke7e19b472015-11-13 00:49:33444 if (!is_linux) {
445 # TODO(dpranke): Re-enable this once
446 # https://chromium-review.googlesource.com/#/c/312298/1 is rolled
447 # into chromium.
448 deps += [ "//third_party/angle/src/tests:angle_end2end_tests" ]
449 }
450
dprankedb5527d72015-03-08 04:22:47451 if (enable_extensions) {
452 deps += [ "//extensions/shell:app_shell" ]
453 }
454
455 if (enable_nacl) {
dprankefd1813272015-04-13 23:56:00456 deps += [ "//components/nacl:nacl_loader_unittests" ]
dpranke2bc89212015-11-18 00:24:43457
458 if (is_linux) {
459 # TODO(dpranke): Figure out what platforms should actually have this.
460 deps += [
dpranke2bc89212015-11-18 00:24:43461 "//components/nacl:helper_nonsfi",
dpranke244f973d62015-11-20 05:38:10462 "//components/nacl:nacl_helper",
dpranke2bc89212015-11-18 00:24:43463 ]
464 }
dprankedb5527d72015-03-08 04:22:47465 }
466
mostynb2196a462015-08-20 17:22:10467 if (media_use_ffmpeg) {
468 deps += [ "//media:ffmpeg_regression_tests" ]
469 }
470
dprankedb5527d72015-03-08 04:22:47471 if (use_ash) {
472 deps += [
benf97b2572015-09-25 23:12:53473 "//ash:ash_shell_with_content",
dprankedb5527d72015-03-08 04:22:47474 "//ash:ash_unittests",
475 ]
476 }
477
478 if (use_aura) {
479 deps += [
480 "//ui/aura:aura_unittests",
481 "//ui/aura:bench",
482 "//ui/aura:demo",
483 ]
484 }
dprankefd1813272015-04-13 23:56:00485 }
486
487 if (is_linux && !is_chromeos) {
488 deps += [
489 # TODO(GYP): Figure out which of these should (and can) build
490 # under which other conditions.
491 "//build/sanitizers:copy_llvm_symbolizer",
492 "//chrome/test:chrome_app_unittests",
493 "//cloud_print:cloud_print_unittests",
494 "//components/network_hints/browser",
dprankefd1813272015-04-13 23:56:00495 "//content/public/app:browser",
496 "//content/public/app:child",
497
498 # TODO(GYP): Remove this when the gles2 tests work
499 "//gpu/command_buffer/client:gles2_implementation_no_check",
dprankefd1813272015-04-13 23:56:00500 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/471903 to make this complete.
dprankefd1813272015-04-13 23:56:00501 "//media/cast:tap_proxy",
miu45b848fe2015-11-26 01:23:29502 "//media/cast:testing_tools",
jam00802992015-05-20 03:37:19503 "//mojo/application/public/cpp",
dprankefd1813272015-04-13 23:56:00504 "//skia:filter_fuzz_stub",
505 "//skia:image_operations_bench",
506 "//sync/tools:sync_client",
507 "//sync/tools:sync_listen_notifications",
508 "//testing/gmock:gmock_main",
jam76bcf0c2015-10-02 21:01:28509
510 # TODO(use-new-edk):
511 #"//mojo/edk/test:mojo_public_system_perftests",
dpranke244f973d62015-11-20 05:38:10512 "//third_party/codesighs:nm2tsv",
dprankefd1813272015-04-13 23:56:00513 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
dpranke244f973d62015-11-20 05:38:10514 "//third_party/sqlite:sqlite_shell",
dprankefd1813272015-04-13 23:56:00515 "//ui/keyboard:keyboard_unittests",
516 "//ui/message_center:message_center_unittests",
517 "//ui/snapshot:snapshot_unittests",
518 "//ui/views/examples:views_examples_with_content_exe",
dprankefd1813272015-04-13 23:56:00519 ]
520
dprankeec10b3932015-10-02 17:58:23521 deps += [
522 "//breakpad:dump_syms($host_toolchain)",
523 "//breakpad:microdump_stackwalk($host_toolchain)",
524 "//breakpad:minidump_dump($host_toolchain)",
525 "//breakpad:minidump_stackwalk($host_toolchain)",
526 ]
dprankefd1813272015-04-13 23:56:00527
528 if (!is_debug && !is_component_build) {
529 deps += [ "//chrome/tools/service_discovery_sniffer" ]
530 }
531
532 if (toolkit_views) {
533 deps += [ "//ui/app_list:app_list_demo" ]
534 }
dprankedb5527d72015-03-08 04:22:47535
536 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44537 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59538 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44539 }
dprankedb5527d72015-03-08 04:22:47540 }
541 }
542
543 if (is_mac) {
544 deps += [
545 "//breakpad:crash_inspector",
546 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44547 "//third_party/apple_sample_code",
548 "//third_party/molokocacao",
549 ]
dpranke43760592014-11-08 02:59:57550 deps -= [
brettw011138d2015-10-21 03:05:38551 # Mojo in GN contains some things which are never compiled in GYP on Mac,
552 # so compilation fails on Mac. They need porting.
brettwe1d40652015-10-23 23:06:10553 "//mojo",
dprankecf8465db72014-11-10 23:51:22554 ]
dprankefd1813272015-04-13 23:56:00555 }
556
557 if (is_win) {
558 deps += [
559 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43560 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00561 "//chrome_elf:chrome_elf_unittests",
562 "//chrome_elf:dll_hash_main",
brettw70b359a2015-10-14 23:43:23563 "//cloud_print:cloud_print_unittests",
dpranke244f973d62015-11-20 05:38:10564 "//cloud_print/service/win:cloud_print_service",
dprankefd1813272015-04-13 23:56:00565 "//components/wifi:wifi_test",
566 "//net:quic_client",
567 "//net:quic_server",
568 "//sandbox/win:pocdll",
569 "//sandbox/win:sandbox_poc",
570 "//sandbox/win:sbox_integration_tests",
571 "//sandbox/win:sbox_unittests",
572 "//sandbox/win:sbox_validation_tests",
573 "//testing/gtest:gtest_main",
574 "//third_party/codesighs:msmap2tsv",
575 "//third_party/pdfium/samples:pdfium_diff",
576 "//ui/metro_viewer",
577 ]
dprankee2ef3822015-02-24 21:42:18578 deps -= [
579 "//crypto:crypto_unittests", # TODO(GYP)
580 "//net:net_unittests", # TODO(GYP)
581 ]
sherouk53f0f1a2015-08-03 15:59:35582 } else if (!is_android && !is_ios) {
miu45b848fe2015-11-26 01:23:29583 deps += [ "//breakpad:symupload($host_toolchain)" ]
mohsenf837da7c2014-12-09 19:01:34584 }
slance9d62f2015-11-04 01:15:01585 if (is_chromecast) {
586 deps += [ "//chromecast:cast_shell" ]
587 }
miu45b848fe2015-11-26 01:23:29588
589 if (is_ios || is_mac) {
590 deps += [ "//media/cast:cast_h264_vt_encoder_unittests" ]
591 }
hbos17a7b4a22015-12-07 10:49:45592
593 if (use_openh264) {
594 deps += [
595 "//third_party/openh264:common",
596 "//third_party/openh264:encoder",
597 "//third_party/openh264:processing",
598 ]
599 }
[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
slance9d62f2015-11-04 01:15:01607 if (!is_ios && !is_chromecast) {
dpranke2a294622015-08-07 05:23:01608 deps += [ "//mandoline:all" ]
sherouk53f0f1a2015-08-03 15:59:35609 }
isherman0f89b43eb2015-04-11 00:02:45610
dpranke244f973d62015-11-20 05:38:10611 if (!is_android && !is_ios && !is_chromeos) {
isherman0f89b43eb2015-04-11 00:02:45612 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
613 }
614
ben8f4e95ad2015-12-01 18:35:58615 if (is_win || is_linux) {
sky130827232015-11-23 20:41:08616 deps += [ "//mash:all" ]
sky97b65592015-11-02 20:08:25617 }
618
slance9d62f2015-11-04 01:15:01619 if (is_linux && !is_chromeos && !is_chromecast) {
dprankedb5527d72015-03-08 04:22:47620 # TODO(GYP): Figure out if any of these should be in gn_all
621 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45622 deps += [
dprankedb5527d72015-03-08 04:22:47623 ":gn_mojo_targets",
dtrainor4ae32722015-09-26 00:14:12624 "//blimp:blimp_tests",
dprankedb5527d72015-03-08 04:22:47625 "//chrome/browser/resources:extension_resource_demo",
626 "//chrome/installer/util:strings",
dprankedb5527d72015-03-08 04:22:47627 "//chrome/test:load_library_perf_tests",
628 "//chrome/tools/convert_dict",
629 "//components/constrained_window:unit_tests",
630 "//components/enhanced_bookmarks:test_support",
dprankedb5527d72015-03-08 04:22:47631 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45632 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47633 "//components/rappor:unit_tests",
634 "//components/sessions:unit_tests",
635 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47636 "//media/cast:udp_proxy",
dprankedb5527d72015-03-08 04:22:47637 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
638 "//storage/browser:dump_file_system",
639 "//third_party/angle:libANGLE",
640 "//third_party/angle:libEGL",
641 "//third_party/angle:libGLESv2",
642 "//third_party/cld_2:cld_2_dynamic_data_tool",
643 "//third_party/leveldatabase:leveldb_arena_test",
644 "//third_party/leveldatabase:leveldb_bloom_test",
dprankedb5527d72015-03-08 04:22:47645 "//third_party/leveldatabase:leveldb_cache_test",
dprankedb5527d72015-03-08 04:22:47646 "//third_party/leveldatabase:leveldb_corruption_test",
dpranke244f973d62015-11-20 05:38:10647 "//third_party/leveldatabase:leveldb_crc32c_test",
648 "//third_party/leveldatabase:leveldb_db_bench",
649 "//third_party/leveldatabase:leveldb_db_test",
dprankedb5527d72015-03-08 04:22:47650 "//third_party/leveldatabase:leveldb_dbformat_test",
dpranke244f973d62015-11-20 05:38:10651 "//third_party/leveldatabase:leveldb_env_test",
652 "//third_party/leveldatabase:leveldb_filename_test",
653 "//third_party/leveldatabase:leveldb_filter_block_test",
654 "//third_party/leveldatabase:leveldb_log_test",
655 "//third_party/leveldatabase:leveldb_skiplist_test",
656 "//third_party/leveldatabase:leveldb_table_test",
657 "//third_party/leveldatabase:leveldb_version_edit_test",
658 "//third_party/leveldatabase:leveldb_write_batch_test",
dprankedb5527d72015-03-08 04:22:47659 "//third_party/libjpeg_turbo:simd",
dpranke244f973d62015-11-20 05:38:10660 "//third_party/libsrtp:rdbx_driver",
dprankedb5527d72015-03-08 04:22:47661 "//third_party/libsrtp:replay_driver",
662 "//third_party/libsrtp:roc_driver",
663 "//third_party/libsrtp:rtpw",
dprankedb5527d72015-03-08 04:22:47664 "//third_party/libsrtp:srtp_driver",
665 "//third_party/libsrtp:srtp_driver",
dpranke244f973d62015-11-20 05:38:10666 "//third_party/libsrtp:srtp_test_aes_calc",
dprankedb5527d72015-03-08 04:22:47667 "//third_party/libsrtp:srtp_test_cipher_driver",
668 "//third_party/libsrtp:srtp_test_datatypes_driver",
dprankedb5527d72015-03-08 04:22:47669 "//third_party/libsrtp:srtp_test_env",
dpranke244f973d62015-11-20 05:38:10670 "//third_party/libsrtp:srtp_test_kernel_driver",
dprankedb5527d72015-03-08 04:22:47671 "//third_party/libsrtp:srtp_test_rand_gen",
672 "//third_party/libsrtp:srtp_test_sha1_driver",
673 "//third_party/libsrtp:srtp_test_stat_driver",
674 "//third_party/opus:opus_compare",
675 "//third_party/opus:opus_demo",
dpranke244f973d62015-11-20 05:38:10676 "//third_party/opus:test_opus_api",
dprankedb5527d72015-03-08 04:22:47677 "//third_party/opus:test_opus_decode",
678 "//third_party/opus:test_opus_encode",
dprankedb5527d72015-03-08 04:22:47679 "//third_party/opus:test_opus_padding",
dpranke244f973d62015-11-20 05:38:10680 "//third_party/pdfium/third_party:fx_freetype",
dprankedb5527d72015-03-08 04:22:47681 "//third_party/webrtc/system_wrappers:field_trial_default",
682 "//third_party/webrtc/system_wrappers:metrics_default",
683 "//ui/display/types",
684 "//ui/shell_dialogs:shell_dialogs_unittests",
685 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47686 ]
dprankeb0713542015-07-31 21:07:21687
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16688 if (target_cpu == "x86" || target_cpu == "x64") {
mcgrathr916aafa2015-09-15 00:06:53689 deps += [
mcgrathr916aafa2015-09-15 00:06:53690 "//native_client/src/trusted/platform_qualify:vcpuid",
dpranke244f973d62015-11-20 05:38:10691 "//third_party/libjpeg_turbo:simd_asm",
mcgrathr916aafa2015-09-15 00:06:53692 ]
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16693 }
dprankedb5527d72015-03-08 04:22:47694 if (enable_nacl) {
695 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
696 }
697 if (use_ozone) {
698 deps += [ "//ui/ozone/demo" ]
699 }
700 if (is_android) {
701 deps += [ "//build/android/gyp/test:hello_world" ]
702 }
dpranke807f602b2015-03-17 23:20:56703
704 if (is_linux && current_toolchain == host_toolchain) {
705 deps += [ "//v8:d8" ]
706 }
dprankedb5527d72015-03-08 04:22:47707 }
dprankeb0713542015-07-31 21:07:21708
wez1cbe17a2015-11-11 07:23:56709 if (is_android || is_linux || is_chromeos) {
nyquist7af11b72015-09-10 20:18:14710 deps += [ "//blimp" ]
nyquistb5f050b2015-09-10 05:10:35711 }
712
dprankeb0713542015-07-31 21:07:21713 if (is_mac) {
714 deps -= [ "//mandoline:all" ] # TODO(GYP)
715 }
aizatskyfc46a9f2015-10-09 21:20:08716
zhaoqin36e94032015-12-11 23:39:12717 if (use_libfuzzer || use_drfuzz) {
aizatskyddefc992015-11-20 08:42:03718 # these are needed only for gn to discover build files.
719 deps += [
720 "//testing/libfuzzer:libfuzzer_main",
agrieved7a71c882015-11-20 19:53:28721 "//testing/libfuzzer/fuzzers:string_to_int_fuzzer",
aizatskyddefc992015-11-20 08:42:03722 ]
aizatskyfc46a9f2015-10-09 21:20:08723 }
dprankedb5527d72015-03-08 04:22:47724}
725
726group("gn_mojo_targets") {
727 testonly = true
728 if (is_linux && !is_chromeos) {
729 # TODO(GYP): Figure out if any of these should be in gn_all
730 # and figure out how cross-platform they are
731 deps = [
dprankedb5527d72015-03-08 04:22:47732 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47733 "//media/mojo:tests",
dpranke244f973d62015-11-20 05:38:10734 "//media/mojo/services:cdm_service",
msw1bb9c6c2015-05-06 21:35:44735 "//mojo:tests",
pkotwicz8b9d18c2015-10-05 01:59:33736
jam76bcf0c2015-10-02 21:01:28737 # TODO(use-new-edk):
738 #"//mojo/edk/js/test:js_integration_tests",
739 #"//mojo/edk/js/tests:js_to_cpp_bindings_python",
dprankedb5527d72015-03-08 04:22:47740 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47741 ]
dprankedb5527d72015-03-08 04:22:47742 }
743}
744
745group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03746 deps = [
dprankeb6128d02015-05-01 16:40:30747 "//build/config/sanitizers:options_sources",
748
dprankedb5527d72015-03-08 04:22:47749 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
750 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30751
752 "//ui/resources:repack_ui_test_mac_locale_pack",
dpranked62d8512015-03-02 03:06:03753 ]
dpranked2fb5222015-09-10 22:39:05754
755 if (!is_ios) {
756 deps += [
dpranked2fb5222015-09-10 22:39:05757 "//v8:postmortem-metadata",
dpranke244f973d62015-11-20 05:38:10758 "//v8:v8_snapshot",
dpranked2fb5222015-09-10 22:39:05759 ]
760 }
dpranked62d8512015-03-02 03:06:03761}
762
tfarinacb2638b2015-05-12 03:24:15763if (!is_ios) {
764 # This group includes all of the targets needed to build and test Blink,
765 # including running the layout tests (see below).
766 group("blink_tests") {
767 testonly = true
768
769 deps = [
770 "//third_party/WebKit/public:all_blink",
771 ]
772
773 # NOTE: The following deps are needed to run the layout tests
774 # (run-webkit-tests) but there is no GN target for the layout tests,
775 # so we need to specify the dependencies here instead.
776 if (is_android) {
777 deps += [
pkotwicza4d233b22015-11-02 18:20:38778 "//breakpad:breakpad_unittests_deps",
tfarinacb2638b2015-05-12 03:24:15779 "//breakpad:dump_syms($host_toolchain)",
pkotwicza4d233b22015-11-02 18:20:38780 "//breakpad:microdump_stackwalk($host_toolchain)",
781 "//breakpad:minidump_dump($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15782 "//breakpad:minidump_stackwalk($host_toolchain)",
pkotwicza4d233b22015-11-02 18:20:38783 "//breakpad:symupload($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15784 "//content/shell/android:content_shell_apk",
ojan94989c72015-07-17 21:56:42785 "//tools/imagediff($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15786 ]
787 } else {
ojan94989c72015-07-17 21:56:42788 deps += [
789 "//content/shell:content_shell",
790 "//tools/imagediff",
791 ]
tfarinacb2638b2015-05-12 03:24:15792 }
793
794 if (is_win) {
795 deps += [
jochen73e711c2015-06-03 10:01:46796 "//components/test_runner:layout_test_helper",
brettw0d3b1df2015-12-03 00:10:01797 "//content/shell:content_shell_crash_service",
tfarinacb2638b2015-05-12 03:24:15798 ]
799 }
800
801 if (!is_win && !is_android) {
Gordana.Cmiljanovicf243e9a2015-05-26 22:14:47802 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:15803 }
804
805 if (is_mac) {
806 deps += [
807 "//breakpad:dump_syms($host_toolchain)",
jochen73e711c2015-06-03 10:01:46808 "//components/test_runner:layout_test_helper",
tfarinacb2638b2015-05-12 03:24:15809 ]
810 }
811
812 if (is_linux) {
813 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
814 }
815 }
816}
817
dpranke6abd8652015-08-28 03:21:11818# Add a dummy target for compatibility w/ GYP
819group("chromium_swarm_tests") {
820}
821
dpranke2302dfa2015-09-29 02:21:52822group("chromium_builder_perf") {
823 testonly = true
824
825 # TODO(GYP): Make this target work on the mac.
826 if (!is_ios && !is_android && !is_chromecast && !is_mac) {
827 deps = [
828 "//cc:cc_perftests",
829 "//chrome",
830 "//chrome/test:load_library_perf_tests",
831 "//chrome/test:sync_performance_tests",
832 "//gpu:gpu_perftests",
833 "//media:media_perftests",
834 "//media/midi:midi_unittests",
835 "//tools/telemetry:bitmaptools",
836 ]
837
838 if (!is_chromeos) {
839 deps += [ "//chrome/test:performance_browser_tests" ]
840 }
841 if (is_linux && !is_chromeos) {
dpranke9aed5d582015-11-22 23:22:04842 if (is_official_build) {
843 # In GN builds, this is controlled by the 'linux_dump_symbols'
844 # flag, which defaults to 1 for official builds. For now,
845 # we skip the separate flag and just key off of is_official_build.
846 deps += [ "//chrome:linux_symbols" ]
847 }
dpranke2302dfa2015-09-29 02:21:52848
849 if (!is_chromeos) {
850 deps += [ "//tools/perf/clear_system_cache" ]
851 }
852 }
853
854 if (is_win) {
855 deps += [
brettw0d3b1df2015-12-03 00:10:01856 "//chrome/tools/crash_service",
dpranke2302dfa2015-09-29 02:21:52857 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008
858 ]
859
860 if (target_cpu == "x86") {
brettw0d3b1df2015-12-03 00:10:01861 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
dpranke2302dfa2015-09-29 02:21:52862 }
863 } else {
dprankeec10b3932015-10-02 17:58:23864 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
dpranke2302dfa2015-09-29 02:21:52865 }
866 }
867}