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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 "//testing/gtest:gtest_main", | 550 "//testing/gtest:gtest_main", |
551 "//third_party/pdfium/samples:pdfium_diff", | 551 "//third_party/pdfium/samples:pdfium_diff", |
552 "//third_party/tcmalloc:addr2line-pdb", | 552 "//third_party/tcmalloc:addr2line-pdb", |
553 "//tools/win/chromeexts:chromeexts", | 553 "//tools/win/chromeexts:chromeexts", |
554 ] | 554 ] |
555 | 555 |
556 if (!(is_component_build && is_debug && target_cpu == "x86")) { | 556 if (!(is_component_build && is_debug && target_cpu == "x86")) { |
557 deps += | 557 deps += |
558 [ "//chrome/installer/mini_installer:next_version_mini_installer" ] | 558 [ "//chrome/installer/mini_installer:next_version_mini_installer" ] |
559 } | 559 } |
560 } else if (!is_android && !is_ios) { | 560 } else if (!is_android && !is_ios && !is_fuchsia) { |
561 deps += [ "//breakpad:symupload($host_toolchain)" ] | 561 deps += [ "//breakpad:symupload($host_toolchain)" ] |
562 } | 562 } |
563 | 563 |
564 if (is_chromecast) { | 564 if (is_chromecast) { |
565 deps += [ "//chromecast:cast_shell" ] | 565 deps += [ "//chromecast:cast_shell" ] |
566 } | 566 } |
567 | 567 |
568 if (is_mac || is_win) { | 568 if (is_mac || is_win) { |
569 deps += [ | 569 deps += [ |
570 "//third_party/crashpad/crashpad/handler:crashpad_handler", | 570 "//third_party/crashpad/crashpad/handler:crashpad_handler", |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 assert(target_name != "") # Mark as used. | 1066 assert(target_name != "") # Mark as used. |
1067 sources = invoker.actual_sources | 1067 sources = invoker.actual_sources |
1068 assert( | 1068 assert( |
1069 sources == invoker.actual_sources, | 1069 sources == invoker.actual_sources, |
1070 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1070 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
1071 } | 1071 } |
1072 | 1072 |
1073 assert_valid_out_dir("_unused") { | 1073 assert_valid_out_dir("_unused") { |
1074 actual_sources = [ "$root_build_dir/foo" ] | 1074 actual_sources = [ "$root_build_dir/foo" ] |
1075 } | 1075 } |
OLD | NEW |