| 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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 "//components/wifi:wifi_test", | 540 "//components/wifi:wifi_test", |
| 541 "//net:quic_client", | 541 "//net:quic_client", |
| 542 "//net:quic_server", | 542 "//net:quic_server", |
| 543 "//sandbox/win:pocdll", | 543 "//sandbox/win:pocdll", |
| 544 "//sandbox/win:sandbox_poc", | 544 "//sandbox/win:sandbox_poc", |
| 545 "//sandbox/win:sbox_integration_tests", | 545 "//sandbox/win:sbox_integration_tests", |
| 546 "//sandbox/win:sbox_unittests", | 546 "//sandbox/win:sbox_unittests", |
| 547 "//sandbox/win:sbox_validation_tests", | 547 "//sandbox/win:sbox_validation_tests", |
| 548 "//testing/gtest:gtest_main", | 548 "//testing/gtest:gtest_main", |
| 549 "//third_party/pdfium/samples:pdfium_diff", | 549 "//third_party/pdfium/samples:pdfium_diff", |
| 550 "//third_party/tcmalloc:addr2line-pdb", |
| 550 "//tools/win/chromeexts:chromeexts", | 551 "//tools/win/chromeexts:chromeexts", |
| 551 ] | 552 ] |
| 552 deps -= [ | 553 deps -= [ |
| 553 "//crypto:crypto_unittests", # TODO(GYP) | 554 "//crypto:crypto_unittests", # TODO(GYP) |
| 554 "//net:net_unittests", # TODO(GYP) | 555 "//net:net_unittests", # TODO(GYP) |
| 555 ] | 556 ] |
| 556 | 557 |
| 557 if (!(is_component_build && is_debug && target_cpu == "x86")) { | 558 if (!(is_component_build && is_debug && target_cpu == "x86")) { |
| 558 deps += | 559 deps += |
| 559 [ "//chrome/installer/mini_installer:next_version_mini_installer" ] | 560 [ "//chrome/installer/mini_installer:next_version_mini_installer" ] |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1075 assert(target_name != "") # Mark as used. | 1076 assert(target_name != "") # Mark as used. |
| 1076 sources = invoker.actual_sources | 1077 sources = invoker.actual_sources |
| 1077 assert( | 1078 assert( |
| 1078 sources == invoker.actual_sources, | 1079 sources == invoker.actual_sources, |
| 1079 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1080 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1080 } | 1081 } |
| 1081 | 1082 |
| 1082 assert_valid_out_dir("_unused") { | 1083 assert_valid_out_dir("_unused") { |
| 1083 actual_sources = [ "$root_build_dir/foo" ] | 1084 actual_sources = [ "$root_build_dir/foo" ] |
| 1084 } | 1085 } |
| OLD | NEW |