Build with GN by default (issue #1403)

This commit is contained in:
Marshall Greenblatt
2016-07-20 18:27:37 -04:00
parent f2f76a0a20
commit d92bc1d200
3 changed files with 12 additions and 5 deletions

View File

@ -40,8 +40,8 @@ RunAction(cef_dir, patcher)
print "\nGenerating CEF project files..."
# Whether to use GN or GYP. GYP is currently the default.
use_gn = bool(int(os.environ.get('CEF_USE_GN', '0')))
# Whether to use GN or GYP. GN is currently the default.
use_gn = bool(int(os.environ.get('CEF_USE_GN', '1')))
gn_args = {}
custom_toolchain = False