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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 "//build/sanitizers:copy_llvm_symbolizer", | 250 "//build/sanitizers:copy_llvm_symbolizer", |
251 "//cc/blink:cc_blink_unittests", | 251 "//cc/blink:cc_blink_unittests", |
252 "//cc:cc_perftests", | 252 "//cc:cc_perftests", |
253 "//chrome/test:chrome_app_unittests", | 253 "//chrome/test:chrome_app_unittests", |
254 "//chrome/test:load_library_perf_tests", | 254 "//chrome/test:load_library_perf_tests", |
255 "//chrome/test:performance_browser_tests", | 255 "//chrome/test:performance_browser_tests", |
256 "//chrome/test:sync_performance_tests", | 256 "//chrome/test:sync_performance_tests", |
257 "//chrome/test/chromedriver:chromedriver", | 257 "//chrome/test/chromedriver:chromedriver", |
258 "//chrome/test/chromedriver:chromedriver_tests", | 258 "//chrome/test/chromedriver:chromedriver_tests", |
259 "//chrome/tools/profile_reset:jtl_compiler", | 259 "//chrome/tools/profile_reset:jtl_compiler", |
| 260 "//cloud_print:cloud_print_unittests", |
260 "//components:components_perftests", | 261 "//components:components_perftests", |
261 "//components/network_hints/browser", | 262 "//components/network_hints/browser", |
262 "//components/webui_generator", | 263 "//components/webui_generator", |
263 "//content/public/app:browser", | 264 "//content/public/app:browser", |
264 "//content/public/app:child", | 265 "//content/public/app:child", |
265 "//content/test:content_gl_tests", | 266 "//content/test:content_gl_tests", |
266 "//content/test:content_gl_benchmark", | 267 "//content/test:content_gl_benchmark", |
267 "//courgette:courgette", | 268 "//courgette:courgette", |
268 "//courgette:courgette_fuzz", | 269 "//courgette:courgette_fuzz", |
269 "//courgette:courgette_minimal_tool", | 270 "//courgette:courgette_minimal_tool", |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 | 659 |
659 # Note: | 660 # Note: |
660 # (*) Fails but failures match GYP build at time of testing. | 661 # (*) Fails but failures match GYP build at time of testing. |
661 ] | 662 ] |
662 | 663 |
663 if (enable_nacl) { | 664 if (enable_nacl) { |
664 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 665 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
665 } | 666 } |
666 } | 667 } |
667 } | 668 } |
OLD | NEW |