| 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 } | 639 } |
| 640 | 640 |
| 641 if (is_android) { | 641 if (is_android) { |
| 642 deps += [ "//blimp" ] | 642 deps += [ "//blimp" ] |
| 643 } | 643 } |
| 644 | 644 |
| 645 if (is_mac) { | 645 if (is_mac) { |
| 646 deps -= [ "//mandoline:all" ] # TODO(GYP) | 646 deps -= [ "//mandoline:all" ] # TODO(GYP) |
| 647 } | 647 } |
| 648 | 648 |
| 649 if (is_headless) { |
| 650 deps += [ "//headless:headless_shell" ] |
| 651 } |
| 652 |
| 649 if (use_libfuzzer) { | 653 if (use_libfuzzer) { |
| 650 deps += [ "//testing/libfuzzer:libfuzzer_main" ] | 654 deps += [ "//testing/libfuzzer:libfuzzer_main" ] |
| 651 } | 655 } |
| 652 } | 656 } |
| 653 | 657 |
| 654 group("gn_mojo_targets") { | 658 group("gn_mojo_targets") { |
| 655 testonly = true | 659 testonly = true |
| 656 if (is_linux && !is_chromeos) { | 660 if (is_linux && !is_chromeos) { |
| 657 # TODO(GYP): Figure out if any of these should be in gn_all | 661 # TODO(GYP): Figure out if any of these should be in gn_all |
| 658 # and figure out how cross-platform they are | 662 # and figure out how cross-platform they are |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 if (target_cpu == "x86") { | 783 if (target_cpu == "x86") { |
| 780 deps += [ | 784 deps += [ |
| 781 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 785 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 782 ] | 786 ] |
| 783 } | 787 } |
| 784 } else { | 788 } else { |
| 785 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 789 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 786 } | 790 } |
| 787 } | 791 } |
| 788 } | 792 } |
| OLD | NEW |