diff options
author | xhwang <xhwang@chromium.org> | 2015-03-13 15:26:47 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-13 22:27:21 +0000 |
commit | af1242badc942c3b2f77dca796569495f1ae7247 (patch) | |
tree | 688378eac742988f295554a1a810f00e4f1e24a7 /base/debug | |
parent | 7b407399ba7226d11500820ac274c594a1c23974 (diff) | |
download | chromium_src-af1242badc942c3b2f77dca796569495f1ae7247.zip chromium_src-af1242badc942c3b2f77dca796569495f1ae7247.tar.gz chromium_src-af1242badc942c3b2f77dca796569495f1ae7247.tar.bz2 |
Fix stack trace symbol on Linux GN builds.
This is a follow up of https://codereview.chromium.org/972203003, where
base/debug/ files are moved to a separate BUILD.gn file, but the the define of
USE_SYMBOLIZE is not moved.
BUG=467116
TBR=brettw
TEST=Now stacktrace shows symbols.
CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg
Review URL: https://codereview.chromium.org/1007823003
Cr-Commit-Position: refs/heads/master@{#320593}
Diffstat (limited to 'base/debug')
-rw-r--r-- | base/debug/BUILD.gn | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/debug/BUILD.gn b/base/debug/BUILD.gn index 37a0ab2..0de41ad 100644 --- a/base/debug/BUILD.gn +++ b/base/debug/BUILD.gn @@ -63,6 +63,7 @@ source_set("debug") { ] if (is_linux) { + defines += [ "USE_SYMBOLIZE" ] deps += [ "//base/third_party/symbolize" ] } |