Disable Chromium field trials in official builds (fixes #3560)
This commit is contained in:
parent
0a633e361b
commit
f4ecc23213
|
@ -466,12 +466,16 @@ def GetConfigArgs(args, is_debug, cpu):
|
|||
"""
|
||||
add_args = {}
|
||||
|
||||
if GetArgValue(args, 'is_official_build'):
|
||||
# Disable Chromium field trials in official builds.
|
||||
add_args['disable_fieldtrial_testing_config'] = True
|
||||
|
||||
# Cannot create is_official_build=true is_debug=true builds.
|
||||
# This restriction is enforced in //build/config/BUILDCONFIG.gn.
|
||||
# Instead, our "official Debug" build is a Release build with dchecks and
|
||||
# symbols. Symbols will be generated by default for official builds; see the
|
||||
# definition of 'symbol_level' in //build/config/compiler/compiler.gni.
|
||||
if is_debug and GetArgValue(args, 'is_official_build'):
|
||||
if is_debug:
|
||||
is_debug = False
|
||||
add_args['dcheck_always_on'] = True
|
||||
|
||||
|
|
Loading…
Reference in New Issue