| 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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 } | 701 } |
| 702 | 702 |
| 703 if (is_mac) { | 703 if (is_mac) { |
| 704 deps -= [ "//mandoline:all" ] # TODO(GYP) | 704 deps -= [ "//mandoline:all" ] # TODO(GYP) |
| 705 } | 705 } |
| 706 | 706 |
| 707 if (use_libfuzzer) { | 707 if (use_libfuzzer) { |
| 708 # these are needed only for gn to discover build files. | 708 # these are needed only for gn to discover build files. |
| 709 deps += [ | 709 deps += [ |
| 710 "//testing/libfuzzer:libfuzzer_main", | 710 "//testing/libfuzzer:libfuzzer_main", |
| 711 "//testing/libfuzzer/fuzzers:string_to_int_fuzzer" | 711 "//testing/libfuzzer/fuzzers:string_to_int_fuzzer", |
| 712 ] | 712 ] |
| 713 } | 713 } |
| 714 } | 714 } |
| 715 | 715 |
| 716 group("gn_mojo_targets") { | 716 group("gn_mojo_targets") { |
| 717 testonly = true | 717 testonly = true |
| 718 if (is_linux && !is_chromeos) { | 718 if (is_linux && !is_chromeos) { |
| 719 # TODO(GYP): Figure out if any of these should be in gn_all | 719 # TODO(GYP): Figure out if any of these should be in gn_all |
| 720 # and figure out how cross-platform they are | 720 # and figure out how cross-platform they are |
| 721 deps = [ | 721 deps = [ |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 if (target_cpu == "x86") { | 845 if (target_cpu == "x86") { |
| 846 deps += [ | 846 deps += [ |
| 847 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 847 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 848 ] | 848 ] |
| 849 } | 849 } |
| 850 } else { | 850 } else { |
| 851 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 851 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 852 } | 852 } |
| 853 } | 853 } |
| 854 } | 854 } |
| OLD | NEW |