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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 } | 314 } |
315 } | 315 } |
316 | 316 |
317 if (is_win || (is_linux && !is_chromeos)) { | 317 if (is_win || (is_linux && !is_chromeos)) { |
318 # TODO(GYP): Figure out which of these should (and can) build | 318 # TODO(GYP): Figure out which of these should (and can) build |
319 # for android/chromeos/mac/ios. | 319 # for android/chromeos/mac/ios. |
320 deps += [ | 320 deps += [ |
321 "//base:base_perftests", | 321 "//base:base_perftests", |
322 "//base:base_i18n_perftests", | 322 "//base:base_i18n_perftests", |
323 "//base:check_example", | 323 "//base:check_example", |
324 "//base:protect_file_posix", | |
325 "//base:build_utf8_validator_tables", | 324 "//base:build_utf8_validator_tables", |
326 "//cc:cc_perftests", | 325 "//cc:cc_perftests", |
327 "//cc/blink:cc_blink_unittests", | 326 "//cc/blink:cc_blink_unittests", |
328 "//chrome/test:load_library_perf_tests", | 327 "//chrome/test:load_library_perf_tests", |
329 "//chrome/test:performance_browser_tests", | 328 "//chrome/test:performance_browser_tests", |
330 "//chrome/test:sync_performance_tests", | 329 "//chrome/test:sync_performance_tests", |
331 "//chrome/test/chromedriver:chromedriver", | 330 "//chrome/test/chromedriver:chromedriver", |
332 "//chrome/test/chromedriver:chromedriver_tests", | 331 "//chrome/test/chromedriver:chromedriver_tests", |
333 "//chrome/tools/profile_reset:jtl_compiler", | 332 "//chrome/tools/profile_reset:jtl_compiler", |
334 "//components:components_perftests", | 333 "//components:components_perftests", |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 "//url:url_unittests", # PASSES 4/17/2015 | 820 "//url:url_unittests", # PASSES 4/17/2015 |
822 | 821 |
823 # TODO(GYP) installer_util_unittests | 822 # TODO(GYP) installer_util_unittests |
824 # TODO(GYP) app_installer_unittests | 823 # TODO(GYP) app_installer_unittests |
825 # TODO(GYP) nacl_integration | 824 # TODO(GYP) nacl_integration |
826 # TODO(GYP) telemetry_perf_unittests | 825 # TODO(GYP) telemetry_perf_unittests |
827 # TODO(GYP) telemetry_unittests | 826 # TODO(GYP) telemetry_unittests |
828 ] | 827 ] |
829 } | 828 } |
830 } | 829 } |
OLD | NEW |