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

Side by Side Diff: build/args/bots/official.desktop/blimp-engine.gn

Issue 2026983003: Build Engine with symbol_level = 1 to get line numbers in crash reports (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 import("//build/args/blimp_engine.gn") 1 import("//build/args/blimp_engine.gn")
2 2
3 # Use release build to improve engine performance, especially WebP encoding. 3 # Use release build to improve engine performance, especially WebP encoding.
4 is_debug = false 4 is_debug = false
5 5
6 # Designate this as an official build to pick up breakpad symbols. 6 # Designate this as an official build to pick up breakpad symbols.
7 is_official_build = true 7 is_official_build = true
8 8
9 # is_official_build will by default build with loads of symbols that we don't 9 # is_official_build will by default build with loads of symbols that we don't
10 # use, thus bloating the engine binary size. Build with symbol_level = 0 to 10 # use, thus bloating the engine binary size. Build with symbol_level = 1 to keep
11 # mitigate and keep binaries a reasonable size. 11 # binary size reasonable while preserving enough to generate backtraces with
12 symbol_level = 0 12 # source line numbers.
13 symbol_level = 1
13 14
14 # Turn on DCHECK to find bugs. 15 # Turn on DCHECK to find bugs.
15 dcheck_always_on = true 16 dcheck_always_on = true
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