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

Unified Diff: gyp_skia

Issue 319153002: Effectively unlimited linking. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: comma Created 6 years, 6 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: gyp_skia
diff --git a/gyp_skia b/gyp_skia
index 040253ec9e61b80e39504dc71959ed7e8fc5edda..a90e7aa478222ba5f0dbf84db177be431edbea3e 100755
--- a/gyp_skia
+++ b/gyp_skia
@@ -134,6 +134,10 @@ if __name__ == '__main__':
os.environ[ENVVAR_GYP_GENERATOR_FLAGS] = (
gyp_generator_flags + ' msvs_error_on_missing_sources=1')
+ # GYP is very conservative about how many concurrent linker calls it allows, to fit in RAM.
+ # We don't need to be nearly as conservative as Chrome. We'll just turn that feature off.
borenet 2014/06/06 15:00:30 Nit: > 80 chars
mtklein 2014/06/06 15:03:35 Done.
+ os.environ['GYP_LINK_CONCURRENCY'] = '9001'
+
print 'Updating projects from gyp files...'
sys.stdout.flush()
« 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