more gclient_gn_args
This commit is contained in:
parent
ea98fb37e6
commit
3b047f1950
1 changed files with 23 additions and 11 deletions
34
DEPS
34
DEPS
|
@ -1,3 +1,13 @@
|
|||
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
|
||||
gclient_gn_args = [
|
||||
'build_with_chromium',
|
||||
'checkout_android',
|
||||
'checkout_android_native_support',
|
||||
'checkout_libaom',
|
||||
'checkout_nacl',
|
||||
'checkout_oculus_sdk'
|
||||
]
|
||||
|
||||
vars = {
|
||||
'chromium_version':
|
||||
'69.0.3497.106',
|
||||
|
@ -17,16 +27,25 @@ vars = {
|
|||
# Python interface to Amazon Web Services. Is used for releases only.
|
||||
'checkout_boto': False,
|
||||
|
||||
'checkout_nacl': False,
|
||||
'checkout_libaom': True,
|
||||
'checkout_oculus_sdk': False,
|
||||
|
||||
# Python "requests" module is used for releases only.
|
||||
'checkout_requests': False,
|
||||
|
||||
# It is always needed for normal Electron builds,
|
||||
# but might be impossible for custom in-house builds.
|
||||
'download_external_binaries': True,
|
||||
|
||||
'checkout_nacl':
|
||||
False,
|
||||
'checkout_libaom':
|
||||
True,
|
||||
'checkout_oculus_sdk':
|
||||
False,
|
||||
'build_with_chromium':
|
||||
True,
|
||||
'checkout_android':
|
||||
False,
|
||||
'checkout_android_native_support':
|
||||
False,
|
||||
}
|
||||
|
||||
deps = {
|
||||
|
@ -102,10 +121,3 @@ hooks = [
|
|||
recursedeps = [
|
||||
'src',
|
||||
]
|
||||
|
||||
gclient_gn_args = [
|
||||
'checkout_libaom',
|
||||
'checkout_nacl',
|
||||
'checkout_oculus_sdk',
|
||||
]
|
||||
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
|
||||
|
|
Loading…
Reference in a new issue