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

Unified Diff: tools-webrtc/android/build_aar.py

Issue 2679123002: Reduce parallel jobs in build_aar.py to 200 when building with goma. (Closed)
Patch Set: Created 3 years, 10 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-webrtc/android/build_aar.py
diff --git a/tools-webrtc/android/build_aar.py b/tools-webrtc/android/build_aar.py
index 7f6937f2001fa54d2bcae0ea5fd7d61557fb6841..274f1e79d745d7bdef597890432dde145c975499 100755
--- a/tools-webrtc/android/build_aar.py
+++ b/tools-webrtc/android/build_aar.py
@@ -129,7 +129,7 @@ def Build(tmp_dir, arch, use_goma):
ninja_args = TARGETS
if use_goma:
- ninja_args.extend(['-j', '1024'])
+ ninja_args.extend(['-j', '200'])
_RunNinja(output_directory, ninja_args)
« 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