| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ] | 424 ] |
| 425 } | 425 } |
| 426 | 426 |
| 427 if (is_android || is_win || (is_linux && !is_chromeos)) { | 427 if (is_android || is_win || (is_linux && !is_chromeos)) { |
| 428 deps += [ | 428 deps += [ |
| 429 "//base:build_utf8_validator_tables", | 429 "//base:build_utf8_validator_tables", |
| 430 "//base:check_example", | 430 "//base:check_example", |
| 431 "//cc:cc_perftests", | 431 "//cc:cc_perftests", |
| 432 "//cc/blink:cc_blink_unittests", | 432 "//cc/blink:cc_blink_unittests", |
| 433 "//components:components_perftests", | 433 "//components:components_perftests", |
| 434 "//components/display_compositor:display_compositor_unittests", | |
| 435 "//device:device_unittests", | 434 "//device:device_unittests", |
| 436 "//gin:gin_shell", | 435 "//gin:gin_shell", |
| 437 "//gin:gin_unittests", | 436 "//gin:gin_unittests", |
| 438 "//google_apis/gcm:mcs_probe", | 437 "//google_apis/gcm:mcs_probe", |
| 439 "//gpu:gl_tests", | 438 "//gpu:gl_tests", |
| 440 "//gpu:gpu_perftests", | 439 "//gpu:gpu_perftests", |
| 441 "//ipc:ipc_perftests", | 440 "//ipc:ipc_perftests", |
| 442 "//media:media_perftests", | 441 "//media:media_perftests", |
| 443 "//net:dump_cache", | 442 "//net:dump_cache", |
| 444 "//sync:run_sync_testserver", | 443 "//sync:run_sync_testserver", |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 assert(target_name != "") # Mark as used. | 951 assert(target_name != "") # Mark as used. |
| 953 sources = invoker.actual_sources | 952 sources = invoker.actual_sources |
| 954 assert( | 953 assert( |
| 955 sources == invoker.actual_sources, | 954 sources == invoker.actual_sources, |
| 956 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 955 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 957 } | 956 } |
| 958 | 957 |
| 959 assert_valid_out_dir("_unused") { | 958 assert_valid_out_dir("_unused") { |
| 960 actual_sources = [ "$root_build_dir/foo" ] | 959 actual_sources = [ "$root_build_dir/foo" ] |
| 961 } | 960 } |
| OLD | NEW |