blob: 60a313e750e6eb8c073ed668d1d85f885a16e883 [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",
brettwa874dccb2015-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",
brettwa874dccb2015-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",
dpranke244f973d62015-11-20 05:38:10188 "//third_party/WebKit/Source/platform:heap_unittests",
189 "//third_party/WebKit/Source/platform:platform_unittests",
190 "//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",
pkotwicz8b9d18c2015-10-05 01:59:33279 "//tools/android/heap_profiler:heap_profiler_unittests",
dgn28050da2015-10-19 10:16:43280 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk",
dprankee2ef3822015-02-24 21:42:18281 "//tools/imagediff($host_toolchain)",
282
283 # TODO(GYP): Remove these when the components_unittests work.
284 "//components/history/core/test:test",
285 "//components/policy:policy_component_test_support",
286 "//components/policy:test_support",
287 "//components/rappor:test_support",
288 "//components/signin/core/browser:test_support",
289 "//components/sync_driver:test_support",
290 "//components/user_manager",
291 "//components/wallpaper",
292 "//content/shell/android:content_shell_apk",
pkotwicz8c316092015-11-23 20:30:53293 "//content/test:video_decode_accelerator_unittest",
dprankee2ef3822015-02-24 21:42:18294
295 # TODO(GYP): Are these needed, or will they be pulled in automatically?
[email protected]684b2292014-08-22 19:12:39296 "//third_party/android_tools:android_gcm_java",
[email protected]684b2292014-08-22 19:12:39297 "//third_party/android_tools:android_support_v13_java",
298 "//third_party/android_tools:android_support_v7_appcompat_java",
299 "//third_party/android_tools:android_support_v7_mediarouter_java",
dpranke244f973d62015-11-20 05:38:10300 "//third_party/android_tools:uiautomator_java",
dprankee2ef3822015-02-24 21:42:18301 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29302 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18303 "//third_party/openmax_dl/dl",
dprankee2ef3822015-02-24 21:42:18304 "//ui/android:ui_java",
305
306 # TODO(GYP): Are these needed?
307 "//chrome/test:test_support_unit",
308 "//third_party/smhasher:murmurhash3",
309 "//ui/message_center:test_support",
310 ]
311 deps -= [
rockot9c67e5f2015-03-12 20:01:21312 "//net:net_perftests",
dprankee2ef3822015-02-24 21:42:18313 "//url:url_unittests",
[email protected]26046b52014-07-16 00:11:03314 ]
315
pkotwicz061c5a42015-09-30 02:16:54316 if (!is_chromecast) {
317 deps += [
michaelbaicbcc7e62015-11-12 04:29:53318 "//android_webview",
pkotwicze2dae8b2015-11-03 20:12:55319 "//chrome/android:chrome_junit_tests",
pkotwicz061c5a42015-09-30 02:16:54320 "//chrome/android:chrome_public_apk",
321 "//chrome/android:chrome_public_test_apk",
322 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
pkotwicz0a2255e2015-10-06 16:29:05323 "//third_party/custom_tabs_client:custom_tabs_client_example_apk",
pkotwicz061c5a42015-09-30 02:16:54324 ]
325 }
326
pkotwicz06a4b4b42015-10-29 23:11:11327 if (target_cpu != "x64") {
328 deps += [ "//third_party/android_platform:android_relocation_packer_unittests($host_toolchain)" ]
329 }
330
cjhopmanca675d3e2014-10-24 03:50:45331 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18332 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45333 }
dprankedb5527d72015-03-08 04:22:47334 }
335
pkotwicza4d233b22015-11-02 18:20:38336 if (is_linux || is_android) { # TODO(GYP): || is_bsd?
dprankefd1813272015-04-13 23:56:00337 deps += [
pkotwicza4d233b22015-11-02 18:20:38338 "//breakpad:breakpad_unittests",
dprankefd1813272015-04-13 23:56:00339 "//breakpad:core-2-minidump",
pkotwicza4d233b22015-11-02 18:20:38340 "//breakpad:generate_test_dump",
dprankefd1813272015-04-13 23:56:00341 "//breakpad:minidump-2-core",
342 ]
343 }
344
dpranke6293d252015-04-14 19:12:00345 if (is_chromeos) {
346 deps += [
347 "//chromeos:chromeos_unittests",
348 "//ui/chromeos:ui_chromeos_unittests",
349 ]
350 }
351
dprankefd1813272015-04-13 23:56:00352 if (is_chromeos || is_mac || is_win) {
353 deps += [
354 "//rlz:rlz_id",
355 "//rlz:rlz_lib",
356 "//rlz:rlz_unittests",
357 ]
358 }
359
dprankedb5527d72015-03-08 04:22:47360 if (is_linux) {
361 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06362 deps += [
dpranke2bc89212015-11-18 00:24:43363 "//chrome:manpage",
364 "//chrome:xdg_mime",
dprankedb5527d72015-03-08 04:22:47365 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18366 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47367 "//net:disk_cache_memory_test",
368 "//net:flip_in_mem_edsm_server",
369 "//net:flip_in_mem_edsm_server_unittests",
370 "//net:quic_client",
371 "//net:quic_server",
372 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18373 "//sandbox/linux:sandbox_linux_unittests",
hiroshigee6d374c2015-02-24 07:54:06374 ]
dnicoara8c6aa8e2015-03-11 23:20:32375
376 if (is_chromeos || use_ash) {
377 deps += [ "//components/session_manager/core" ]
378 }
dpranke2bc89212015-11-18 00:24:43379
380 if (is_chrome_branded && is_official_build) {
381 # TODO(dpranke): add the linux_dump_symbols flag?
382 deps += [ "//chrome:linux_symbols" ]
383 }
dprankedb5527d72015-03-08 04:22:47384 }
385
sherouke1859f92015-08-05 10:19:10386 if (is_ios || is_win || (is_linux && !is_chromeos)) {
387 deps += [
388 "//base:base_i18n_perftests",
389 "//base:base_perftests",
sherouk710734d2015-09-02 19:02:58390 "//google_apis:google_apis_unittests",
sherouke1859f92015-08-05 10:19:10391 ]
392 }
393
dprankefd1813272015-04-13 23:56:00394 if (is_win || (is_linux && !is_chromeos)) {
395 # TODO(GYP): Figure out which of these should (and can) build
396 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44397 deps += [
dprankedb5527d72015-03-08 04:22:47398 "//base:build_utf8_validator_tables",
dpranke244f973d62015-11-20 05:38:10399 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47400 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00401 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47402 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00403 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47404 "//chrome/test:sync_performance_tests",
405 "//chrome/test/chromedriver:chromedriver",
406 "//chrome/test/chromedriver:chromedriver_tests",
dprankedb5527d72015-03-08 04:22:47407 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47408 "//content/test:content_gl_benchmark",
dpranke244f973d62015-11-20 05:38:10409 "//content/test:content_gl_tests",
dprankedb5527d72015-03-08 04:22:47410 "//courgette:courgette",
411 "//courgette:courgette_fuzz",
412 "//courgette:courgette_minimal_tool",
413 "//courgette:courgette_unittests",
414 "//device:device_unittests",
415 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47416 "//gin:gin_unittests",
dprankedb5527d72015-03-08 04:22:47417 "//google_apis/gcm:mcs_probe",
dprankefd1813272015-04-13 23:56:00418 "//gpu:gl_tests",
dpranke244f973d62015-11-20 05:38:10419 "//gpu:gpu_perftests",
dprankedb5527d72015-03-08 04:22:47420 "//ipc:ipc_perftests",
dprankedb5527d72015-03-08 04:22:47421 "//media:media_perftests",
dprankedb5527d72015-03-08 04:22:47422 "//net:crash_cache",
423 "//net:crl_set_dump",
424 "//net:dns_fuzz_stub",
dprankefd1813272015-04-13 23:56:00425 "//net:dump_cache",
dprankedb5527d72015-03-08 04:22:47426 "//net:gdig",
427 "//net:get_server_time",
dprankedb5527d72015-03-08 04:22:47428 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
dprankefd1813272015-04-13 23:56:00429 "//net:run_testserver",
dprankedb5527d72015-03-08 04:22:47430 "//net:stress_cache",
431 "//net:tld_cleanup",
dprankec09ccaa2015-03-27 22:00:38432 "//ppapi:pepper_hash_for_uma",
dprankefd1813272015-04-13 23:56:00433 "//ppapi:ppapi_perftests",
dprankedb5527d72015-03-08 04:22:47434 "//sync:run_sync_testserver",
cwallez4c57af32015-09-03 14:54:49435 "//third_party/angle/src/tests:angle_unittests",
dprankedb5527d72015-03-08 04:22:47436 "//third_party/codesighs:maptsvdifftool",
dprankedb5527d72015-03-08 04:22:47437 "//third_party/leveldatabase:env_chromium_unittests",
438 "//third_party/libaddressinput:libaddressinput_unittests",
dprankefd1813272015-04-13 23:56:00439 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47440 "//ui/compositor:compositor_unittests",
441 ]
442
dpranke7e19b472015-11-13 00:49:33443 if (!is_linux) {
444 # TODO(dpranke): Re-enable this once
445 # https://chromium-review.googlesource.com/#/c/312298/1 is rolled
446 # into chromium.
447 deps += [ "//third_party/angle/src/tests:angle_end2end_tests" ]
448 }
449
dprankedb5527d72015-03-08 04:22:47450 if (enable_extensions) {
451 deps += [ "//extensions/shell:app_shell" ]
452 }
453
454 if (enable_nacl) {
dprankefd1813272015-04-13 23:56:00455 deps += [ "//components/nacl:nacl_loader_unittests" ]
dpranke2bc89212015-11-18 00:24:43456
457 if (is_linux) {
458 # TODO(dpranke): Figure out what platforms should actually have this.
459 deps += [
dpranke2bc89212015-11-18 00:24:43460 "//components/nacl:helper_nonsfi",
dpranke244f973d62015-11-20 05:38:10461 "//components/nacl:nacl_helper",
dpranke2bc89212015-11-18 00:24:43462 ]
463 }
dprankedb5527d72015-03-08 04:22:47464 }
465
mostynb2196a462015-08-20 17:22:10466 if (media_use_ffmpeg) {
467 deps += [ "//media:ffmpeg_regression_tests" ]
468 }
469
dprankedb5527d72015-03-08 04:22:47470 if (use_ash) {
471 deps += [
benf97b2572015-09-25 23:12:53472 "//ash:ash_shell_with_content",
dprankedb5527d72015-03-08 04:22:47473 "//ash:ash_unittests",
474 ]
475 }
476
477 if (use_aura) {
478 deps += [
479 "//ui/aura:aura_unittests",
480 "//ui/aura:bench",
481 "//ui/aura:demo",
482 ]
483 }
dprankefd1813272015-04-13 23:56:00484 }
485
486 if (is_linux && !is_chromeos) {
487 deps += [
488 # TODO(GYP): Figure out which of these should (and can) build
489 # under which other conditions.
490 "//build/sanitizers:copy_llvm_symbolizer",
491 "//chrome/test:chrome_app_unittests",
492 "//cloud_print:cloud_print_unittests",
493 "//components/network_hints/browser",
dprankefd1813272015-04-13 23:56:00494 "//content/public/app:browser",
495 "//content/public/app:child",
496
497 # TODO(GYP): Remove this when the gles2 tests work
498 "//gpu/command_buffer/client:gles2_implementation_no_check",
dprankefd1813272015-04-13 23:56:00499 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/471903 to make this complete.
dprankefd1813272015-04-13 23:56:00500 "//media/cast:tap_proxy",
miu45b848fe2015-11-26 01:23:29501 "//media/cast:testing_tools",
jam00802992015-05-20 03:37:19502 "//mojo/application/public/cpp",
dprankefd1813272015-04-13 23:56:00503 "//skia:filter_fuzz_stub",
504 "//skia:image_operations_bench",
505 "//sync/tools:sync_client",
506 "//sync/tools:sync_listen_notifications",
507 "//testing/gmock:gmock_main",
jam76bcf0c2015-10-02 21:01:28508
509 # TODO(use-new-edk):
510 #"//mojo/edk/test:mojo_public_system_perftests",
dpranke244f973d62015-11-20 05:38:10511 "//third_party/codesighs:nm2tsv",
dprankefd1813272015-04-13 23:56:00512 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
dpranke244f973d62015-11-20 05:38:10513 "//third_party/sqlite:sqlite_shell",
dprankefd1813272015-04-13 23:56:00514 "//ui/keyboard:keyboard_unittests",
515 "//ui/message_center:message_center_unittests",
516 "//ui/snapshot:snapshot_unittests",
517 "//ui/views/examples:views_examples_with_content_exe",
dprankefd1813272015-04-13 23:56:00518 ]
519
dprankeec10b3932015-10-02 17:58:23520 deps += [
521 "//breakpad:dump_syms($host_toolchain)",
522 "//breakpad:microdump_stackwalk($host_toolchain)",
523 "//breakpad:minidump_dump($host_toolchain)",
524 "//breakpad:minidump_stackwalk($host_toolchain)",
525 ]
dprankefd1813272015-04-13 23:56:00526
527 if (!is_debug && !is_component_build) {
528 deps += [ "//chrome/tools/service_discovery_sniffer" ]
529 }
530
531 if (toolkit_views) {
532 deps += [ "//ui/app_list:app_list_demo" ]
533 }
dprankedb5527d72015-03-08 04:22:47534
535 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44536 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59537 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44538 }
dprankedb5527d72015-03-08 04:22:47539 }
540 }
541
542 if (is_mac) {
543 deps += [
544 "//breakpad:crash_inspector",
545 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44546 "//third_party/apple_sample_code",
547 "//third_party/molokocacao",
548 ]
dpranke43760592014-11-08 02:59:57549 deps -= [
brettw011138d2015-10-21 03:05:38550 # Mojo in GN contains some things which are never compiled in GYP on Mac,
551 # so compilation fails on Mac. They need porting.
brettwe1d40652015-10-23 23:06:10552 "//mojo",
dprankecf8465db72014-11-10 23:51:22553 ]
dprankefd1813272015-04-13 23:56:00554 }
555
556 if (is_win) {
557 deps += [
558 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43559 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00560 "//chrome_elf:chrome_elf_unittests",
561 "//chrome_elf:dll_hash_main",
brettw70b359a2015-10-14 23:43:23562 "//cloud_print:cloud_print_unittests",
dpranke244f973d62015-11-20 05:38:10563 "//cloud_print/service/win:cloud_print_service",
dprankefd1813272015-04-13 23:56:00564 "//components/wifi:wifi_test",
565 "//net:quic_client",
566 "//net:quic_server",
567 "//sandbox/win:pocdll",
568 "//sandbox/win:sandbox_poc",
569 "//sandbox/win:sbox_integration_tests",
570 "//sandbox/win:sbox_unittests",
571 "//sandbox/win:sbox_validation_tests",
572 "//testing/gtest:gtest_main",
573 "//third_party/codesighs:msmap2tsv",
574 "//third_party/pdfium/samples:pdfium_diff",
575 "//ui/metro_viewer",
576 ]
dprankee2ef3822015-02-24 21:42:18577 deps -= [
578 "//crypto:crypto_unittests", # TODO(GYP)
579 "//net:net_unittests", # TODO(GYP)
580 ]
sherouk53f0f1a2015-08-03 15:59:35581 } else if (!is_android && !is_ios) {
miu45b848fe2015-11-26 01:23:29582 deps += [ "//breakpad:symupload($host_toolchain)" ]
mohsenf837da7c2014-12-09 19:01:34583 }
slance9d62f2015-11-04 01:15:01584 if (is_chromecast) {
585 deps += [ "//chromecast:cast_shell" ]
586 }
miu45b848fe2015-11-26 01:23:29587
588 if (is_ios || is_mac) {
589 deps += [ "//media/cast:cast_h264_vt_encoder_unittests" ]
590 }
hbos17a7b4a22015-12-07 10:49:45591
592 if (use_openh264) {
593 deps += [
594 "//third_party/openh264:common",
595 "//third_party/openh264:encoder",
596 "//third_party/openh264:processing",
597 ]
598 }
[email protected]f0e7ff882013-12-26 21:23:09599}
brettw533c50422015-02-26 17:49:16600
dpranked62d8512015-03-02 03:06:03601group("gn_only") {
dprankedb5527d72015-03-08 04:22:47602 testonly = true
603
dpranke2a294622015-08-07 05:23:01604 deps = []
605
slance9d62f2015-11-04 01:15:01606 if (!is_ios && !is_chromecast) {
dpranke2a294622015-08-07 05:23:01607 deps += [ "//mandoline:all" ]
sherouk53f0f1a2015-08-03 15:59:35608 }
isherman0f89b43eb2015-04-11 00:02:45609
dpranke244f973d62015-11-20 05:38:10610 if (!is_android && !is_ios && !is_chromeos) {
isherman0f89b43eb2015-04-11 00:02:45611 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
612 }
613
ben8f4e95ad2015-12-01 18:35:58614 if (is_win || is_linux) {
sky130827232015-11-23 20:41:08615 deps += [ "//mash:all" ]
sky97b65592015-11-02 20:08:25616 }
617
slance9d62f2015-11-04 01:15:01618 if (is_linux && !is_chromeos && !is_chromecast) {
dprankedb5527d72015-03-08 04:22:47619 # TODO(GYP): Figure out if any of these should be in gn_all
620 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45621 deps += [
dprankedb5527d72015-03-08 04:22:47622 ":gn_mojo_targets",
dtrainor4ae32722015-09-26 00:14:12623 "//blimp:blimp_tests",
dprankedb5527d72015-03-08 04:22:47624 "//chrome/browser/resources:extension_resource_demo",
625 "//chrome/installer/util:strings",
dprankedb5527d72015-03-08 04:22:47626 "//chrome/test:load_library_perf_tests",
627 "//chrome/tools/convert_dict",
628 "//components/constrained_window:unit_tests",
629 "//components/enhanced_bookmarks:test_support",
dprankedb5527d72015-03-08 04:22:47630 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45631 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47632 "//components/rappor:unit_tests",
633 "//components/sessions:unit_tests",
634 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47635 "//media/cast:udp_proxy",
dprankedb5527d72015-03-08 04:22:47636 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
637 "//storage/browser:dump_file_system",
638 "//third_party/angle:libANGLE",
639 "//third_party/angle:libEGL",
640 "//third_party/angle:libGLESv2",
641 "//third_party/cld_2:cld_2_dynamic_data_tool",
642 "//third_party/leveldatabase:leveldb_arena_test",
643 "//third_party/leveldatabase:leveldb_bloom_test",
dprankedb5527d72015-03-08 04:22:47644 "//third_party/leveldatabase:leveldb_cache_test",
dprankedb5527d72015-03-08 04:22:47645 "//third_party/leveldatabase:leveldb_corruption_test",
dpranke244f973d62015-11-20 05:38:10646 "//third_party/leveldatabase:leveldb_crc32c_test",
647 "//third_party/leveldatabase:leveldb_db_bench",
648 "//third_party/leveldatabase:leveldb_db_test",
dprankedb5527d72015-03-08 04:22:47649 "//third_party/leveldatabase:leveldb_dbformat_test",
dpranke244f973d62015-11-20 05:38:10650 "//third_party/leveldatabase:leveldb_env_test",
651 "//third_party/leveldatabase:leveldb_filename_test",
652 "//third_party/leveldatabase:leveldb_filter_block_test",
653 "//third_party/leveldatabase:leveldb_log_test",
654 "//third_party/leveldatabase:leveldb_skiplist_test",
655 "//third_party/leveldatabase:leveldb_table_test",
656 "//third_party/leveldatabase:leveldb_version_edit_test",
657 "//third_party/leveldatabase:leveldb_write_batch_test",
dprankedb5527d72015-03-08 04:22:47658 "//third_party/libjpeg_turbo:simd",
dpranke244f973d62015-11-20 05:38:10659 "//third_party/libsrtp:rdbx_driver",
dprankedb5527d72015-03-08 04:22:47660 "//third_party/libsrtp:replay_driver",
661 "//third_party/libsrtp:roc_driver",
662 "//third_party/libsrtp:rtpw",
dprankedb5527d72015-03-08 04:22:47663 "//third_party/libsrtp:srtp_driver",
664 "//third_party/libsrtp:srtp_driver",
dpranke244f973d62015-11-20 05:38:10665 "//third_party/libsrtp:srtp_test_aes_calc",
dprankedb5527d72015-03-08 04:22:47666 "//third_party/libsrtp:srtp_test_cipher_driver",
667 "//third_party/libsrtp:srtp_test_datatypes_driver",
dprankedb5527d72015-03-08 04:22:47668 "//third_party/libsrtp:srtp_test_env",
dpranke244f973d62015-11-20 05:38:10669 "//third_party/libsrtp:srtp_test_kernel_driver",
dprankedb5527d72015-03-08 04:22:47670 "//third_party/libsrtp:srtp_test_rand_gen",
671 "//third_party/libsrtp:srtp_test_sha1_driver",
672 "//third_party/libsrtp:srtp_test_stat_driver",
673 "//third_party/opus:opus_compare",
674 "//third_party/opus:opus_demo",
dpranke244f973d62015-11-20 05:38:10675 "//third_party/opus:test_opus_api",
dprankedb5527d72015-03-08 04:22:47676 "//third_party/opus:test_opus_decode",
677 "//third_party/opus:test_opus_encode",
dprankedb5527d72015-03-08 04:22:47678 "//third_party/opus:test_opus_padding",
dpranke244f973d62015-11-20 05:38:10679 "//third_party/pdfium/third_party:fx_freetype",
dprankedb5527d72015-03-08 04:22:47680 "//third_party/webrtc/system_wrappers:field_trial_default",
681 "//third_party/webrtc/system_wrappers:metrics_default",
682 "//ui/display/types",
683 "//ui/shell_dialogs:shell_dialogs_unittests",
684 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47685 ]
dprankeb0713542015-07-31 21:07:21686
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16687 if (target_cpu == "x86" || target_cpu == "x64") {
mcgrathr916aafa2015-09-15 00:06:53688 deps += [
mcgrathr916aafa2015-09-15 00:06:53689 "//native_client/src/trusted/platform_qualify:vcpuid",
dpranke244f973d62015-11-20 05:38:10690 "//third_party/libjpeg_turbo:simd_asm",
mcgrathr916aafa2015-09-15 00:06:53691 ]
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16692 }
dprankedb5527d72015-03-08 04:22:47693 if (enable_nacl) {
694 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
695 }
696 if (use_ozone) {
697 deps += [ "//ui/ozone/demo" ]
698 }
699 if (is_android) {
700 deps += [ "//build/android/gyp/test:hello_world" ]
701 }
dpranke807f602b2015-03-17 23:20:56702
703 if (is_linux && current_toolchain == host_toolchain) {
704 deps += [ "//v8:d8" ]
705 }
dprankedb5527d72015-03-08 04:22:47706 }
dprankeb0713542015-07-31 21:07:21707
wez1cbe17a2015-11-11 07:23:56708 if (is_android || is_linux || is_chromeos) {
nyquist7af11b72015-09-10 20:18:14709 deps += [ "//blimp" ]
nyquistb5f050b2015-09-10 05:10:35710 }
711
dprankeb0713542015-07-31 21:07:21712 if (is_mac) {
713 deps -= [ "//mandoline:all" ] # TODO(GYP)
714 }
aizatskyfc46a9f2015-10-09 21:20:08715
716 if (use_libfuzzer) {
aizatskyddefc992015-11-20 08:42:03717 # these are needed only for gn to discover build files.
718 deps += [
719 "//testing/libfuzzer:libfuzzer_main",
agrieved7a71c882015-11-20 19:53:28720 "//testing/libfuzzer/fuzzers:string_to_int_fuzzer",
aizatskyddefc992015-11-20 08:42:03721 ]
aizatskyfc46a9f2015-10-09 21:20:08722 }
dprankedb5527d72015-03-08 04:22:47723}
724
725group("gn_mojo_targets") {
726 testonly = true
727 if (is_linux && !is_chromeos) {
728 # TODO(GYP): Figure out if any of these should be in gn_all
729 # and figure out how cross-platform they are
730 deps = [
dprankedb5527d72015-03-08 04:22:47731 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47732 "//media/mojo:tests",
dpranke244f973d62015-11-20 05:38:10733 "//media/mojo/services:cdm_service",
msw1bb9c6c2015-05-06 21:35:44734 "//mojo:tests",
pkotwicz8b9d18c2015-10-05 01:59:33735
jam76bcf0c2015-10-02 21:01:28736 # TODO(use-new-edk):
737 #"//mojo/edk/js/test:js_integration_tests",
738 #"//mojo/edk/js/tests:js_to_cpp_bindings_python",
dprankedb5527d72015-03-08 04:22:47739 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47740 ]
dprankedb5527d72015-03-08 04:22:47741 }
742}
743
744group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03745 deps = [
dprankeb6128d02015-05-01 16:40:30746 "//build/config/sanitizers:options_sources",
747
dprankedb5527d72015-03-08 04:22:47748 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
749 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30750
751 "//ui/resources:repack_ui_test_mac_locale_pack",
dpranked62d8512015-03-02 03:06:03752 ]
dpranked2fb5222015-09-10 22:39:05753
754 if (!is_ios) {
755 deps += [
dpranked2fb5222015-09-10 22:39:05756 "//v8:postmortem-metadata",
dpranke244f973d62015-11-20 05:38:10757 "//v8:v8_snapshot",
dpranked2fb5222015-09-10 22:39:05758 ]
759 }
dpranked62d8512015-03-02 03:06:03760}
761
tfarinacb2638b2015-05-12 03:24:15762if (!is_ios) {
763 # This group includes all of the targets needed to build and test Blink,
764 # including running the layout tests (see below).
765 group("blink_tests") {
766 testonly = true
767
768 deps = [
769 "//third_party/WebKit/public:all_blink",
770 ]
771
772 # NOTE: The following deps are needed to run the layout tests
773 # (run-webkit-tests) but there is no GN target for the layout tests,
774 # so we need to specify the dependencies here instead.
775 if (is_android) {
776 deps += [
pkotwicza4d233b22015-11-02 18:20:38777 "//breakpad:breakpad_unittests_deps",
tfarinacb2638b2015-05-12 03:24:15778 "//breakpad:dump_syms($host_toolchain)",
pkotwicza4d233b22015-11-02 18:20:38779 "//breakpad:microdump_stackwalk($host_toolchain)",
780 "//breakpad:minidump_dump($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15781 "//breakpad:minidump_stackwalk($host_toolchain)",
pkotwicza4d233b22015-11-02 18:20:38782 "//breakpad:symupload($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15783 "//content/shell/android:content_shell_apk",
ojan94989c72015-07-17 21:56:42784 "//tools/imagediff($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15785 ]
786 } else {
ojan94989c72015-07-17 21:56:42787 deps += [
788 "//content/shell:content_shell",
789 "//tools/imagediff",
790 ]
tfarinacb2638b2015-05-12 03:24:15791 }
792
793 if (is_win) {
794 deps += [
jochen73e711c2015-06-03 10:01:46795 "//components/test_runner:layout_test_helper",
brettw0d3b1df2015-12-03 00:10:01796 "//content/shell:content_shell_crash_service",
tfarinacb2638b2015-05-12 03:24:15797 ]
798 }
799
800 if (!is_win && !is_android) {
Gordana.Cmiljanovicf243e9a2015-05-26 22:14:47801 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:15802 }
803
804 if (is_mac) {
805 deps += [
806 "//breakpad:dump_syms($host_toolchain)",
jochen73e711c2015-06-03 10:01:46807 "//components/test_runner:layout_test_helper",
tfarinacb2638b2015-05-12 03:24:15808 ]
809 }
810
811 if (is_linux) {
812 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
813 }
814 }
815}
816
dpranke6abd8652015-08-28 03:21:11817# Add a dummy target for compatibility w/ GYP
818group("chromium_swarm_tests") {
819}
820
dpranke2302dfa2015-09-29 02:21:52821group("chromium_builder_perf") {
822 testonly = true
823
824 # TODO(GYP): Make this target work on the mac.
825 if (!is_ios && !is_android && !is_chromecast && !is_mac) {
826 deps = [
827 "//cc:cc_perftests",
828 "//chrome",
829 "//chrome/test:load_library_perf_tests",
830 "//chrome/test:sync_performance_tests",
831 "//gpu:gpu_perftests",
832 "//media:media_perftests",
833 "//media/midi:midi_unittests",
834 "//tools/telemetry:bitmaptools",
835 ]
836
837 if (!is_chromeos) {
838 deps += [ "//chrome/test:performance_browser_tests" ]
839 }
840 if (is_linux && !is_chromeos) {
dpranke9aed5d582015-11-22 23:22:04841 if (is_official_build) {
842 # In GN builds, this is controlled by the 'linux_dump_symbols'
843 # flag, which defaults to 1 for official builds. For now,
844 # we skip the separate flag and just key off of is_official_build.
845 deps += [ "//chrome:linux_symbols" ]
846 }
dpranke2302dfa2015-09-29 02:21:52847
848 if (!is_chromeos) {
849 deps += [ "//tools/perf/clear_system_cache" ]
850 }
851 }
852
853 if (is_win) {
854 deps += [
brettw0d3b1df2015-12-03 00:10:01855 "//chrome/tools/crash_service",
dpranke2302dfa2015-09-29 02:21:52856 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008
857 ]
858
859 if (target_cpu == "x86") {
brettw0d3b1df2015-12-03 00:10:01860 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
dpranke2302dfa2015-09-29 02:21:52861 }
862 } else {
dprankeec10b3932015-10-02 17:58:23863 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
dpranke2302dfa2015-09-29 02:21:52864 }
865 }
866}