[go: nahoru, domu]

blob: 265ddc066fd2b8f000fc3559885d42624a23dc59 [file] [log] [blame]
brettw@chromium.orgf0e7ff882013-12-26 21:23:091# Copyright (c) 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# This is the root build file for GN. GN will start processing by loading this
6# file, and recursively load all dependencies until all dependencies are either
7# resolved or known not to exist (which will cause the build to fail). So if
8# you add a new build file, there must be some path of dependencies from this
9# file to your new one or GN won't know about it.
10
dprankefd1813272015-04-13 23:56:0011import("//build/config/crypto.gni")
rockot2f1326e2015-02-23 23:53:5112import("//build/config/features.gni")
tfarina@chromium.org378b4f02014-06-10 15:58:4513import("//build/config/ui.gni")
dprankefd1813272015-04-13 23:56:0014import("//build/module_args/v8.gni")
dprankee2ef3822015-02-24 21:42:1815
cjhopmanca675d3e2014-10-24 03:50:4516if (is_android) {
17 import("//build/config/android/config.gni")
18}
tfarina@chromium.org378b4f02014-06-10 15:58:4519
brettwb84b2942014-10-22 22:58:4520declare_args() {
21 # A list of extra dependencies to add to the root target. This allows a
22 # checkout to add additional targets without explicitly changing any checked-
23 # in files.
24 root_extra_deps = []
25}
26
dprankeb6128d02015-05-01 16:40:3027# This file defines the following four main targets:
dpranked62d8512015-03-02 03:06:0328#
dprankeddc174902015-04-29 01:38:3529# "both_gn_and_gyp" should list every root target (target that nothing else
30# depends on) built by GN that is also built in the GYP build.
dpranked62d8512015-03-02 03:06:0331#
dprankeddc174902015-04-29 01:38:3532# "gn_all" should (transitively) cause everything to be built; if you run
33# 'ninja gn_all' and then 'ninja all', the second build should do no work.
34#
35# "gn_only" should list every root target that is *not* intended to be built
36# in a GYP build. Because GN has different rules for deciding what an 'all'
37# build is, this may end up including targets that are actually defined in a
38# GYP build but not dependencies of GYP's "all" (and so not actually built).
39#
dprankeb6128d02015-05-01 16:40:3040# "gn_visibility": targets that are normally not visible to top-level targets,
41# but are built anyway by "all". Since we don't want any such targets, we
42# have this placeholder to make sure hidden targets that aren't otherwise
43# depended on yet are accounted for.
44#
dprankeddc174902015-04-29 01:38:3545# TODO(GYP): crbug.com/481694. Make sure that the above is true and there are
46# scripts run on the bots that enforce this. Once the GYP migration is over,
47# we can collapse all of these targets as desired.
dprankeff30e3d2015-02-24 06:52:3948
dprankee2ef3822015-02-24 21:42:1849group("gn_all") {
dprankeddc174902015-04-29 01:38:3550 testonly = true
51
52 deps = [
53 ":both_gn_and_gyp",
54 ":gn_only",
dprankeb6128d02015-05-01 16:40:3055 ":gn_visibility",
dprankeddc174902015-04-29 01:38:3556 ]
57}
58
59# The "both_gn_and_gyp" target should reflect every target that is built
60# in both the GN and GYP builds, and ideally it should match the
61# "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line.
62#
63# TODO(GYP): Add build steps that check and enforce this on the bots.
64group("both_gn_and_gyp") {
dprankee2ef3822015-02-24 21:42:1865 testonly = true
66
67 deps = [
68 "//base:base_unittests",
69 "//cc:cc_unittests",
70 "//chrome",
71 "//chrome/test:browser_tests",
72 "//chrome/test:interactive_ui_tests",
73 "//chrome/test:sync_integration_tests",
74 "//chrome/test:unit_tests",
brettw922d3aa2015-02-27 22:15:4675 "//chrome/test/chromedriver:chromedriver_unittests",
dprankef6ca89c52015-03-30 22:01:3876 "//components:components_browsertests",
dprankee2ef3822015-02-24 21:42:1877 "//components:components_unittests",
78 "//content/shell:content_shell",
79 "//content/test:content_browsertests",
80 "//content/test:content_perftests",
81 "//content/test:content_unittests",
82 "//crypto:crypto_unittests",
scheibcfdca0e2015-04-01 05:27:5883 "//device:device_unittests",
dprankee2ef3822015-02-24 21:42:1884 "//extensions:extensions_browsertests",
85 "//extensions:extensions_unittests",
86 "//google_apis/gcm:gcm_unit_tests",
87 "//gpu:gpu_unittests",
88 "//ipc:ipc_tests",
89 "//ipc/mojo:ipc_mojo_unittests",
90 "//jingle:jingle_unittests",
91 "//media:media_unittests",
dprankee2ef3822015-02-24 21:42:1892 "//media/cast:cast_unittests",
toyoshimc64757792015-04-30 14:52:0293 "//media/midi:midi_unittests",
dprankee2ef3822015-02-24 21:42:1894 "//mojo",
dprankec09ccaa2015-03-27 22:00:3895 "//mojo/application",
dprankee2ef3822015-02-24 21:42:1896 "//mojo/common:mojo_common_unittests",
rockot9c67e5f2015-03-12 20:01:2197 "//net:hpack_example_generator",
98 "//net:hpack_fuzz_mutator",
99 "//net:hpack_fuzz_wrapper",
100 "//net:net_perftests",
dprankee2ef3822015-02-24 21:42:18101 "//net:net_unittests",
brettw31f4de692015-03-04 17:24:45102 "//ppapi:ppapi_unittests",
tfarina79ef072d2015-04-04 20:16:57103 "//ppapi/examples/2d",
104 "//ppapi/examples/audio",
105 "//ppapi/examples/audio_input",
106 "//ppapi/examples/compositor",
107 "//ppapi/examples/crxfs",
108 "//ppapi/examples/enumerate_devices",
109 "//ppapi/examples/file_chooser",
110 "//ppapi/examples/flash_topmost",
111 "//ppapi/examples/font",
112 "//ppapi/examples/gamepad",
113 "//ppapi/examples/gles2",
114 "//ppapi/examples/gles2_spinning_cube",
115 "//ppapi/examples/ime",
116 "//ppapi/examples/input",
117 "//ppapi/examples/media_stream_audio",
118 "//ppapi/examples/media_stream_video",
119 "//ppapi/examples/mouse_cursor",
120 "//ppapi/examples/mouse_lock",
121 "//ppapi/examples/printing",
122 "//ppapi/examples/scaling",
123 "//ppapi/examples/scripting",
124 "//ppapi/examples/stub",
125 "//ppapi/examples/threading",
126 "//ppapi/examples/url_loader",
127 "//ppapi/examples/video_capture",
128 "//ppapi/examples/video_decode",
129 "//ppapi/examples/video_effects",
130 "//ppapi/examples/video_encode",
dprankee2ef3822015-02-24 21:42:18131 "//printing:printing_unittests",
132 "//skia:skia_unittests",
133 "//sql:sql_unittests",
134 "//sync:sync_unit_tests",
dpranked62d8512015-03-02 03:06:03135 "//third_party/WebKit/public:blink_tests",
dprankee2ef3822015-02-24 21:42:18136 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
dprankee2ef3822015-02-24 21:42:18137 "//third_party/codesighs",
dprankee2ef3822015-02-24 21:42:18138 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
139 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
140 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
141 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
142 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
143 "//third_party/pdfium/samples:pdfium_test",
dprankee2ef3822015-02-24 21:42:18144 "//third_party/smhasher:pmurhash",
dprankee2ef3822015-02-24 21:42:18145 "//tools/imagediff($host_toolchain)",
146 "//tools/gn",
147 "//tools/gn:gn_unittests",
dprankefd1813272015-04-13 23:56:00148 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18149 "//tools/telemetry:bitmaptools($host_toolchain)",
150 "//ui/accessibility:accessibility_unittests",
151 "//ui/app_list:app_list_unittests",
152 "//ui/base:ui_base_unittests",
153 "//ui/display:display_unittests",
154 "//ui/events:events_unittests",
155 "//ui/gfx:gfx_unittests",
dyen781489a2015-05-05 21:40:56156 "//ui/gl:gl_unittests",
dprankee2ef3822015-02-24 21:42:18157 "//ui/touch_selection:ui_touch_selection_unittests",
158 "//url:url_unittests",
159 ]
160
scottmg34fb7e52014-12-03 23:27:24161 deps += root_extra_deps
brettw@chromium.orgfce5c3fe2014-04-10 21:13:05162
dpranke021d4c92015-02-24 02:08:25163 if (enable_extensions && !is_mac) {
dprankefd1813272015-04-13 23:56:00164 # TODO(GYP): Get this working on the mac?
rockot2f1326e2015-02-23 23:53:51165 deps += [ "//extensions/shell:app_shell_unittests" ]
dprankefd1813272015-04-13 23:56:00166 }
167
dprankefd1813272015-04-13 23:56:00168 if (enable_media_router) {
169 deps += [
170 "//chrome/browser/media/router/",
171 "//chrome/browser/media/router:unit_tests",
172 ]
rockot2f1326e2015-02-23 23:53:51173 }
174
garykac3eddb5b2015-04-17 23:16:38175 if (enable_remoting) {
176 deps += [ "//remoting:remoting_all" ]
James Robinson060f2e32014-09-10 22:31:37177 }
178
dprankee2ef3822015-02-24 21:42:18179 if (toolkit_views) {
180 deps += [ "//ui/views:views_unittests" ]
brettw@chromium.org6b9028ab2014-07-23 17:15:38181 }
182
dprankee2ef3822015-02-24 21:42:18183 if (use_aura) {
184 deps += [ "//ui/wm:wm_unittests" ]
185 }
186
187 if (use_ozone) {
dprankedb5527d72015-03-08 04:22:47188 deps += [ "//ui/ozone" ]
tfarina@chromium.orga306aaa2014-05-24 13:21:50189 }
190
dprankefd1813272015-04-13 23:56:00191 if (use_x11) {
192 deps += [ "//tools/xdisplaycheck" ]
kmarshalld2f3bea2015-03-11 23:42:22193 }
194
tmoniuszkoe5578b922015-04-14 09:38:03195 if (enable_configuration_policy) {
196 deps += [ "//components/policy:policy_templates" ]
197 }
198
dprankefd1813272015-04-13 23:56:00199 if (v8_use_external_startup_data) {
200 deps += [ "//gin:gin_v8_snapshot_fingerprint" ]
brettw@chromium.org137dff6d2014-06-12 19:35:55201 }
202
dpranke@chromium.org5a8d5162014-04-12 01:19:16203 if (is_android) {
cjhopman@chromium.org26046b52014-07-16 00:11:03204 deps += [
cjhopman31511332014-10-23 01:05:02205 "//base/android/linker:chromium_android_linker",
cjhopman3d85c6d2014-11-18 03:39:38206 "//build/android/gyp/test:hello_world",
cjhopman31511332014-10-23 01:05:02207 "//build/android/rezip",
hiroshigee6d374c2015-02-24 07:54:06208 "//chrome/android:chrome_shell_apk",
hiroshigee6d374c2015-02-24 07:54:06209 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
dprankee2ef3822015-02-24 21:42:18210 "//tools/imagediff($host_toolchain)",
211
212 # TODO(GYP): Remove these when the components_unittests work.
213 "//components/history/core/test:test",
214 "//components/policy:policy_component_test_support",
215 "//components/policy:test_support",
216 "//components/rappor:test_support",
217 "//components/signin/core/browser:test_support",
218 "//components/sync_driver:test_support",
219 "//components/user_manager",
220 "//components/wallpaper",
221 "//content/shell/android:content_shell_apk",
222
223 # TODO(GYP): Are these needed, or will they be pulled in automatically?
cjhopman@chromium.org684b2292014-08-22 19:12:39224 "//third_party/android_tools:android_gcm_java",
225 "//third_party/android_tools:uiautomator_java",
226 "//third_party/android_tools:android_support_v13_java",
227 "//third_party/android_tools:android_support_v7_appcompat_java",
228 "//third_party/android_tools:android_support_v7_mediarouter_java",
dprankee2ef3822015-02-24 21:42:18229 "//third_party/mesa",
mikecase85e83ed2014-12-08 19:18:29230 "//third_party/mockito:mockito_java",
dprankee2ef3822015-02-24 21:42:18231 "//third_party/openmax_dl/dl",
232 "//third_party/speex",
233 "//ui/android:ui_java",
234
235 # TODO(GYP): Are these needed?
236 "//chrome/test:test_support_unit",
237 "//third_party/smhasher:murmurhash3",
238 "//ui/message_center:test_support",
239 ]
240 deps -= [
dprankee2ef3822015-02-24 21:42:18241 "//chrome", # TODO(GYP) ??
242 "//chrome/test:browser_tests", # TODO(GYP) ??
243 "//chrome/test:interactive_ui_tests", # TODO(GYP) ??
244 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
245 "//chrome/test:unit_tests", # TODO(GYP)
brettw922d3aa2015-02-27 22:15:46246
247 # Chromedriver shouldn't be compiled on Android.
248 "//chrome/test/chromedriver:chromedriver_unittests",
dprankee2ef3822015-02-24 21:42:18249 "//extensions:extensions_browsertests",
250 "//extensions:extensions_unittests",
251 "//google_apis/gcm:gcm_unit_tests",
252 "//ipc:ipc_tests", # TODO(GYP) ??
253 "//jingle:jingle_unittests", # TODO(GYP) ??
rockot9c67e5f2015-03-12 20:01:21254 "//net:hpack_example_generator",
255 "//net:hpack_fuzz_mutator",
256 "//net:hpack_fuzz_wrapper",
257 "//net:net_perftests",
dprankee2ef3822015-02-24 21:42:18258 "//net:net_unittests",
tfarina79ef072d2015-04-04 20:16:57259 "//ppapi/examples/2d",
260 "//ppapi/examples/audio",
261 "//ppapi/examples/audio_input",
262 "//ppapi/examples/compositor",
263 "//ppapi/examples/crxfs",
264 "//ppapi/examples/enumerate_devices",
265 "//ppapi/examples/file_chooser",
266 "//ppapi/examples/flash_topmost",
267 "//ppapi/examples/font",
268 "//ppapi/examples/gamepad",
269 "//ppapi/examples/gles2",
270 "//ppapi/examples/gles2_spinning_cube",
271 "//ppapi/examples/ime",
272 "//ppapi/examples/input",
273 "//ppapi/examples/media_stream_audio",
274 "//ppapi/examples/media_stream_video",
275 "//ppapi/examples/mouse_cursor",
276 "//ppapi/examples/mouse_lock",
277 "//ppapi/examples/printing",
278 "//ppapi/examples/scaling",
279 "//ppapi/examples/scripting",
280 "//ppapi/examples/stub",
281 "//ppapi/examples/threading",
282 "//ppapi/examples/url_loader",
283 "//ppapi/examples/video_capture",
284 "//ppapi/examples/video_decode",
285 "//ppapi/examples/video_effects",
286 "//ppapi/examples/video_encode",
dprankee2ef3822015-02-24 21:42:18287 "//third_party/pdfium/samples:pdfium_test",
288 "//tools/gn",
dprankefd1813272015-04-13 23:56:00289 "//tools/gn:generate_test_gn_data",
dprankee2ef3822015-02-24 21:42:18290 "//tools/gn:gn_unittests",
291 "//ui/app_list:app_list_unittests",
292 "//url:url_unittests",
cjhopman@chromium.org26046b52014-07-16 00:11:03293 ]
294
cjhopmanca675d3e2014-10-24 03:50:45295 if (has_chrome_android_internal) {
dprankee2ef3822015-02-24 21:42:18296 deps += [ "//clank" ] # TODO(GYP) ??
cjhopmanca675d3e2014-10-24 03:50:45297 }
dprankefd1813272015-04-13 23:56:00298 }
299
300 if (is_linux) { # TODO(GYP): || is_android || is_bsd?
301 deps += [
302 "//breakpad:core-2-minidump",
303 "//breakpad:minidump-2-core",
304 ]
305 }
306
dpranke6293d252015-04-14 19:12:00307 if (is_chromeos) {
308 deps += [
309 "//chromeos:chromeos_unittests",
310 "//ui/chromeos:ui_chromeos_unittests",
311 ]
312 }
313
dprankefd1813272015-04-13 23:56:00314 if (is_chromeos || is_mac || is_win) {
315 deps += [
316 "//rlz:rlz_id",
317 "//rlz:rlz_lib",
318 "//rlz:rlz_unittests",
319 ]
dprankedb5527d72015-03-08 04:22:47320 }
321
322 if (is_linux) {
323 # The following are definitely linux-only.
hiroshigee6d374c2015-02-24 07:54:06324 deps += [
dprankedb5527d72015-03-08 04:22:47325 "//breakpad:breakpad_unittests",
dprankedb5527d72015-03-08 04:22:47326 "//breakpad:generate_test_dump",
dprankedb5527d72015-03-08 04:22:47327 "//dbus:dbus_test_server",
dprankee2ef3822015-02-24 21:42:18328 "//dbus:dbus_unittests",
dprankedb5527d72015-03-08 04:22:47329 "//net:disk_cache_memory_test",
330 "//net:flip_in_mem_edsm_server",
331 "//net:flip_in_mem_edsm_server_unittests",
332 "//net:quic_client",
333 "//net:quic_server",
334 "//sandbox/linux:chrome_sandbox",
dprankee2ef3822015-02-24 21:42:18335 "//sandbox/linux:sandbox_linux_unittests",
dprankedb5527d72015-03-08 04:22:47336 "//sandbox/linux:sandbox_linux_jni_unittests",
hiroshigee6d374c2015-02-24 07:54:06337 ]
dnicoara8c6aa8e2015-03-11 23:20:32338
339 if (is_chromeos || use_ash) {
340 deps += [ "//components/session_manager/core" ]
341 }
dprankedb5527d72015-03-08 04:22:47342 }
343
dprankefd1813272015-04-13 23:56:00344 if (is_win || (is_linux && !is_chromeos)) {
345 # TODO(GYP): Figure out which of these should (and can) build
346 # for android/chromeos/mac/ios.
tfarina9e7cf702015-02-23 21:13:44347 deps += [
dprankedb5527d72015-03-08 04:22:47348 "//base:base_perftests",
349 "//base:base_i18n_perftests",
350 "//base:check_example",
dprankedb5527d72015-03-08 04:22:47351 "//base:build_utf8_validator_tables",
dprankedb5527d72015-03-08 04:22:47352 "//cc:cc_perftests",
dprankefd1813272015-04-13 23:56:00353 "//cc/blink:cc_blink_unittests",
dprankedb5527d72015-03-08 04:22:47354 "//chrome/test:load_library_perf_tests",
dpranke76f48222015-04-01 00:00:00355 "//chrome/test:performance_browser_tests",
dprankedb5527d72015-03-08 04:22:47356 "//chrome/test:sync_performance_tests",
357 "//chrome/test/chromedriver:chromedriver",
358 "//chrome/test/chromedriver:chromedriver_tests",
359 "//chrome/tools/profile_reset:jtl_compiler",
360 "//components:components_perftests",
dprankedb5527d72015-03-08 04:22:47361 "//content/test:content_gl_tests",
362 "//content/test:content_gl_benchmark",
363 "//courgette:courgette",
364 "//courgette:courgette_fuzz",
365 "//courgette:courgette_minimal_tool",
366 "//courgette:courgette_unittests",
367 "//device:device_unittests",
368 "//gin:gin_shell",
dprankedb5527d72015-03-08 04:22:47369 "//gin:gin_unittests",
370 "//google_apis:google_apis_unittests",
371 "//google_apis/gcm:mcs_probe",
372 "//gpu:angle_unittests",
dprankedb5527d72015-03-08 04:22:47373 "//gpu:gpu_perftests",
dprankefd1813272015-04-13 23:56:00374 "//gpu:gl_tests",
dprankedb5527d72015-03-08 04:22:47375 "//ipc:ipc_perftests",
376 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional on media_use_ffmpeg
377 "//media:media_perftests",
dprankedb5527d72015-03-08 04:22:47378 "//media/cast:generate_barcode_video",
379 "//media/cast:generate_timecode_audio",
dprankedb5527d72015-03-08 04:22:47380 "//net:crash_cache",
381 "//net:crl_set_dump",
382 "//net:dns_fuzz_stub",
dprankefd1813272015-04-13 23:56:00383 "//net:dump_cache",
dprankedb5527d72015-03-08 04:22:47384 "//net:gdig",
385 "//net:get_server_time",
dprankedb5527d72015-03-08 04:22:47386 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in_net
dprankefd1813272015-04-13 23:56:00387 "//net:run_testserver",
dprankedb5527d72015-03-08 04:22:47388 "//net:stress_cache",
389 "//net:tld_cleanup",
dprankec09ccaa2015-03-27 22:00:38390 "//ppapi:pepper_hash_for_uma",
dprankefd1813272015-04-13 23:56:00391 "//ppapi:ppapi_perftests",
dprankedb5527d72015-03-08 04:22:47392 "//sync:run_sync_testserver",
393 "//sync:sync_endtoend_tests",
dprankedb5527d72015-03-08 04:22:47394 "//third_party/codesighs:maptsvdifftool",
dprankedb5527d72015-03-08 04:22:47395 "//third_party/leveldatabase:env_chromium_unittests",
396 "//third_party/libaddressinput:libaddressinput_unittests",
dprankefd1813272015-04-13 23:56:00397 "//third_party/libphonenumber:libphonenumber_unittests",
dprankedb5527d72015-03-08 04:22:47398 "//ui/compositor:compositor_unittests",
399 ]
400
401 if (enable_extensions) {
402 deps += [ "//extensions/shell:app_shell" ]
403 }
404
405 if (enable_nacl) {
dprankefd1813272015-04-13 23:56:00406 deps += [ "//components/nacl:nacl_loader_unittests" ]
dprankedb5527d72015-03-08 04:22:47407 }
408
dprankefd1813272015-04-13 23:56:00409 if (enable_nacl && enable_remoting) {
410 deps += [ "//remoting:remoting_key_tester" ]
dprankedb5527d72015-03-08 04:22:47411 }
412
413 if (use_ash) {
414 deps += [
415 "//ash:ash_shell",
416 "//ash:ash_shell_unittests",
417 "//ash:ash_unittests",
418 ]
419 }
420
421 if (use_aura) {
422 deps += [
423 "//ui/aura:aura_unittests",
424 "//ui/aura:bench",
425 "//ui/aura:demo",
426 ]
427 }
dprankefd1813272015-04-13 23:56:00428 }
429
430 if (is_linux && !is_chromeos) {
431 deps += [
432 # TODO(GYP): Figure out which of these should (and can) build
433 # under which other conditions.
434 "//build/sanitizers:copy_llvm_symbolizer",
435 "//chrome/test:chrome_app_unittests",
436 "//cloud_print:cloud_print_unittests",
437 "//components/network_hints/browser",
438 "//components/webui_generator",
439 "//content/public/app:browser",
440 "//content/public/app:child",
441
442 # TODO(GYP): Remove this when the gles2 tests work
443 "//gpu/command_buffer/client:gles2_implementation_no_check",
444
445 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/471903 to make this complete.
446 "//media/cast:cast_benchmarks",
447 "//media/cast:tap_proxy",
448 "//mojo/application",
449 "//skia:filter_fuzz_stub",
450 "//skia:image_operations_bench",
451 "//sync/tools:sync_client",
452 "//sync/tools:sync_listen_notifications",
453 "//testing/gmock:gmock_main",
454 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
455 "//tools/perf/clear_system_cache",
456 "//ui/keyboard:keyboard_unittests",
457 "//ui/message_center:message_center_unittests",
458 "//ui/snapshot:snapshot_unittests",
459 "//ui/views/examples:views_examples_with_content_exe",
460
461 # "//v8:v8_snapshot", # TODO(GYP): visibility?
462 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
463
464 "//third_party/codesighs:nm2tsv",
465 "//third_party/sqlite:sqlite_shell",
466 ]
467
468 if (current_toolchain == host_toolchain) {
469 # Do not build the breakpad utilities in cross-compiles.
470 deps += [
471 "//breakpad:dump_syms",
472 "//breakpad:microdump_stackwalk",
473 "//breakpad:minidump_dump",
474 "//breakpad:minidump_stackwalk",
475 ]
476 }
477
478 if (!is_debug && !is_component_build) {
479 deps += [ "//chrome/tools/service_discovery_sniffer" ]
480 }
481
482 if (toolkit_views) {
483 deps += [ "//ui/app_list:app_list_demo" ]
484 }
dprankedb5527d72015-03-08 04:22:47485
486 if (use_x11) {
wtc6e2e29c2015-03-13 01:09:44487 if (target_cpu != "arm") {
tfarina8944e6f2015-03-25 20:06:59488 deps += [ "//gpu/tools/compositor_model_bench" ]
wtc6e2e29c2015-03-13 01:09:44489 }
dprankedb5527d72015-03-08 04:22:47490 }
491 }
492
493 if (is_mac) {
494 deps += [
495 "//breakpad:crash_inspector",
496 "//breakpad:dump_syms",
tfarina9e7cf702015-02-23 21:13:44497 "//third_party/apple_sample_code",
498 "//third_party/molokocacao",
499 ]
500
dprankee2ef3822015-02-24 21:42:18501 # TODO(GYP): Remove these when the targets below work and these
502 # are pulled in automatically.
503 deps += [
504 "//cc/blink",
505 "//components/ui/zoom:ui_zoom",
506 "//content",
507 "//content/test:test_support",
508 "//device/battery",
509 "//device/bluetooth",
510 "//device/nfc",
511 "//device/usb",
512 "//device/vibration",
513 "//media/blink",
514 "//pdf",
515 "//storage/browser",
516 "//third_party/brotli",
517 "//third_party/flac",
518 "//third_party/hunspell",
519 "//third_party/iccjpeg",
520 "//third_party/libphonenumber",
521 "//third_party/ots",
522 "//third_party/qcms",
523 "//third_party/smhasher:murmurhash3",
524 "//third_party/speex",
525 "//third_party/webrtc/system_wrappers",
526 "//ui/native_theme",
527 "//ui/snapshot",
528 "//ui/surface",
529 ]
530
dprankecf8465db72014-11-10 23:51:22531 # TODO(dpranke): These are as-yet untriaged but need at least the above.
dpranke43760592014-11-08 02:59:57532 deps -= [
dprankee2ef3822015-02-24 21:42:18533 "//chrome", # TODO(GYP)
534 "//chrome/test:browser_tests", # TODO(GYP)
535 "//chrome/test:interactive_ui_tests", # TODO(GYP)
536 "//chrome/test:sync_integration_tests", # TODO(GYP)
537 "//chrome/test:unit_tests", # TODO(GYP)
dprankef6ca89c52015-03-30 22:01:38538 "//components:components_browsertests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18539 "//components:components_unittests", # TODO(GYP)
540 "//content/test:content_browsertests", # TODO(GYP)
541 "//content/test:content_perftests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18542 "//extensions:extensions_browsertests", # TODO(GYP)
543 "//extensions:extensions_unittests", # TODO(GYP)
544 "//net:net_unittests", # TODO(GYP)
dprankee2ef3822015-02-24 21:42:18545 "//ui/app_list:app_list_unittests", # TODO(GYP)
546 "//ui/gfx:gfx_unittests", # TODO(GYP)
mohsen29fd4052014-12-08 21:06:46547 ]
dprankefd1813272015-04-13 23:56:00548 }
549
550 if (is_win) {
551 deps += [
552 "//base:pe_image_test",
553 "//chrome_elf:chrome_elf_unittests",
554 "//chrome_elf:dll_hash_main",
dprankedb5a56c2015-04-29 18:01:09555 "//components/crash/tools:crash_service",
dprankefd1813272015-04-13 23:56:00556 "//components/wifi:wifi_test",
557 "//net:quic_client",
558 "//net:quic_server",
559 "//sandbox/win:pocdll",
560 "//sandbox/win:sandbox_poc",
561 "//sandbox/win:sbox_integration_tests",
562 "//sandbox/win:sbox_unittests",
563 "//sandbox/win:sbox_validation_tests",
564 "//testing/gtest:gtest_main",
565 "//third_party/codesighs:msmap2tsv",
566 "//third_party/pdfium/samples:pdfium_diff",
567 "//ui/metro_viewer",
568 ]
dprankee2ef3822015-02-24 21:42:18569 deps -= [
570 "//crypto:crypto_unittests", # TODO(GYP)
571 "//net:net_unittests", # TODO(GYP)
572 ]
dpranke6293d252015-04-14 19:12:00573 } else if (!is_android) {
574 deps += [ "//breakpad:symupload" ]
mohsenf837da7c2014-12-09 19:01:34575 }
dpranke18e57432015-02-27 21:46:47576}
577
dpranked62d8512015-03-02 03:06:03578group("gn_only") {
dprankedb5527d72015-03-08 04:22:47579 testonly = true
580
dprankeddc174902015-04-29 01:38:35581 deps = [
bend8a7fac2015-05-05 18:30:59582 "//mandoline:all",
dprankeddc174902015-04-29 01:38:35583 ]
isherman0f89b43eb2015-04-11 00:02:45584
585 if (!is_android && !is_ios) {
586 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
587 }
588
dprankedb5527d72015-03-08 04:22:47589 if (is_linux && !is_chromeos) {
590 # TODO(GYP): Figure out if any of these should be in gn_all
591 # and figure out how cross-platform they are
isherman0f89b43eb2015-04-11 00:02:45592 deps += [
dprankedb5527d72015-03-08 04:22:47593 ":gn_mojo_targets",
594 "//chrome/browser/resources:extension_resource_demo",
595 "//chrome/installer/util:strings",
596 "//chrome:main_dll",
597 "//chrome/test:load_library_perf_tests",
598 "//chrome/tools/convert_dict",
599 "//components/constrained_window:unit_tests",
600 "//components/enhanced_bookmarks:test_support",
dprankedb5527d72015-03-08 04:22:47601 "//components/metrics:serialization",
isherman0f89b43eb2015-04-11 00:02:45602 "//components/password_manager/content/renderer:browser_tests",
dprankedb5527d72015-03-08 04:22:47603 "//components/rappor:unit_tests",
604 "//components/sessions:unit_tests",
605 "//media/blink:media_blink_unittests",
dprankedb5527d72015-03-08 04:22:47606 "//media/cast:udp_proxy",
607 "//native_client/src/trusted/platform_qualify:vcpuid",
608 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
609 "//storage/browser:dump_file_system",
610 "//third_party/angle:libANGLE",
611 "//third_party/angle:libEGL",
612 "//third_party/angle:libGLESv2",
613 "//third_party/cld_2:cld_2_dynamic_data_tool",
614 "//third_party/leveldatabase:leveldb_arena_test",
615 "//third_party/leveldatabase:leveldb_bloom_test",
616 "//third_party/leveldatabase:leveldb_db_test",
617 "//third_party/leveldatabase:leveldb_crc32c_test",
618 "//third_party/leveldatabase:leveldb_cache_test",
619 "//third_party/leveldatabase:leveldb_env_test",
620 "//third_party/leveldatabase:leveldb_write_batch_test",
621 "//third_party/leveldatabase:leveldb_filter_block_test",
622 "//third_party/leveldatabase:leveldb_version_edit_test",
623 "//third_party/leveldatabase:leveldb_db_bench",
624 "//third_party/leveldatabase:leveldb_log_test",
625 "//third_party/leveldatabase:leveldb_corruption_test",
626 "//third_party/leveldatabase:leveldb_table_test",
627 "//third_party/leveldatabase:leveldb_skiplist_test",
628 "//third_party/leveldatabase:leveldb_filename_test",
629 "//third_party/leveldatabase:leveldb_dbformat_test",
630 "//third_party/pdfium/third_party:freetype",
631 "//third_party/libjingle:peerconnnection_server",
632 "//third_party/libjpeg_turbo:simd",
dprankedb5527d72015-03-08 04:22:47633 "//third_party/libsrtp:replay_driver",
634 "//third_party/libsrtp:roc_driver",
635 "//third_party/libsrtp:rtpw",
636 "//third_party/libsrtp:rdbx_driver",
637 "//third_party/libsrtp:srtp_driver",
638 "//third_party/libsrtp:srtp_driver",
639 "//third_party/libsrtp:srtp_test_kernel_driver",
640 "//third_party/libsrtp:srtp_test_cipher_driver",
641 "//third_party/libsrtp:srtp_test_datatypes_driver",
642 "//third_party/libsrtp:srtp_test_aes_calc",
643 "//third_party/libsrtp:srtp_test_env",
644 "//third_party/libsrtp:srtp_test_rand_gen",
645 "//third_party/libsrtp:srtp_test_sha1_driver",
646 "//third_party/libsrtp:srtp_test_stat_driver",
647 "//third_party/opus:opus_compare",
648 "//third_party/opus:opus_demo",
649 "//third_party/opus:test_opus_decode",
650 "//third_party/opus:test_opus_encode",
651 "//third_party/opus:test_opus_api",
652 "//third_party/opus:test_opus_padding",
653 "//third_party/webrtc/system_wrappers:field_trial_default",
654 "//third_party/webrtc/system_wrappers:metrics_default",
655 "//ui/display/types",
656 "//ui/shell_dialogs:shell_dialogs_unittests",
657 "//ui/views/examples:views_examples_exe",
dprankedb5527d72015-03-08 04:22:47658 ]
Gordana.Cmiljanovic85746ff12015-04-28 08:17:16659 if (target_cpu == "x86" || target_cpu == "x64") {
660 deps += [ "//third_party/libjpeg_turbo:simd_asm" ]
661 }
dprankedb5527d72015-03-08 04:22:47662 if (enable_nacl) {
663 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ]
664 }
665 if (use_ozone) {
666 deps += [ "//ui/ozone/demo" ]
667 }
668 if (is_android) {
669 deps += [ "//build/android/gyp/test:hello_world" ]
670 }
dpranke807f6022015-03-17 23:20:56671
672 if (is_linux && current_toolchain == host_toolchain) {
673 deps += [ "//v8:d8" ]
674 }
dprankedb5527d72015-03-08 04:22:47675 }
676}
677
678group("gn_mojo_targets") {
679 testonly = true
680 if (is_linux && !is_chromeos) {
681 # TODO(GYP): Figure out if any of these should be in gn_all
682 # and figure out how cross-platform they are
683 deps = [
684 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python",
skyd866af32015-04-23 16:20:09685 "//components/window_manager/public/interfaces:interfaces_python",
dprankedb5527d72015-03-08 04:22:47686 "//content/public/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47687 "//content/common:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47688 "//content/test:web_ui_test_mojo_bindings_python",
689 "//device/battery:mojo_bindings_python",
dprankedb5527d72015-03-08 04:22:47690 "//device/vibration:mojo_bindings_python",
691 "//ipc/mojo:ipc_mojo_perftests",
dprankedb5527d72015-03-08 04:22:47692 "//ipc/mojo:client_channel_python",
dprankedb5527d72015-03-08 04:22:47693 "//media/mojo/interfaces:interfaces_python",
694 "//media/mojo/services:cdm_service",
695 "//media/mojo:tests",
msw1bb9c6c2015-05-06 21:35:44696 "//mojo:tests",
dprankedb5527d72015-03-08 04:22:47697 "//net/interfaces:interfaces_python",
698 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
dprankedb5527d72015-03-08 04:22:47699 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
700 "//third_party/mojo/src/mojo/public/python:packaged_application",
701 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
702 "//third_party/mojo/src/mojo/public/cpp/application:test_support_standalone",
dprankedb5527d72015-03-08 04:22:47703 "//third_party/mojo_services/src/accessibility/public/interfaces:interfaces_python",
dprankedb5527d72015-03-08 04:22:47704 ]
dprankedb5527d72015-03-08 04:22:47705 }
706}
707
708group("gn_visibility") {
dpranked62d8512015-03-02 03:06:03709 deps = [
dprankeb6128d02015-05-01 16:40:30710 "//build/config/sanitizers:options_sources",
711
dprankedb5527d72015-03-08 04:22:47712 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
713 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
dprankeb6128d02015-05-01 16:40:30714
715 "//ui/resources:repack_ui_test_mac_locale_pack",
716
dprankedb5527d72015-03-08 04:22:47717 # "//v8:v8_snapshot", # TODO(GYP): visibility?
718 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
dpranked62d8512015-03-02 03:06:03719 ]
720}
721
brettw533c50422015-02-26 17:49:16722if (is_linux) {
723 # This group corresponds to the list of tests run on the waterfall for
724 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
725 # here to help track GYP -> GN conversion progress.
726 group("linux_default_tests") {
727 testonly = true
728 deps = [
brettw533c50422015-02-26 17:49:16729 "//base:base_unittests", # PASSES (*) 2/25/2015
730 "//cc:cc_unittests", # PASSES 2/25/2015
731 "//chrome/test:browser_tests",
732 "//chrome/test:interactive_ui_tests",
brettw922d3aa2015-02-27 22:15:46733 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GYP.
brettw533c50422015-02-26 17:49:16734 "//chrome/test:unit_tests", # PASSES 2/25/2015
brettw922d3aa2015-02-27 22:15:46735 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54736 "//components:components_browsertests", # PASSES 4/17/2015
brettw77b58722015-02-27 23:35:06737 "//components:components_unittests", # PASSES 2/27/2015
brettw533c50422015-02-26 17:49:16738 "//content/test:content_browsertests",
739 "//content/test:content_unittests", # PASSES 2/25/2015
740 "//crypto:crypto_unittests", # PASSES 2/25/2015
741 "//dbus:dbus_unittests", # PASSES 2/25/2015
tfarina466754f2015-03-09 23:39:29742 "//device:device_unittests", # PASSES 3/07/2015
brettw533c50422015-02-26 17:49:16743 "//extensions:extensions_browsertests", # PASSES 2/25/2015
744 "//extensions:extensions_unittests", # PASSES 2/25/2015
745 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
746 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
747 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
748 "//gpu:gpu_unittests", # PASSES 2/25/2015
749 "//ipc:ipc_tests", # PASSES 2/25/2015
750 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
751 "//jingle:jingle_unittests", # PASSES 2/25/2015
aboxhall60006f22015-04-22 18:27:55752 "//media:media_unittests", # PASSES 3/3/2015
toyoshimc64757792015-04-30 14:52:02753 "//media/cast:cast_unittests", # PASSES 2/25/2015
754 "//media/midi:midi_unittests", # PASSES 4/10/2015
brettw533c50422015-02-26 17:49:16755 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
756 "//net:net_unittests", # PASSES 2/25/2015
brettw31f4de692015-03-04 17:24:45757 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
brettw533c50422015-02-26 17:49:16758 "//printing:printing_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02759 "//remoting:remoting_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16760 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
761 "//skia:skia_unittests", # PASSES 2/25/2015
762 "//sql:sql_unittests", # PASSES 2/25/2015
763 "//sync:sync_unit_tests", # PASSES 2/25/2015
764 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015
765 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
766 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
767 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
768 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015
brettw690c96672015-04-21 16:19:54769 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
brettw533c50422015-02-26 17:49:16770 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
771 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
772 "//ui/aura:aura_unittests", # PASSES 2/25/2015
brettwfc2f1362015-04-17 19:00:02773 "//ui/base:ui_base_unittests", # PASSES 4/17/2015
brettw533c50422015-02-26 17:49:16774 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
775 "//ui/display:display_unittests", # PASSES 2/25/2015
776 "//ui/events:events_unittests", # PASSES 2/25/2015
777 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
dyen781489a2015-05-05 21:40:56778 "//ui/gl:gl_unittests",
brettw533c50422015-02-26 17:49:16779 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
780 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
781 "//ui/wm:wm_unittests", # PASSES 2/25/2015
782 "//url:url_unittests", # PASSES 2/25/2015
783
784 # Note:
785 # (*) Fails but failures match GYP build at time of testing.
786 ]
tfarina47830e32015-03-30 23:02:11787
788 if (enable_nacl) {
789 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015
790 }
brettw533c50422015-02-26 17:49:16791 }
brettw690c96672015-04-21 16:19:54792} else if (is_win) {
793 group("windows_default_tests") {
794 testonly = true
795 deps = [
796 "//ash:ash_unittests", # FAILS 4/20/2015
brettw9a19ddb2015-04-24 19:30:50797 "//base:base_unittests", # PASSES 4/20/2015
brettw690c96672015-04-21 16:19:54798 "//cc:cc_unittests", # PASSES 4/17/2015
799 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
brettweb1f7ac2015-05-01 17:43:01800 "//chrome/app_installer:app_installer_unittests", # PASSES 4/24/2015
801 "//chrome/installer/util:installer_util_unittests",
brettw690c96672015-04-21 16:19:54802 "//chrome/test:browser_tests",
803 "//chrome/test:interactive_ui_tests",
804 "//chrome/test:sync_integration_tests", # Note: need to turn off incremental linking for debug.
805 "//chrome/test:unit_tests",
806 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
brettweb1f7ac2015-05-01 17:43:01807 "//components:components_browsertests", # PASSES 4/24/2015
brettw690c96672015-04-21 16:19:54808 "//components:components_unittests", # PASSES 4/17/2015
809 "//courgette:courgette_unittests", # PASSES 4/20/2015
810 "//content/test:content_browsertests",
811 "//content/test:content_unittests", # PASSES 4/17/2015
812 "//crypto:crypto_unittests", # PASSES 4/17/2015
813 "//device:device_unittests", # PASSES 4/17/2015
814 "//extensions:extensions_browsertests", # PASSES 4/17/2015
815 "//extensions:extensions_unittests", # PASSES 4/17/2015
816 "//extensions/shell:app_shell_unittests", # Doesn't compile in 64-bit
817 "//google_apis/gcm:gcm_unit_tests", # PASSES 4/17/2015
818 "//google_apis:google_apis_unittests", # PASSES 4/17/2015
819 "//gpu:gpu_unittests", # PASSES 4/17/2015
820 "//ipc:ipc_tests", # PASSES 4/17/2015
821 "//ipc/mojo:ipc_mojo_unittests", # PASSES 4/17/2015
822 "//jingle:jingle_unittests", # PASSES 4/17/2015
823 "//media/cast:cast_unittests", # PASSES 4/17/2015
824 "//media:media_unittests", # PASSES 4/17/2015
825 "//mojo/common:mojo_common_unittests", # PASSES 4/17/2015
826 "//net:net_unittests", # PASSES 4/17/2015
827 "//ppapi:ppapi_unittests", # PASSES 4/17/2015
828 "//printing:printing_unittests", # PASSES 4/17/2015
829 "//remoting:remoting_unittests", # PASSES 4/17/2015
830 "//sandbox/win:sbox_integration_tests", # PASSES 4/20/2015
831 "//sandbox/win:sbox_unittests", # PASSES 4/20/2015
832 "//sandbox/win:sbox_validation_tests", # PASSES 4/20/2015
833 "//skia:skia_unittests", # PASSES 4/17/2015
834 "//sql:sql_unittests", # PASSES 4/17/2015
835 "//sync:sync_unit_tests", # PASSES 4/20/2015
836 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 4/20/2015
837 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # Seems to hang?
838 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # FAILS
839 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 4/20/2015
840 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 4/20/2015
841 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", # PASSES 4/20/2015
842 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015
843 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015
844 "//ui/aura:aura_unittests", # PASSES 4/17/2015
845 "//ui/base:ui_base_unittests", # PASSES 4/20/2015
846 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015
847 "//ui/display:display_unittests", # PASSES 4/20/2015
848 "//ui/events:events_unittests", # PASSES 4/20/2015
849 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015
dyen781489a2015-05-05 21:40:56850 "//ui/gl:gl_unittests",
brettw690c96672015-04-21 16:19:54851 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015
852 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015
brettw2a647722015-04-24 21:51:42853 "//ui/views:views_unittests", # TooltipControllerTest failures
854 "//ui/wm:wm_unittests", # PASSES 4/21/2015
brettw690c96672015-04-21 16:19:54855 "//url:url_unittests", # PASSES 4/17/2015
856
brettw690c96672015-04-21 16:19:54857 # TODO(GYP) nacl_integration
858 # TODO(GYP) telemetry_perf_unittests
859 # TODO(GYP) telemetry_unittests
860 ]
861 }
brettw533c50422015-02-26 17:49:16862}