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

Unified Diff: pylib/gyp/generator/scons.py

Issue 256020: Make scons 'loadable_module' output consistent with make output location... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 11 years, 3 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 | « pylib/gyp/generator/make.py ('k') | test/module/gyptest-default.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/generator/scons.py
===================================================================
--- pylib/gyp/generator/scons.py (revision 673)
+++ pylib/gyp/generator/scons.py (working copy)
@@ -711,7 +711,8 @@
def GypLoadableModule(env, target, source, *args, **kw):
source = compilable_files(env, source)
- result = env.LoadableModule(target, source, *args, **kw)
+ result = env.LoadableModule('$TOP_BUILDDIR/' + str(target), source, *args,
+ **kw)
return result
def GypStaticLibrary(env, target, source, *args, **kw):
« no previous file with comments | « pylib/gyp/generator/make.py ('k') | test/module/gyptest-default.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698