[go: nahoru, domu]

blob: f80621b6bc4f44478d9dc52ced1c08b0c16ec97d [file] [log] [blame]
brettw@chromium.orgf0e7ff882013-12-26 21:23:091# Copyright (c) 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# This is the root build file for GN. GN will start processing by loading this
6# file, and recursively load all dependencies until all dependencies are either
7# resolved or known not to exist (which will cause the build to fail). So if
8# you add a new build file, there must be some path of dependencies from this
9# file to your new one or GN won't know about it.
10
rockot2f1326e2015-02-23 23:53:5111import("//build/config/features.gni")
aizatskyfc46a9f2015-10-09 21:20:0812import("//build/config/sanitizers/sanitizers.gni")
tfarina@chromium.org378b4f02014-06-10 15:58:4513import("//build/config/ui.gni")
dpranked4da5ab2015-10-13 06:20:3314import("//build_overrides/v8.gni")
dpranked43eab42015-12-15 23:10:4415import("//build_overrides/webrtc.gni")
mostynb2196a462015-08-20 17:22:1016import("//media/media_options.gni")
hbos17a7b4a22015-12-07 10:49:4517import("//third_party/openh264/openh264_args.gni")
dprankee2ef3822015-02-24 21:42:1818
cjhopmanca675d3e2014-10-24 03:50:4519if (is_android) {
20 import("//build/config/android/config.gni")
21}
tfarina@chromium.org378b4f02014-06-10 15:58:4522
brettwb84b2942014-10-22 22:58:4523declare_args() {
24 # A list of extra dependencies to add to the root target. This allows a
25 # checkout to add additional targets without explicitly changing any checked-
26 # in files.
27 root_extra_deps = []
28}
29
dprankeef9c5e582015-11-15 23:22:0830# This file defines the following five main targets:
dpranked62d8512015-03-02 03:06:0331#
dprankeddc174902015-04-29 01:38:3532# "both_gn_and_gyp" should list every root target (target that nothing else
33# depends on) built by GN that is also built in the GYP build.
dpranked62d8512015-03-02 03:06:0334#
dprankeddc174902015-04-29 01:38:3535# "gn_all" should (transitively) cause everything to be built; if you run
36# 'ninja gn_all' and then 'ninja all', the second build should do no work.
37#
dprankeef9c5e582015-11-15 23:22:0838# "gn_only" should list every root target that is *not* intended to be built in
39# a GYP build. Because GN has different rules for deciding what an 'all' build
40# is, this may end up including targets that are actually defined in a GYP
41# build but not dependencies of GYP's "all" (and so not actually built).
dprankeddc174902015-04-29 01:38:3542#
dprankeb6128d02015-05-01 16:40:3043# "gn_visibility": targets that are normally not visible to top-level targets,
dprankeef9c5e582015-11-15 23:22:0844# but are built anyway by "all". Since we don't want any such targets, we have
45# this placeholder to make sure hidden targets that aren't otherwise depended
46# on yet are accounted for.
47#
48# "All" is an alias for "gn_all". It exists for bot compatibility w/ GYP for
49# the iOS bots and the official builders, but should not be generally used
50# during the GYP->GN migration. We cannot guarantee that GN's "All" builds the
51# same set of targets as GYP's "All" does, because GYP's "All" supports
52# wildcards.
53#
54# Lastly, none of these targets are guaranteed to be the same as what ninja
55# will build with "all". For more on how "all" works and the differences in how
56# GYP and GN determine "all", see crbug.com/503241.
dprankeb6128d02015-05-01 16:40:3057#
dprankeddc174902015-04-29 01:38:3558# TODO(GYP): crbug.com/481694. Make sure that the above is true and there are
dprankeef9c5e582015-11-15 23:22:0859# scripts run on the bots that enforce this. Once the GYP migration is over, we
60# can collapse all of these targets as desired.
dprankeff30e3d2015-02-24 06:52:3961
dprankee2ef3822015-02-24 21:42:1862group("gn_all") {
dprankeddc174902015-04-29 01:38:3563 testonly = true
64
65 deps = [
66 ":both_gn_and_gyp",
67 ":gn_only",
dprankeb6128d02015-05-01 16:40:3068 ":gn_visibility",
dprankeddc174902015-04-29 01:38:3569 ]
70}
71
dprankeef9c5e582015-11-15 23:22:0872# TODO(GYP): This target exists for compatibility with GYP, specifically
73# for the iOS bots and the official builders.
74group("All") {
75 testonly = true
76
77 deps = [
78 ":gn_all",
79 ]
80}
81
dprankeddc174902015-04-29 01:38:3582# The "both_gn_and_gyp" target should reflect every target that is built
83# in both the GN and GYP builds, and ideally it should match the
84# "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line.
85#
86# TODO(GYP): Add build steps that check and enforce this on the bots.
87group("both_gn_and_gyp") {
dprankee2ef3822015-02-24 21:42:1888 testonly = true
dprankee2ef3822015-02-24 21:42:1889 deps = [
90 "//base:base_unittests",
brettwa874dcc2015-08-28 23:59:1891 "//chrome/installer",
sheroukdc35ba272015-09-22 14:09:3792 "//components:components_unittests",
sheroukce1c7d72015-08-24 15:21:5993 "//net:net_unittests",
sherouk2866d662015-08-24 16:29:4494 "//skia:skia_unittests",
brettwa874dcc2015-08-28 23:59:1895 "//sql:sql_unittests",
sherouk3eee4a82015-09-01 10:42:3396 "//sync:sync_unit_tests",
sherouk4fb74d42015-08-24 15:58:4197 "//ui/base:ui_base_unittests",
sherouk84a45ff2015-09-01 13:31:3998 "//ui/gfx:gfx_unittests",
sherouk4fb74d42015-08-24 15:58:4199 "//url:url_unittests",
dprankee2ef3822015-02-24 21:42:18100 ]
dpranke2a294622015-08-07 05:23:01101
slance9d62f2015-11-04 01:15:01102 if (!is_ios && !is_android && !is_chromecast) {
sherouk53f0f1a2015-08-03 15:59:35103 deps += [
sherouk53f0f1a2015-08-03 15:59:35104 "//chrome",
105 "//chrome/test:browser_tests",
106 "//chrome/test:interactive_ui_tests",
107 "//chrome/test:sync_integration_tests",
sherouk53f0f1a2015-08-03 15:59:35108 "//chrome/test/chromedriver:chromedriver_unittests",
sherouk53f0f1a2015-08-03 15:59:35109 "//crypto:crypto_unittests",
sherouk53f0f1a2015-08-03 15:59:35110 "//extensions:extensions_browsertests",
111 "//extensions:extensions_unittests",
112 "//google_apis/gcm:gcm_unit_tests",
dprankedbdd9d82015-08-12 21:18:18113 "//gpu/gles2_conform_support:gles2_conform_test",
sherouk53f0f1a2015-08-03 15:59:35114 "//jingle:jingle_unittests",
sherouk53f0f1a2015-08-03 15:59:35115 "//net:hpack_example_generator",
116 "//net:hpack_fuzz_mutator",
117 "//net:hpack_fuzz_wrapper",
sherouk53f0f1a2015-08-03 15:59:35118 "//ppapi:ppapi_unittests",
119 "//ppapi/examples/2d",
120 "//ppapi/examples/audio",
121 "//ppapi/examples/audio_input",
122 "//ppapi/examples/compositor",
123 "//ppapi/examples/crxfs",
124 "//ppapi/examples/enumerate_devices",
125 "//ppapi/examples/file_chooser",
126 "//ppapi/examples/flash_topmost",
127 "//ppapi/examples/font",
128 "//ppapi/examples/gamepad",
129 "//ppapi/examples/gles2",
130 "//ppapi/examples/gles2_spinning_cube",
131 "//ppapi/examples/ime",
132 "//ppapi/examples/input",
133 "//ppapi/examples/media_stream_audio",
134 "//ppapi/examples/media_stream_video",
135 "//ppapi/examples/mouse_cursor",
136 "//ppapi/examples/mouse_lock",
137 "//ppapi/examples/printing",
138 "//ppapi/examples/scaling",
139 "//ppapi/examples/scripting",
140 "//ppapi/examples/stub",
141 "//ppapi/examples/threading",
142 "//ppapi/examples/url_loader",
143 "//ppapi/examples/video_capture",
144 "//ppapi/examples/video_decode",
145 "//ppapi/examples/video_effects",
146 "//ppapi/examples/video_encode",
147 "//printing:printing_unittests",
sherouk53f0f1a2015-08-03 15:59:35148 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
149 "//third_party/codesighs",
pkotwicz558d5252015-10-19 21:09:55150 "//third_party/pdfium/samples:pdfium_test",
charliea00055282016-01-26 00:15:15151 "//tools/battor_agent",
charliea5daef2bb2016-01-29 00:13:25152 "//tools/battor_agent:battor_agent_unittests",
pkotwicz558d5252015-10-19 21:09:55153 "//tools/gn",
dpranke244f9732015-11-20 05:38:10154 "//tools/gn:gn_unittests",
pkotwicz558d5252015-10-19 21:09:55155 "//tools/perf/clear_system_cache",
156 "//ui/accessibility:accessibility_unittests",
157 "//ui/app_list:app_list_unittests",
158 ]
159 }
160
161 if (!is_ios) {
162 # TODO(GYP): Figure out which of these should actually build on iOS,
163 # and whether there should be other targets that are iOS-only and missing.
164 deps += [
165 "//cc:cc_unittests",
166 "//chrome/test:unit_tests",
167 "//components:components_browsertests",
168 "//content/shell:content_shell",
169 "//content/test:content_browsertests",
170 "//content/test:content_perftests",
171 "//content/test:content_unittests",
172 "//device:device_unittests",
173 "//gpu:gpu_unittests",
174 "//ipc:ipc_tests",
175 "//ipc/mojo:ipc_mojo_unittests",
176 "//media:media_unittests",
miu45b848fe2015-11-26 01:23:29177 "//media/cast:cast_unittests",
pkotwicz558d5252015-10-19 21:09:55178 "//media/midi:midi_unittests",
179 "//mojo",
pkotwicz558d5252015-10-19 21:09:55180 "//mojo/common:mojo_common_unittests",
rockotc637caf9b2016-02-10 09:57:08181 "//mojo/edk/system:mojo_system_unittests",
182 "//mojo/edk/test:mojo_public_bindings_unittests",
183 "//mojo/edk/test:mojo_public_environment_unittests",
184 "//mojo/edk/test:mojo_public_system_unittests",
185 "//mojo/edk/test:mojo_public_utility_unittests",
ben273c1e32016-01-12 02:44:08186 "//mojo/shell/public/cpp",
pkotwicz558d5252015-10-19 21:09:55187 "//net:net_perftests",
Dirk Pranke49802732015-12-10 01:36:41188 "//third_party/WebKit/Source/platform:blink_heap_unittests",
189 "//third_party/WebKit/Source/platform:blink_platform_unittests",
dpranke244f9732015-11-20 05:38:10190 "//third_party/WebKit/Source/web:webkit_unit_tests",
191 "//third_party/WebKit/Source/wtf:wtf_unittests",
nednguyenc42bf912016-01-27 01:39:28192 "//third_party/catapult/telemetry:bitmaptools($host_toolchain)",
sherouk53f0f1a2015-08-03 15:59:35193 "//third_party/smhasher:pmurhash",
194 "//tools/imagediff($host_toolchain)",
sherouk53f0f1a2015-08-03 15:59:35195 "//ui/display:display_unittests",
196 "//ui/events:events_unittests",
sherouk53f0f1a2015-08-03 15:59:35197 "//ui/gl:gl_unittests",
198 "//ui/touch_selection:ui_touch_selection_unittests",
sherouk53f0f1a2015-08-03 15:59:35199 ]
sdefresne998e8582015-10-07 13:36:45200 } else {
sdefresnea378b452015-10-08 09:55:58201 deps += [
202 "//ios/net:ios_net_unittests",
sdefresne89308c92015-11-16 10:40:34203 "//ios/public/provider/web",
sdefresnec6ddd7ac2015-10-09 17:30:19204 "//ios/testing:ocmock_support_unittest",
sdefresnea9045f42016-02-23 15:22:45205 "//ios/third_party/ochamcrest",
sdefresneaa7c1cf2015-10-22 00:41:11206 "//ios/web:ios_web_unittests",
dpranke244f9732015-11-20 05:38:10207 "//ios/web/shell:ios_web_shell",
sdefresnea378b452015-10-08 09:55:58208 ]
dpranked43eab42015-12-15 23:10:44209
210 if (ios_use_webrtc) {
211 deps += [
212 "//ios/chrome:ios_chrome_unittests",
213 "//ios/chrome/app",
214 "//ios/chrome/browser",
215 "//ios/chrome/common",
216 "//ios/public/provider/chrome/browser",
217 ]
218 }
agrieve97dd57d2016-01-05 19:26:27219 }
220
scottmg34fb7e52014-12-03 23:27:24221 deps += root_extra_deps
brettw@chromium.orgfce5c3fe2014-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" ]
dprankefd1813272015-04-13 23:56:00225 }
226
dprankefd1813272015-04-13 23:56:00227 if (enable_media_router) {
imchengb6b09239f2015-05-15 21:41:55228 deps += [ "//chrome/browser/media/router" ]
rockot2f1326e2015-02-23 23:53:51229 }
230
garykac3eddb5b2015-04-17 23:16:38231 if (enable_remoting) {
232 deps += [ "//remoting:remoting_all" ]
James Robinson060f2e32014-09-10 22:31:37233 }
234
dprankee2ef3822015-02-24 21:42:18235 if (toolkit_views) {
236 deps += [ "//ui/views:views_unittests" ]
brettw@chromium.org6b9028ab2014-07-23 17:15:38237 }
238
dprankee2ef3822015-02-24 21:42:18239 if (use_aura) {
mswda0133e62016-02-16 20:50:02240 deps += [
241 "//ash:ash_shell_with_content",
242 "//ash:ash_unittests",
243 "//ui/aura:aura_unittests",
244 "//ui/aura:bench",
245 "//ui/aura:demo",
246 "//ui/wm:wm_unittests",
247 ]
dprankee2ef3822015-02-24 21:42:18248 }
249
250 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47251 deps += [ "//ui/ozone" ]
tfarina@chromium.orga306aaa2014-05-24 13:21:50252 }
253
dprankefd1813272015-04-13 23:56:00254 if (use_x11) {
255 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22256 }
257
tmoniuszkoe5578b922015-04-14 09:38:03258 if (enable_configuration_policy) {
259 deps += [ "//components/policy:policy_templates" ]
260 }
261
dprankefd1813272015-04-13 23:56:00262 if (v8_use_external_startup_data) {
263 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
brettw@chromium.org137dff6d2014-06-12 19:35:55264 }
265
brettw66e3feab2015-07-20 23:52:22266 if (is_win) {
brettwf986f952015-10-07 17:18:15267 deps += [
268 "//chrome/installer/gcapi",
269 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy",
270 ]
brettw66e3feab2015-07-20 23:52:22271 }
272
dpranke@chromium.org5a8d5162014-04-12 01:19:16273 if (is_android) {
cjhopman@chromium.org26046b52014-07-16 00:11:03274 deps += [
pkotwicze2dae8b2015-11-03 20:12:55275 "//base:base_junit_tests",
dpranke244f9732015-11-20 05:38:10276 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38277 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02278 "//build/android/rezip",
pkotwicze2dae8b2015-11-03 20:12:55279 "//components/invalidation/impl:components_invalidation_impl_junit_tests",
280 "//components/policy/android:components_policy_junit_tests",
281 "//content/public/android:content_junit_tests",
pkotwicz8adff4e2015-12-17 21:55:45282 "//content/shell/android:content_shell_apk",
283 "//content/test:video_decode_accelerator_unittest",
pkotwicze2dae8b2015-11-03 20:12:55284 "//net/android:net_junit_tests",
285 "//testing/android/junit:junit_unittests",
pkotwicz8adff4e2015-12-17 21:55:45286 "//third_party/android_tools:uiautomator_java",
agrieve40ba6862015-07-15 02:09:05287 "//third_party/errorprone:chromium_errorprone",
pkotwicz8adff4e2015-12-17 21:55:45288 "//third_party/smhasher:murmurhash3",
pkotwicze38594d2015-09-25 00:05:10289 "//tools/android:android_tools",
pkotwicz6b5571b2015-12-08 21:54:49290 "//tools/android:memconsumer",
pkotwicz8b9d18c2015-10-05 01:59:33291 "//tools/android/heap_profiler:heap_profiler_unittests",
dgn28050da2015-10-19 10:16:43292 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk",
pkotwicz077093762015-12-21 16:47:15293 "//tools/cygprofile:cygprofile_unittests",
dprankee2ef3822015-02-24 21:42:18294 "//tools/imagediff($host_toolchain)",
newt9e226032016-01-26 01:30:15295 "//ui/android:ui_junit_tests",
dprankee2ef3822015-02-24 21:42:18296 ]
297 deps -= [
rockot9c67e5f2015-03-12 20:01:21298 "//net:net_perftests",
dprankee2ef3822015-02-24 21:42:18299 "//url:url_unittests",
cjhopman@chromium.org26046b52014-07-16 00:11:03300 ]
301
pkotwicz92e2e2312015-12-15 22:29:46302 if (!is_component_build) {
303 deps += [
agrievee23386b2016-01-05 04:47:58304 "//components/cronet/android:cronet_package",
pkotwicz92e2e2312015-12-15 22:29:46305 "//components/cronet/android:cronet_sample_apk",
306 "//components/cronet/android:cronet_sample_test_apk",
307 "//components/cronet/android:cronet_test_apk",
308 "//components/cronet/android:cronet_test_instrumentation_apk",
309 "//components/cronet/android:cronet_unittests",
310 ]
311 }
312
pkotwicz061c5a42015-09-30 02:16:54313 if (!is_chromecast) {
314 deps += [
michaelbaicbcc7e62015-11-12 04:29:53315 "//android_webview",
agrieveb08e2f5b2015-12-29 01:17:30316 "//android_webview/test",
agrieve1a3e9eb2015-12-29 02:07:26317 "//android_webview/tools",
pkotwicze2dae8b2015-11-03 20:12:55318 "//chrome/android:chrome_junit_tests",
pkotwicz061c5a42015-09-30 02:16:54319 "//chrome/android:chrome_public_apk",
320 "//chrome/android:chrome_public_test_apk",
321 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
agrieve473155b2015-12-28 20:23:11322 "//content/shell/android:content_shell_test_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 }
dprankefd1813272015-04-13 23:56:00334 }
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 ]
dprankedb5527d72015-03-08 04:22:47358 }
359
360 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" ]
dpranke2bc89212015-11-18 00:24:43378 }
379
380 if (is_chrome_branded && is_official_build) {
381 # TODO(dpranke): add the linux_dump_symbols flag?
382 deps += [ "//chrome:linux_symbols" ]
dnicoara8c6aa8e2015-03-11 23:20:32383 }
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
agrieve473155b2015-12-28 20:23:11394 if (is_android || is_win || (is_linux && !is_chromeos)) {
tfarina9e7cf702015-02-23 21:13:44395 deps += [
dprankedb5527d72015-03-08 04:22:47396 "//base:build_utf8_validator_tables",
dpranke244f9732015-11-20 05:38:10397 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47398 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00399 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47400 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47401 "//content/test:content_gl_benchmark",
dpranke244f9732015-11-20 05:38:10402 "//content/test:content_gl_tests",
dprankedb5527d72015-03-08 04:22:47403 "//device:device_unittests",
404 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47405 "//gin:gin_unittests",
dprankedb5527d72015-03-08 04:22:47406 "//google_apis/gcm:mcs_probe",
dprankefd1813272015-04-13 23:56:00407 "//gpu:gl_tests",
dpranke244f9732015-11-20 05:38:10408 "//gpu:gpu_perftests",
dprankedb5527d72015-03-08 04:22:47409 "//ipc:ipc_perftests",
dprankedb5527d72015-03-08 04:22:47410 "//media:media_perftests",
dprankefd1813272015-04-13 23:56:00411 "//net:dump_cache",
dprankedb5527d72015-03-08 04:22:47412 "//sync:run_sync_testserver",
dprankedb5527d72015-03-08 04:22:47413 "//third_party/codesighs:maptsvdifftool",
dprankefd1813272015-04-13 23:56:00414 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47415 "//ui/compositor:compositor_unittests",
416 ]
417
agrieve473155b2015-12-28 20:23:11418 # TODO(GYP): Figure out which of these should (and can) build
419 # for chromeos/mac/ios.
420 if (!is_android) {
421 deps += [
422 "//chrome/test:load_library_perf_tests",
423 "//chrome/test:sync_performance_tests",
424 "//chrome/test/chromedriver:chromedriver",
425 "//chrome/test/chromedriver:chromedriver_tests",
426 "//courgette:courgette",
427 "//courgette:courgette_fuzz",
428 "//courgette:courgette_minimal_tool",
429 "//courgette:courgette_unittests",
430 "//media/cast:generate_barcode_video",
431 "//media/cast:generate_timecode_audio",
432 "//net:crash_cache",
433 "//net:crl_set_dump",
434 "//net:dns_fuzz_stub",
435 "//net:gdig",
436 "//net:get_server_time",
437 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
438 "//net:run_testserver",
439 "//net:stress_cache",
440 "//net:tld_cleanup",
441 "//ppapi:pepper_hash_for_uma",
442 "//ppapi:ppapi_perftests",
443 "//third_party/angle/src/tests:angle_unittests",
444 "//third_party/leveldatabase:env_chromium_unittests",
445 "//third_party/libaddressinput:libaddressinput_unittests",
446 ]
447 }
448 if (!is_android && !is_linux) {
dpranke7e19b472015-11-13 00:49:33449 # TODO(dpranke): Re-enable this once
450 # https://chromium-review.googlesource.com/#/c/312298/1 is rolled
451 # into chromium.
452 deps += [ "//third_party/angle/src/tests:angle_end2end_tests" ]
453 }
454
dprankedb5527d72015-03-08 04:22:47455 if (enable_extensions) {
456 deps += [ "//extensions/shell:app_shell" ]
457 }
458
459 if (enable_nacl) {
brettwf4b4a4282015-12-16 00:41:13460 deps += [ "//components/nacl/loader:nacl_loader_unittests" ]
dpranke2bc89212015-11-18 00:24:43461
462 if (is_linux) {
463 # TODO(dpranke): Figure out what platforms should actually have this.
464 deps += [
brettwf4b4a4282015-12-16 00:41:13465 "//components/nacl/loader:helper_nonsfi",
466 "//components/nacl/loader:nacl_helper",
jbudorick3c0ef43092016-02-03 23:40:16467 "//components/nacl/loader:nacl_helper_nonsfi_unittests",
dpranke2bc89212015-11-18 00:24:43468 ]
469 }
dprankedb5527d72015-03-08 04:22:47470 }
471
xhwangfa2d9d472015-12-18 23:31:18472 if (media_use_ffmpeg && !is_android) {
mostynb2196a462015-08-20 17:22:10473 deps += [ "//media:ffmpeg_regression_tests" ]
dprankedb5527d72015-03-08 04:22:47474 }
dprankefd1813272015-04-13 23:56:00475 }
476
agrieve473155b2015-12-28 20:23:11477 if (is_android || (is_linux && !is_chromeos)) {
dprankefd1813272015-04-13 23:56:00478 deps += [
479 # TODO(GYP): Figure out which of these should (and can) build
480 # under which other conditions.
agrieve473155b2015-12-28 20:23:11481 "//breakpad:dump_syms($host_toolchain)",
482 "//breakpad:microdump_stackwalk($host_toolchain)",
483 "//breakpad:minidump_dump($host_toolchain)",
484 "//breakpad:minidump_stackwalk($host_toolchain)",
dprankefd1813272015-04-13 23:56:00485 "//components/network_hints/browser",
dprankefd1813272015-04-13 23:56:00486 "//content/public/app:browser",
487 "//content/public/app:child",
488
489 # TODO(GYP): Remove this when the gles2 tests work
490 "//gpu/command_buffer/client:gles2_implementation_no_check",
dprankefd1813272015-04-13 23:56:00491 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/471903 to make this complete.
rockotc637caf9b2016-02-10 09:57:08492 "//mojo/edk/test:mojo_public_system_perftests",
ben273c1e32016-01-12 02:44:08493 "//mojo/shell/public/cpp",
dprankefd1813272015-04-13 23:56:00494 "//testing/gmock:gmock_main",
dpranke244f9732015-11-20 05:38:10495 "//third_party/codesighs:nm2tsv",
dprankefd1813272015-04-13 23:56:00496 ]
497
agrieve473155b2015-12-28 20:23:11498 if (!is_android) {
499 deps += [
500 "//build/sanitizers:copy_llvm_symbolizer",
501 "//chrome/test:chrome_app_unittests",
502 "//media/cast:cast_benchmarks",
503 "//media/cast:tap_proxy",
504 "//skia:filter_fuzz_stub",
505 "//skia:image_operations_bench",
506 "//sync/tools:sync_client",
507 "//sync/tools:sync_listen_notifications",
508 "//third_party/sqlite:sqlite_shell",
509 "//ui/keyboard:keyboard_unittests",
510 "//ui/message_center:message_center_unittests",
511 "//ui/snapshot:snapshot_unittests",
512 "//ui/views/examples:views_examples_with_content_exe",
513 ]
dprankefd1813272015-04-13 23:56:00514
agrieve473155b2015-12-28 20:23:11515 if (!is_debug && !is_component_build) {
516 deps += [ "//chrome/tools/service_discovery_sniffer" ]
517 }
dprankefd1813272015-04-13 23:56:00518 }
519
520 if (toolkit_views) {
521 deps += [ "//ui/app_list:app_list_demo" ]
522 }
dprankedb5527d72015-03-08 04:22:47523
524 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44525 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59526 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44527 }
dprankedb5527d72015-03-08 04:22:47528 }
529 }
530
531 if (is_mac) {
532 deps += [
533 "//breakpad:crash_inspector",
534 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44535 "//third_party/apple_sample_code",
536 "//third_party/molokocacao",
537 ]
dpranke43760592014-11-08 02:59:57538 deps -= [
brettw011138d2015-10-21 03:05:38539 # Mojo in GN contains some things which are never compiled in GYP on Mac,
540 # so compilation fails on Mac. They need porting.
brettwe1d40652015-10-23 23:06:10541 "//mojo",
mohsen29fd4052014-12-08 21:06:46542 ]
dprankefd1813272015-04-13 23:56:00543 }
544
545 if (is_win) {
546 deps += [
547 "//base:pe_image_test",
grt734e87b2015-07-06 19:36:43548 "//chrome/installer/setup:setup_unittests",
dprankefd1813272015-04-13 23:56:00549 "//chrome_elf:chrome_elf_unittests",
550 "//chrome_elf:dll_hash_main",
dprankefd1813272015-04-13 23:56:00551 "//components/wifi:wifi_test",
552 "//net:quic_client",
553 "//net:quic_server",
554 "//sandbox/win:pocdll",
555 "//sandbox/win:sandbox_poc",
556 "//sandbox/win:sbox_integration_tests",
557 "//sandbox/win:sbox_unittests",
558 "//sandbox/win:sbox_validation_tests",
559 "//testing/gtest:gtest_main",
560 "//third_party/codesighs:msmap2tsv",
561 "//third_party/pdfium/samples:pdfium_diff",
562 "//ui/metro_viewer",
563 ]
dprankee2ef3822015-02-24 21:42:18564 deps -= [
565 "//crypto:crypto_unittests", # TODO(GYP)
566 "//net:net_unittests", # TODO(GYP)
567 ]
sherouk53f0f1a2015-08-03 15:59:35568 } else if (!is_android && !is_ios) {
miu45b848fe2015-11-26 01:23:29569 deps += [ "//breakpad:symupload($host_toolchain)" ]
mohsenf837da7c2014-12-09 19:01:34570 }
slance9d62f2015-11-04 01:15:01571 if (is_chromecast) {
572 deps += [ "//chromecast:cast_shell" ]
573 }
miu45b848fe2015-11-26 01:23:29574
dpranked43eab42015-12-15 23:10:44575 if (is_mac) { # TODO(GYP) || is_ios
miu45b848fe2015-11-26 01:23:29576 deps += [ "//media/cast:cast_h264_vt_encoder_unittests" ]
577 }
hbos17a7b4a22015-12-07 10:49:45578
579 if (use_openh264) {
580 deps += [
581 "//third_party/openh264:common",
582 "//third_party/openh264:encoder",
583 "//third_party/openh264:processing",
584 ]
585 }
dpranke18e57432015-02-27 21:46:47586}
587
sky60a230b2016-01-23 01:04:53588# This group contains all the targets needed to run mojo's apptest_runner.
589group("mojo_apptests") {
590 testonly = true
591
592 deps = []
593
594 if (is_win || is_linux) {
595 deps += [
skyfcde3a42016-02-09 20:27:44596 "//components/filesystem:apptests",
ergb22301f2016-02-17 19:37:54597 "//components/leveldb:apptests",
skyfcde3a42016-02-09 20:27:44598 "//components/mus/ws:tests",
599 "//components/resource_provider:apptests",
600 "//components/resource_provider:resource_provider_unittests",
sky60a230b2016-01-23 01:04:53601 "//mash/wm:tests",
jrummell135d61e2016-01-27 19:36:17602 "//media/mojo/services:tests",
msw9a371982016-02-11 01:12:13603 "//mojo/services/network:apptests",
bena7a61962016-02-18 20:56:21604 "//mojo/shell/tests:apptests",
sky60a230b2016-01-23 01:04:53605 "//ui/views/mus:tests",
606 ]
607 }
608}
609
dpranked62d8512015-03-02 03:06:03610group("gn_only") {
dprankedb5527d72015-03-08 04:22:47611 testonly = true
612
dpranke2a294622015-08-07 05:23:01613 deps = []
614
amistry4dcd7c42015-12-16 04:53:10615 if (!is_ios) {
616 deps += [ "//mojo/common:mojo_common_perftests" ]
617 }
618
dpranke244f9732015-11-20 05:38:10619 if (!is_android && !is_ios && !is_chromeos) {
isherman0f89b43eb2015-04-11 00:02:45620 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
621 }
622
ben8f4e95ad2015-12-01 18:35:58623 if (is_win || is_linux) {
sky70471b22016-01-14 16:20:54624 deps += [
sky60a230b2016-01-23 01:04:53625 ":mojo_apptests",
sky70471b22016-01-14 16:20:54626 "//mash:all",
skyfcde3a42016-02-09 20:27:44627 "//mojo",
sky70471b22016-01-14 16:20:54628 ]
sky97b65592015-11-02 20:08:25629 }
630
zhaoqin756f8572016-01-25 21:41:17631 if (is_win && use_drfuzz) {
632 # build libfuzzer fuzzers on Windows to run with Dr. Fuzz
633 deps += [
634 "//testing/libfuzzer/fuzzers",
635 "//testing/libfuzzer/tests:libfuzzer_tests",
636 ]
637 }
638
slance9d62f2015-11-04 01:15:01639 if (is_linux && !is_chromeos && !is_chromecast) {
dprankedb5527d72015-03-08 04:22:47640 # TODO(GYP): Figure out if any of these should be in gn_all
641 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45642 deps += [
dprankedb5527d72015-03-08 04:22:47643 ":gn_mojo_targets",
644 "//chrome/browser/resources:extension_resource_demo",
645 "//chrome/installer/util:strings",
dprankedb5527d72015-03-08 04:22:47646 "//chrome/tools/convert_dict",
647 "//components/constrained_window:unit_tests",
dprankedb5527d72015-03-08 04:22:47648 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45649 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47650 "//components/rappor:unit_tests",
651 "//components/sessions:unit_tests",
652 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47653 "//media/cast:udp_proxy",
dprankedb5527d72015-03-08 04:22:47654 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
655 "//storage/browser:dump_file_system",
aizatskyc562c132016-01-20 00:00:14656 "//testing/libfuzzer/fuzzers",
657 "//testing/libfuzzer/tests:libfuzzer_tests",
dprankedb5527d72015-03-08 04:22:47658 "//third_party/angle:libANGLE",
659 "//third_party/angle:libEGL",
660 "//third_party/angle:libGLESv2",
661 "//third_party/cld_2:cld_2_dynamic_data_tool",
662 "//third_party/leveldatabase:leveldb_arena_test",
663 "//third_party/leveldatabase:leveldb_bloom_test",
dprankedb5527d72015-03-08 04:22:47664 "//third_party/leveldatabase:leveldb_cache_test",
dprankedb5527d72015-03-08 04:22:47665 "//third_party/leveldatabase:leveldb_corruption_test",
dpranke244f9732015-11-20 05:38:10666 "//third_party/leveldatabase:leveldb_crc32c_test",
667 "//third_party/leveldatabase:leveldb_db_bench",
668 "//third_party/leveldatabase:leveldb_db_test",
dprankedb5527d72015-03-08 04:22:47669 "//third_party/leveldatabase:leveldb_dbformat_test",
dpranke244f9732015-11-20 05:38:10670 "//third_party/leveldatabase:leveldb_env_test",
671 "//third_party/leveldatabase:leveldb_filename_test",
672 "//third_party/leveldatabase:leveldb_filter_block_test",
673 "//third_party/leveldatabase:leveldb_log_test",
674 "//third_party/leveldatabase:leveldb_skiplist_test",
675 "//third_party/leveldatabase:leveldb_table_test",
676 "//third_party/leveldatabase:leveldb_version_edit_test",
677 "//third_party/leveldatabase:leveldb_write_batch_test",
dprankedb5527d72015-03-08 04:22:47678 "//third_party/libjpeg_turbo:simd",
dpranke244f9732015-11-20 05:38:10679 "//third_party/libsrtp:rdbx_driver",
dprankedb5527d72015-03-08 04:22:47680 "//third_party/libsrtp:replay_driver",
681 "//third_party/libsrtp:roc_driver",
682 "//third_party/libsrtp:rtpw",
dprankedb5527d72015-03-08 04:22:47683 "//third_party/libsrtp:srtp_driver",
684 "//third_party/libsrtp:srtp_driver",
dpranke244f9732015-11-20 05:38:10685 "//third_party/libsrtp:srtp_test_aes_calc",
dprankedb5527d72015-03-08 04:22:47686 "//third_party/libsrtp:srtp_test_cipher_driver",
687 "//third_party/libsrtp:srtp_test_datatypes_driver",
dprankedb5527d72015-03-08 04:22:47688 "//third_party/libsrtp:srtp_test_env",
dpranke244f9732015-11-20 05:38:10689 "//third_party/libsrtp:srtp_test_kernel_driver",
dprankedb5527d72015-03-08 04:22:47690 "//third_party/libsrtp:srtp_test_rand_gen",
691 "//third_party/libsrtp:srtp_test_sha1_driver",
692 "//third_party/libsrtp:srtp_test_stat_driver",
693 "//third_party/opus:opus_compare",
694 "//third_party/opus:opus_demo",
dpranke244f9732015-11-20 05:38:10695 "//third_party/opus:test_opus_api",
dprankedb5527d72015-03-08 04:22:47696 "//third_party/opus:test_opus_decode",
697 "//third_party/opus:test_opus_encode",
dprankedb5527d72015-03-08 04:22:47698 "//third_party/opus:test_opus_padding",
dpranke244f9732015-11-20 05:38:10699 "//third_party/pdfium/third_party:fx_freetype",
dprankedb5527d72015-03-08 04:22:47700 "//third_party/webrtc/system_wrappers:field_trial_default",
701 "//third_party/webrtc/system_wrappers:metrics_default",
702 "//ui/display/types",
703 "//ui/shell_dialogs:shell_dialogs_unittests",
704 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47705 ]
dprankeb0713542015-07-31 21:07:21706
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16707 if (target_cpu == "x86" || target_cpu == "x64") {
agrieve473155b2015-12-28 20:23:11708 if (!is_android) {
709 deps += [ "//chrome/test:load_library_perf_tests" ]
710 }
mcgrathr916aafa2015-09-15 00:06:53711 deps += [
mcgrathr916aafa2015-09-15 00:06:53712 "//native_client/src/trusted/platform_qualify:vcpuid",
dpranke244f9732015-11-20 05:38:10713 "//third_party/libjpeg_turbo:simd_asm",
mcgrathr916aafa2015-09-15 00:06:53714 ]
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16715 }
dprankedb5527d72015-03-08 04:22:47716 if (use_ozone) {
717 deps += [ "//ui/ozone/demo" ]
718 }
dpranke807f6022015-03-17 23:20:56719
720 if (is_linux && current_toolchain == host_toolchain) {
721 deps += [ "//v8:d8" ]
722 }
sbcfbdaad0a2016-02-13 03:03:52723 }
724
sbc92b4d572016-02-18 03:28:23725 if (enable_nacl) {
726 deps += [ "//native_client_sdk/src:nacl_core_sdk" ]
727 }
728
agrieve473155b2015-12-28 20:23:11729 if (is_android) {
730 deps += [
731 "//build/android/gyp/test:hello_world",
732 "//build/android/incremental_install:bootstrap_java",
733 ]
nyquistb5f050b2015-09-10 05:10:35734 }
735
agrieve473155b2015-12-28 20:23:11736 if (!is_chromecast && (is_android || is_linux || is_chromeos)) {
737 deps += [
738 "//blimp",
739 "//blimp:blimp_tests",
aizatskyddefc992015-11-20 08:42:03740 ]
aizatskyfc46a9f2015-10-09 21:20:08741 }
dprankedb5527d72015-03-08 04:22:47742}
743
744group("gn_mojo_targets") {
745 testonly = true
746 if (is_linux && !is_chromeos) {
747 # TODO(GYP): Figure out if any of these should be in gn_all
748 # and figure out how cross-platform they are
749 deps = [
dprankedb5527d72015-03-08 04:22:47750 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47751 "//media/mojo:tests",
dpranke244f9732015-11-20 05:38:10752 "//media/mojo/services:cdm_service",
msw1bb9c6c2015-05-06 21:35:44753 "//mojo:tests",
dprankedb5527d72015-03-08 04:22:47754 ]
dprankedb5527d72015-03-08 04:22:47755 }
756}
757
758group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03759 deps = [
dprankeb6128d02015-05-01 16:40:30760 "//build/config/sanitizers:options_sources",
761
dprankedb5527d72015-03-08 04:22:47762 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
763 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30764
765 "//ui/resources:repack_ui_test_mac_locale_pack",
dpranked62d8512015-03-02 03:06:03766 ]
dpranked2fb5222015-09-10 22:39:05767
768 if (!is_ios) {
769 deps += [
dpranked2fb5222015-09-10 22:39:05770 "//v8:postmortem-metadata",
dpranke244f9732015-11-20 05:38:10771 "//v8:v8_snapshot",
dpranked2fb5222015-09-10 22:39:05772 ]
773 }
dpranked62d8512015-03-02 03:06:03774}
775
tfarinacb2638b2015-05-12 03:24:15776if (!is_ios) {
777 # This group includes all of the targets needed to build and test Blink,
778 # including running the layout tests (see below).
779 group("blink_tests") {
780 testonly = true
781
782 deps = [
783 "//third_party/WebKit/public:all_blink",
784 ]
785
786 # NOTE: The following deps are needed to run the layout tests
787 # (run-webkit-tests) but there is no GN target for the layout tests,
788 # so we need to specify the dependencies here instead.
789 if (is_android) {
790 deps += [
pkotwicza4d233b22015-11-02 18:20:38791 "//breakpad:breakpad_unittests_deps",
tfarinacb2638b2015-05-12 03:24:15792 "//breakpad:dump_syms($host_toolchain)",
pkotwicza4d233b22015-11-02 18:20:38793 "//breakpad:microdump_stackwalk($host_toolchain)",
794 "//breakpad:minidump_dump($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15795 "//breakpad:minidump_stackwalk($host_toolchain)",
pkotwicza4d233b22015-11-02 18:20:38796 "//breakpad:symupload($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15797 "//content/shell/android:content_shell_apk",
ojan94989c72015-07-17 21:56:42798 "//tools/imagediff($host_toolchain)",
tfarinacb2638b2015-05-12 03:24:15799 ]
800 } else {
ojan94989c72015-07-17 21:56:42801 deps += [
802 "//content/shell:content_shell",
803 "//tools/imagediff",
804 ]
tfarinacb2638b2015-05-12 03:24:15805 }
806
807 if (is_win) {
808 deps += [
jochen73e711c2015-06-03 10:01:46809 "//components/test_runner:layout_test_helper",
brettw0d3b1df2015-12-03 00:10:01810 "//content/shell:content_shell_crash_service",
tfarinacb2638b2015-05-12 03:24:15811 ]
812 }
813
814 if (!is_win && !is_android) {
Gordana.Cmiljanovicf243e9a2015-05-26 22:14:47815 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
tfarinacb2638b2015-05-12 03:24:15816 }
817
818 if (is_mac) {
819 deps += [
820 "//breakpad:dump_syms($host_toolchain)",
jochen73e711c2015-06-03 10:01:46821 "//components/test_runner:layout_test_helper",
tfarinacb2638b2015-05-12 03:24:15822 ]
823 }
824
825 if (is_linux) {
826 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
827 }
828 }
829}
830
dpranke6abd8652015-08-28 03:21:11831# Add a dummy target for compatibility w/ GYP
832group("chromium_swarm_tests") {
833}
834
dpranke2302dfa2015-09-29 02:21:52835group("chromium_builder_perf") {
836 testonly = true
837
838 # TODO(GYP): Make this target work on the mac.
839 if (!is_ios && !is_android && !is_chromecast && !is_mac) {
840 deps = [
841 "//cc:cc_perftests",
842 "//chrome",
843 "//chrome/test:load_library_perf_tests",
844 "//chrome/test:sync_performance_tests",
845 "//gpu:gpu_perftests",
846 "//media:media_perftests",
847 "//media/midi:midi_unittests",
nednguyenc42bf912016-01-27 01:39:28848 "//third_party/catapult/telemetry:bitmaptools",
dpranke2302dfa2015-09-29 02:21:52849 ]
850
851 if (!is_chromeos) {
852 deps += [ "//chrome/test:performance_browser_tests" ]
853 }
854 if (is_linux && !is_chromeos) {
dpranke9aed5d582015-11-22 23:22:04855 if (is_official_build) {
856 # In GN builds, this is controlled by the 'linux_dump_symbols'
857 # flag, which defaults to 1 for official builds. For now,
858 # we skip the separate flag and just key off of is_official_build.
859 deps += [ "//chrome:linux_symbols" ]
860 }
dpranke2302dfa2015-09-29 02:21:52861
862 if (!is_chromeos) {
863 deps += [ "//tools/perf/clear_system_cache" ]
864 }
865 }
866
867 if (is_win) {
868 deps += [
brettw0d3b1df2015-12-03 00:10:01869 "//chrome/tools/crash_service",
dpranke2302dfa2015-09-29 02:21:52870 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008
871 ]
872
873 if (target_cpu == "x86") {
brettw0d3b1df2015-12-03 00:10:01874 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
dpranke2302dfa2015-09-29 02:21:52875 }
876 } else {
dprankeec10b3932015-10-02 17:58:23877 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
dpranke2302dfa2015-09-29 02:21:52878 }
879 }
880}