Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1145)

Side by Side Diff: breakpad/BUILD.gn

Issue 1866933002: breakpad: fix GN build files for microdump_stackwalk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698