From 3b047f19503b9a2fb5451c75b7c423a87f5d83cb Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Tue, 2 Oct 2018 15:34:23 -0700 Subject: [PATCH] more gclient_gn_args --- DEPS | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/DEPS b/DEPS index bea2c50265..67982d115e 100644 --- a/DEPS +++ b/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'