aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_command_buffer.py
diff options
context:
space:
mode:
authorGravatar borenet <borenet@chromium.org>2016-08-22 07:31:43 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-22 07:31:43 -0700
commita629166d6edf25ba39b3fe6ff1b749f0787df104 (patch)
treed63c3b34d01f6829ac7ff264f87cbcdbcf0887c3 /tools/build_command_buffer.py
parent36da77122644c591a0fbe69291d2442018c060e2 (diff)
Build command buffer with is_component_build=false
Diffstat (limited to 'tools/build_command_buffer.py')
-rwxr-xr-xtools/build_command_buffer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/build_command_buffer.py b/tools/build_command_buffer.py
index 7dabafea1d..08f76dba73 100755
--- a/tools/build_command_buffer.py
+++ b/tools/build_command_buffer.py
@@ -131,7 +131,8 @@ def main():
gn = 'gn.exe'
gn = os.path.join(chrome_src_dir, 'buildtools', platform, gn)
try:
- subprocess.check_call([gn, 'gen', chrome_target_dir_rel],
+ subprocess.check_call([gn, 'gen', chrome_target_dir_rel,
+ '--args=is_component_build=false'],
cwd=chrome_src_dir)
except subprocess.CalledProcessError as error:
sys.exit('Error (ret code: %s) calling "%s" in %s' % (