| OLD | NEW |
| 1 import("//build/args/blimp_engine.gn") | 1 import("//build/args/blimp_engine.gn") |
| 2 | 2 |
| 3 # release + official + DCHECKs is a weird combination of arguments! | 3 # release + official + DCHECKs is a weird combination of arguments! |
| 4 # However, it's an attempt to both: | 4 # However, it's an attempt to both: |
| 5 # - emulate how the engine will be deployed | 5 # - emulate how the engine will be deployed |
| 6 # - catch as many errors as possible | 6 # - catch as many errors as possible |
| 7 # If it proves to be less than entirely stable, drop official and just do | 7 # If it proves to be less than entirely stable, drop official and just do |
| 8 # release + DCHECKs | 8 # release + DCHECKs |
| 9 is_debug = false | 9 is_debug = false |
| 10 is_official_build = true | 10 is_official_build = true |
| 11 dcheck_always_on = true | 11 dcheck_always_on = true |
| 12 use_goma = true |
| OLD | NEW |