| 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 } | 696 } |
| 697 | 697 |
| 698 if (is_android || is_linux || is_chromeos) { | 698 if (is_android || is_linux || is_chromeos) { |
| 699 deps += [ "//blimp" ] | 699 deps += [ "//blimp" ] |
| 700 } | 700 } |
| 701 | 701 |
| 702 if (is_mac) { | 702 if (is_mac) { |
| 703 deps -= [ "//mandoline:all" ] # TODO(GYP) | 703 deps -= [ "//mandoline:all" ] # TODO(GYP) |
| 704 } | 704 } |
| 705 | 705 |
| 706 if (is_headless) { |
| 707 deps += [ "//headless" ] |
| 708 } |
| 709 |
| 706 if (use_libfuzzer) { | 710 if (use_libfuzzer) { |
| 707 deps += [ "//testing/libfuzzer:libfuzzer_main" ] | 711 deps += [ "//testing/libfuzzer:libfuzzer_main" ] |
| 708 } | 712 } |
| 709 } | 713 } |
| 710 | 714 |
| 711 group("gn_mojo_targets") { | 715 group("gn_mojo_targets") { |
| 712 testonly = true | 716 testonly = true |
| 713 if (is_linux && !is_chromeos) { | 717 if (is_linux && !is_chromeos) { |
| 714 # TODO(GYP): Figure out if any of these should be in gn_all | 718 # TODO(GYP): Figure out if any of these should be in gn_all |
| 715 # and figure out how cross-platform they are | 719 # and figure out how cross-platform they are |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 840 if (target_cpu == "x86") { | 844 if (target_cpu == "x86") { |
| 841 deps += [ | 845 deps += [ |
| 842 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 846 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 843 ] | 847 ] |
| 844 } | 848 } |
| 845 } else { | 849 } else { |
| 846 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 850 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 847 } | 851 } |
| 848 } | 852 } |
| 849 } | 853 } |
| OLD | NEW |