summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorbratell@opera.com <bratell@opera.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-16 21:52:49 +0000
committerbratell@opera.com <bratell@opera.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-16 21:52:49 +0000
commitdd0ef2ff9d1c8e8002bd34483186c48aeec67de0 (patch)
tree64fb390d345ca90cfedffdb85480ee9fc6ecc0b5 /content
parentf0469511a47aeb119f2d7bf45d49d5eb836333ce (diff)
downloadchromium_src-dd0ef2ff9d1c8e8002bd34483186c48aeec67de0.zip
chromium_src-dd0ef2ff9d1c8e8002bd34483186c48aeec67de0.tar.gz
chromium_src-dd0ef2ff9d1c8e8002bd34483186c48aeec67de0.tar.bz2
gyp performance: don't invoke python to check dir existance
We spend a few tenths of a second every gyp invocation starting the dir_exists.py program. Seems a bit unnecessary. BUG=362075 R=scottmg@chromium.org Review URL: https://codereview.chromium.org/234963003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264316 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/content.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/content.gyp b/content/content.gyp
index d4cacf7..5cc8747 100644
--- a/content/content.gyp
+++ b/content/content.gyp
@@ -6,7 +6,7 @@
'variables': {
'chromium_code': 1, # Use higher warning level.
'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 engine.
- 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/directxsdk)',
+ 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)',
},
'target_defaults': {
'defines': ['CONTENT_IMPLEMENTATION'],