OLD | NEW |
| (Empty) |
1 import("//build/args/blimp_engine.gn") | |
2 | |
3 # Use release build to improve engine performance, especially WebP encoding. | |
4 is_debug = false | |
5 | |
6 # Designate this as an official build to pick up breakpad symbols. | |
7 is_official_build = true | |
8 | |
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 = 1 to keep | |
11 # binary size reasonable while preserving enough to generate backtraces with | |
12 # source line numbers. | |
13 symbol_level = 1 | |
14 | |
15 # Turn on DCHECK to find bugs. | |
16 dcheck_always_on = true | |
OLD | NEW |