| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/symlink.gni") | 5 import("//build/symlink.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 configs -= [ "//build/config/compiler:chromium_code" ] | 210 configs -= [ "//build/config/compiler:chromium_code" ] |
| 211 configs += [ "//build/config/compiler:no_chromium_code" ] | 211 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 212 | 212 |
| 213 deps = [ | 213 deps = [ |
| 214 "//build/config/sanitizers:deps", | 214 "//build/config/sanitizers:deps", |
| 215 ] | 215 ] |
| 216 } | 216 } |
| 217 } else { | 217 } else { |
| 218 # Aliases for convenience. | 218 # Aliases for convenience. |
| 219 binary_symlink("microdump_stackwalk") { | 219 binary_symlink("microdump_stackwalk") { |
| 220 binary_label = ":dump_syms($host_toolchain)" | 220 binary_label = ":$target_name($host_toolchain)" |
| 221 } | 221 } |
| 222 binary_symlink("minidump_stackwalk") { | 222 binary_symlink("minidump_stackwalk") { |
| 223 binary_label = ":dump_syms($host_toolchain)" | 223 binary_label = ":$target_name($host_toolchain)" |
| 224 } | 224 } |
| 225 binary_symlink("minidump_dump") { | 225 binary_symlink("minidump_dump") { |
| 226 binary_label = ":$target_name($host_toolchain)" | 226 binary_label = ":$target_name($host_toolchain)" |
| 227 } | 227 } |
| 228 } | 228 } |
| 229 } | 229 } |
| 230 | 230 |
| 231 # Mac -------------------------------------------------------------------------- | 231 # Mac -------------------------------------------------------------------------- |
| 232 | 232 |
| 233 if (is_mac) { | 233 if (is_mac) { |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 | 884 |
| 885 if (is_android) { | 885 if (is_android) { |
| 886 # TODO(GYP) Delete this after we've converted everything to GN. | 886 # TODO(GYP) Delete this after we've converted everything to GN. |
| 887 group("breakpad_unittests_deps") { | 887 group("breakpad_unittests_deps") { |
| 888 testonly = true | 888 testonly = true |
| 889 deps = [ | 889 deps = [ |
| 890 ":breakpad_unittests", | 890 ":breakpad_unittests", |
| 891 ] | 891 ] |
| 892 } | 892 } |
| 893 } | 893 } |
| OLD | NEW |