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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 "//base:check_example", | 245 "//base:check_example", |
246 "//base:protect_file_posix", | 246 "//base:protect_file_posix", |
247 "//base:build_utf8_validator_tables", | 247 "//base:build_utf8_validator_tables", |
248 "//breakpad:core-2-minidump", | 248 "//breakpad:core-2-minidump", |
249 "//breakpad:minidump-2-core", | 249 "//breakpad:minidump-2-core", |
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:sync_performance_tests", | 256 "//chrome/test:sync_performance_tests", |
256 "//chrome/test/chromedriver:chromedriver", | 257 "//chrome/test/chromedriver:chromedriver", |
257 "//chrome/test/chromedriver:chromedriver_tests", | 258 "//chrome/test/chromedriver:chromedriver_tests", |
258 "//chrome/tools/profile_reset:jtl_compiler", | 259 "//chrome/tools/profile_reset:jtl_compiler", |
259 "//components:components_perftests", | 260 "//components:components_perftests", |
260 "//components/network_hints/browser", | 261 "//components/network_hints/browser", |
261 "//components/webui_generator", | 262 "//components/webui_generator", |
262 "//content/public/app:browser", | 263 "//content/public/app:browser", |
263 "//content/public/app:child", | 264 "//content/public/app:child", |
264 "//content/test:content_gl_tests", | 265 "//content/test:content_gl_tests", |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 | 658 |
658 # Note: | 659 # Note: |
659 # (*) Fails but failures match GYP build at time of testing. | 660 # (*) Fails but failures match GYP build at time of testing. |
660 ] | 661 ] |
661 | 662 |
662 if (enable_nacl) { | 663 if (enable_nacl) { |
663 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 664 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
664 } | 665 } |
665 } | 666 } |
666 } | 667 } |
OLD | NEW |