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

Unified Diff: build/common.gypi

Issue 235083003: gyp performance: Add a DoMain version of build/compiler_version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compiler_version: Rebased to newer master Created 6 years, 8 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 | build/compiler_version.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index e9849e555acc8e7d657b07c0b4c8afc2cd2adf7b..23fb802af5c94cfc2bad7ef63b4115a3e05ad96b 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1372,7 +1372,7 @@
# TODO(glider): set clang to 1 earlier for ASan and TSan builds so
# that it takes effect here.
['clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0', {
- 'binutils_version%': '<!(python <(DEPTH)/build/compiler_version.py assembler)',
+ 'binutils_version%': '<!pymod_do_main(compiler_version assembler)',
}],
# On Android we know the binutils version in the toolchain.
['OS=="android"', {
@@ -1409,7 +1409,7 @@
}],
],
}, {
- 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
+ 'gcc_version%': '<!pymod_do_main(compiler_version)',
}],
],
}, {
« no previous file with comments | « no previous file | build/compiler_version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698