| 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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 "//net:quic_client", | 683 "//net:quic_client", |
| 684 "//net:quic_server", | 684 "//net:quic_server", |
| 685 "//sandbox/win:pocdll", | 685 "//sandbox/win:pocdll", |
| 686 "//sandbox/win:sandbox_poc", | 686 "//sandbox/win:sandbox_poc", |
| 687 "//sandbox/win:sbox_integration_tests", | 687 "//sandbox/win:sbox_integration_tests", |
| 688 "//sandbox/win:sbox_unittests", | 688 "//sandbox/win:sbox_unittests", |
| 689 "//sandbox/win:sbox_validation_tests", | 689 "//sandbox/win:sbox_validation_tests", |
| 690 "//testing/gtest:gtest_main", | 690 "//testing/gtest:gtest_main", |
| 691 "//third_party/codesighs:msmap2tsv", | 691 "//third_party/codesighs:msmap2tsv", |
| 692 "//third_party/pdfium/samples:pdfium_diff", | 692 "//third_party/pdfium/samples:pdfium_diff", |
| 693 "//tools/win/chromeexts:chromeexts", |
| 693 ] | 694 ] |
| 694 deps -= [ | 695 deps -= [ |
| 695 "//crypto:crypto_unittests", # TODO(GYP) | 696 "//crypto:crypto_unittests", # TODO(GYP) |
| 696 "//net:net_unittests", # TODO(GYP) | 697 "//net:net_unittests", # TODO(GYP) |
| 697 ] | 698 ] |
| 698 | 699 |
| 699 if (!(is_component_build && is_debug && target_cpu == "x86")) { | 700 if (!(is_component_build && is_debug && target_cpu == "x86")) { |
| 700 deps += | 701 deps += |
| 701 [ "//chrome/installer/mini_installer:next_version_mini_installer" ] | 702 [ "//chrome/installer/mini_installer:next_version_mini_installer" ] |
| 702 } | 703 } |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 assert(target_name != "") # Mark as used. | 1101 assert(target_name != "") # Mark as used. |
| 1101 sources = invoker.actual_sources | 1102 sources = invoker.actual_sources |
| 1102 assert( | 1103 assert( |
| 1103 sources == invoker.actual_sources, | 1104 sources == invoker.actual_sources, |
| 1104 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1105 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1105 } | 1106 } |
| 1106 | 1107 |
| 1107 assert_valid_out_dir("_unused") { | 1108 assert_valid_out_dir("_unused") { |
| 1108 actual_sources = [ "$root_build_dir/foo" ] | 1109 actual_sources = [ "$root_build_dir/foo" ] |
| 1109 } | 1110 } |
| OLD | NEW |