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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 | 66 |
67 deps = [ | 67 deps = [ |
68 "//base:base_unittests", | 68 "//base:base_unittests", |
69 "//cc:cc_unittests", | 69 "//cc:cc_unittests", |
70 "//chrome", | 70 "//chrome", |
71 "//chrome/test:browser_tests", | 71 "//chrome/test:browser_tests", |
72 "//chrome/test:interactive_ui_tests", | 72 "//chrome/test:interactive_ui_tests", |
73 "//chrome/test:sync_integration_tests", | 73 "//chrome/test:sync_integration_tests", |
74 "//chrome/test:unit_tests", | 74 "//chrome/test:unit_tests", |
75 "//chrome/test/chromedriver:chromedriver_unittests", | 75 "//chrome/test/chromedriver:chromedriver_unittests", |
76 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", | |
Dirk Pranke
2015/07/20 19:29:41
shouldn't this be under is_win or something?
brettw
2015/07/20 22:21:55
I explicitly made the targets exist in all cases b
| |
76 "//components:components_browsertests", | 77 "//components:components_browsertests", |
77 "//components:components_unittests", | 78 "//components:components_unittests", |
78 "//content/shell:content_shell", | 79 "//content/shell:content_shell", |
79 "//content/test:content_browsertests", | 80 "//content/test:content_browsertests", |
80 "//content/test:content_perftests", | 81 "//content/test:content_perftests", |
81 "//content/test:content_unittests", | 82 "//content/test:content_unittests", |
82 "//crypto:crypto_unittests", | 83 "//crypto:crypto_unittests", |
83 "//device:device_unittests", | 84 "//device:device_unittests", |
84 "//extensions:extensions_browsertests", | 85 "//extensions:extensions_browsertests", |
85 "//extensions:extensions_unittests", | 86 "//extensions:extensions_unittests", |
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
913 "//ui/views:views_unittests", # TooltipControllerTest failures | 914 "//ui/views:views_unittests", # TooltipControllerTest failures |
914 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 915 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
915 "//url:url_unittests", # PASSES 4/17/2015 | 916 "//url:url_unittests", # PASSES 4/17/2015 |
916 | 917 |
917 # TODO(GYP) nacl_integration | 918 # TODO(GYP) nacl_integration |
918 # TODO(GYP) telemetry_perf_unittests | 919 # TODO(GYP) telemetry_perf_unittests |
919 # TODO(GYP) telemetry_unittests | 920 # TODO(GYP) telemetry_unittests |
920 ] | 921 ] |
921 } | 922 } |
922 } | 923 } |
OLD | NEW |