OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This is the root build file for GN. GN will start processing by loading this | 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 | 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 | 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 | 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. | 9 # file to your new one or GN won't know about it. |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 group("gyp_all") { | 25 group("gyp_all") { |
26 testonly = true | 26 testonly = true |
27 | 27 |
28 # TODO(GYP): This target should describe everything that is built by a GYP | 28 # TODO(GYP): This target should describe everything that is built by a GYP |
29 # build but not yet by a GN build, i.e., these are the targets that still | 29 # build but not yet by a GN build, i.e., these are the targets that still |
30 # need to be ported to GN. Eventually this target should be identical to | 30 # need to be ported to GN. Eventually this target should be identical to |
31 # gn_all. | 31 # gn_all. |
32 | 32 |
33 deps = [ | 33 deps = [ |
34 ":gn_all", | 34 ":gn_all", |
35 # "//chrome/test:chromedriver_unittests", # TODO(GYP) | |
36 # "//components:components_browsertests", # TODO(GYP) | 35 # "//components:components_browsertests", # TODO(GYP) |
37 # "//components/nacl:nacl_loader_unittests", # TODO(GYP) | 36 # "//components/nacl:nacl_loader_unittests", # TODO(GYP) |
38 # "//google_apis:google_apis_unittests", # TODO(GYP) | 37 # "//google_apis:google_apis_unittests", # TODO(GYP) |
39 # "//ui/compositor:compositor_unittests", # TODO(GYP) | 38 # "//ui/compositor:compositor_unittests", # TODO(GYP) |
40 # "//device:device_unittests", # TODO(GYP) | 39 # "//device:device_unittests", # TODO(GYP) |
41 # "//ppapi:ppapi_unittests", # TODO(GYP) | 40 # "//ppapi:ppapi_unittests", # TODO(GYP) |
42 # "//remoting:remoting_unittests", # TODO(GYP) | 41 # "//remoting:remoting_unittests", # TODO(GYP) |
43 ] | 42 ] |
44 } | 43 } |
45 | 44 |
46 # The "gn_all" target matches the "gn_all" target in build/all.gyp. | 45 # The "gn_all" target matches the "gn_all" target in build/all.gyp. |
47 # It is not (yet!) the same as building "all". | 46 # It is not (yet!) the same as building "all". |
48 # TODO(GYP): Make it be basically the same as building all, or at least | 47 # TODO(GYP): Make it be basically the same as building all, or at least |
49 # be sure that we don't want any of the stuff listed in gn_all to | 48 # be sure that we don't want any of the stuff listed in gn_all to |
50 # be built by default. | 49 # be built by default. |
51 | 50 |
52 # In GN, a "group" is a dummy target that just lists other targets. | 51 # In GN, a "group" is a dummy target that just lists other targets. |
53 group("gn_all") { | 52 group("gn_all") { |
54 testonly = true | 53 testonly = true |
55 | 54 |
56 deps = [ | 55 deps = [ |
57 "//base:base_unittests", | 56 "//base:base_unittests", |
58 "//cc:cc_unittests", | 57 "//cc:cc_unittests", |
59 "//chrome", | 58 "//chrome", |
60 "//chrome/test:browser_tests", | 59 "//chrome/test:browser_tests", |
61 "//chrome/test:interactive_ui_tests", | 60 "//chrome/test:interactive_ui_tests", |
62 "//chrome/test:sync_integration_tests", | 61 "//chrome/test:sync_integration_tests", |
63 "//chrome/test:unit_tests", | 62 "//chrome/test:unit_tests", |
| 63 "//chrome/test/chromedriver:chromedriver_unittests", |
64 "//components:components_unittests", | 64 "//components:components_unittests", |
65 "//content/shell:content_shell", | 65 "//content/shell:content_shell", |
66 "//content/test:content_browsertests", | 66 "//content/test:content_browsertests", |
67 "//content/test:content_perftests", | 67 "//content/test:content_perftests", |
68 "//content/test:content_unittests", | 68 "//content/test:content_unittests", |
69 "//crypto:crypto_unittests", | 69 "//crypto:crypto_unittests", |
70 "//extensions:extensions_browsertests", | 70 "//extensions:extensions_browsertests", |
71 "//extensions:extensions_unittests", | 71 "//extensions:extensions_unittests", |
72 "//google_apis/gcm:gcm_unit_tests", | 72 "//google_apis/gcm:gcm_unit_tests", |
73 "//gpu:gpu_unittests", | 73 "//gpu:gpu_unittests", |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 } | 299 } |
300 } | 300 } |
301 | 301 |
302 if (is_linux) { | 302 if (is_linux) { |
303 # This group corresponds to the list of tests run on the waterfall for | 303 # This group corresponds to the list of tests run on the waterfall for |
304 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's | 304 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's |
305 # here to help track GYP -> GN conversion progress. | 305 # here to help track GYP -> GN conversion progress. |
306 group("linux_default_tests") { | 306 group("linux_default_tests") { |
307 testonly = true | 307 testonly = true |
308 deps = [ | 308 deps = [ |
309 # chromedriver_unittests TODO(GYP) | |
310 # components_browsertests TODO(GYP) | 309 # components_browsertests TODO(GYP) |
311 # device_unittests TODO(GYP) | 310 # device_unittests TODO(GYP) |
312 # nacl_loader_unittests TODO(GYP) | 311 # nacl_loader_unittests TODO(GYP) |
313 # ppapi_unittests TODO(GYP) | 312 # ppapi_unittests TODO(GYP) |
314 # remoting_unittests TODO(GYP) | 313 # remoting_unittests TODO(GYP) |
315 | 314 |
316 "//base:base_unittests", # PASSES (*) 2/25/2015 | 315 "//base:base_unittests", # PASSES (*) 2/25/2015 |
317 "//cc:cc_unittests", # PASSES 2/25/2015 | 316 "//cc:cc_unittests", # PASSES 2/25/2015 |
318 "//chrome/test:browser_tests", | 317 "//chrome/test:browser_tests", |
319 "//chrome/test:interactive_ui_tests", | 318 "//chrome/test:interactive_ui_tests", |
320 "//chrome/test:sync_integration_tests", # TODO(GYP) multiple crashes. | 319 "//chrome/test:sync_integration_tests", # Crashes for brettw in GN and GY
P. |
321 "//chrome/test:unit_tests", # PASSES 2/25/2015 | 320 "//chrome/test:unit_tests", # PASSES 2/25/2015 |
| 321 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 2/25/2015 |
322 "//components:components_unittests", # TODO(GYP) multiple crashes. | 322 "//components:components_unittests", # TODO(GYP) multiple crashes. |
323 "//content/test:content_browsertests", | 323 "//content/test:content_browsertests", |
324 "//content/test:content_unittests", # PASSES 2/25/2015 | 324 "//content/test:content_unittests", # PASSES 2/25/2015 |
325 "//crypto:crypto_unittests", # PASSES 2/25/2015 | 325 "//crypto:crypto_unittests", # PASSES 2/25/2015 |
326 "//dbus:dbus_unittests", # PASSES 2/25/2015 | 326 "//dbus:dbus_unittests", # PASSES 2/25/2015 |
327 "//extensions:extensions_browsertests", # PASSES 2/25/2015 | 327 "//extensions:extensions_browsertests", # PASSES 2/25/2015 |
328 "//extensions:extensions_unittests", # PASSES 2/25/2015 | 328 "//extensions:extensions_unittests", # PASSES 2/25/2015 |
329 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015 | 329 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015 |
330 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015 | 330 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015 |
331 "//google_apis:google_apis_unittests", # PASSES 2/25/2015 | 331 "//google_apis:google_apis_unittests", # PASSES 2/25/2015 |
(...skipping 26 matching lines...) Expand all Loading... |
358 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 | 358 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 |
359 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 | 359 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 |
360 "//ui/wm:wm_unittests", # PASSES 2/25/2015 | 360 "//ui/wm:wm_unittests", # PASSES 2/25/2015 |
361 "//url:url_unittests", # PASSES 2/25/2015 | 361 "//url:url_unittests", # PASSES 2/25/2015 |
362 | 362 |
363 # Note: | 363 # Note: |
364 # (*) Fails but failures match GYP build at time of testing. | 364 # (*) Fails but failures match GYP build at time of testing. |
365 ] | 365 ] |
366 } | 366 } |
367 } | 367 } |
OLD | NEW |