| 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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 ] | 671 ] |
| 672 } | 672 } |
| 673 | 673 |
| 674 if (is_win) { | 674 if (is_win) { |
| 675 deps += [ | 675 deps += [ |
| 676 "//base:pe_image_test", | 676 "//base:pe_image_test", |
| 677 "//chrome/install_static:install_static_unittests", | 677 "//chrome/install_static:install_static_unittests", |
| 678 "//chrome/installer/setup:setup_unittests", | 678 "//chrome/installer/setup:setup_unittests", |
| 679 "//chrome_elf:chrome_elf_unittests", | 679 "//chrome_elf:chrome_elf_unittests", |
| 680 "//chrome_elf:dll_hash_main", | 680 "//chrome_elf:dll_hash_main", |
| 681 "//cloud_print:cloud_print_unittests", |
| 681 "//components/wifi:wifi_test", | 682 "//components/wifi:wifi_test", |
| 682 "//net:quic_client", | 683 "//net:quic_client", |
| 683 "//net:quic_server", | 684 "//net:quic_server", |
| 684 "//sandbox/win:pocdll", | 685 "//sandbox/win:pocdll", |
| 685 "//sandbox/win:sandbox_poc", | 686 "//sandbox/win:sandbox_poc", |
| 686 "//sandbox/win:sbox_integration_tests", | 687 "//sandbox/win:sbox_integration_tests", |
| 687 "//sandbox/win:sbox_unittests", | 688 "//sandbox/win:sbox_unittests", |
| 688 "//sandbox/win:sbox_validation_tests", | 689 "//sandbox/win:sbox_validation_tests", |
| 689 "//testing/gtest:gtest_main", | 690 "//testing/gtest:gtest_main", |
| 690 "//third_party/codesighs:msmap2tsv", | 691 "//third_party/codesighs:msmap2tsv", |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 assert(target_name != "") # Mark as used. | 1098 assert(target_name != "") # Mark as used. |
| 1098 sources = invoker.actual_sources | 1099 sources = invoker.actual_sources |
| 1099 assert( | 1100 assert( |
| 1100 sources == invoker.actual_sources, | 1101 sources == invoker.actual_sources, |
| 1101 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1102 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1102 } | 1103 } |
| 1103 | 1104 |
| 1104 assert_valid_out_dir("_unused") { | 1105 assert_valid_out_dir("_unused") { |
| 1105 actual_sources = [ "$root_build_dir/foo" ] | 1106 actual_sources = [ "$root_build_dir/foo" ] |
| 1106 } | 1107 } |
| OLD | NEW |