Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: tools/build_command_buffer.py

Issue 2265913002: Build command buffer with is_component_build=false (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: build Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build_command_buffer.py
diff --git a/tools/build_command_buffer.py b/tools/build_command_buffer.py
index 7dabafea1d67e6f1d7afe2dd6283c98a23fe56a4..08f76dba73d014b6374a4f2d7e9da7bc7cc66ddd 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' % (
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698