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

Unified Diff: site_scons/site_tools/chromium_builders.py

Issue 60030: Change uses of the SCons Install() builder to 'cp' inside the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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: site_scons/site_tools/chromium_builders.py
===================================================================
--- site_scons/site_tools/chromium_builders.py (revision 12980)
+++ site_scons/site_tools/chromium_builders.py (working copy)
@@ -191,7 +191,7 @@
source = compilable_files(env, source)
if env.get('_GYP'):
prog = env.Program(target, source, *args, **kw)
- result = env.Install('$TOP_BUILDDIR', prog)
+ result = env.ChromeInstall('$TOP_BUILDDIR', prog)
else:
result = env.ComponentProgram(target, source, *args, **kw)
if env.get('INCREMENTAL'):
@@ -202,7 +202,7 @@
source = compilable_files(env, source)
if env.get('_GYP'):
prog = env.Program(target, source, *args, **kw)
- result = env.Install('$TOP_BUILDDIR', prog)
+ result = env.ChromeInstall('$TOP_BUILDDIR', prog)
else:
result = env.ComponentTestProgram(target, source, *args, **kw)
if env.get('INCREMENTAL'):
@@ -213,7 +213,7 @@
source = compilable_files(env, source)
if env.get('_GYP'):
lib = env.Library(target, source, *args, **kw)
- result = env.Install('$LIB_DIR', lib)
+ result = env.ChromeInstall('$LIB_DIR', lib)
else:
result = env.ComponentLibrary(target, source, *args, **kw)
return result
@@ -231,7 +231,7 @@
source = compilable_files(env, source)
if env.get('_GYP'):
lib = env.StaticLibrary(target, source, *args, **kw)
- result = env.Install('$LIB_DIR', lib)
+ result = env.ChromeInstall('$LIB_DIR', lib)
else:
kw['COMPONENT_STATIC'] = True
result = env.ComponentLibrary(target, source, *args, **kw)
@@ -241,7 +241,7 @@
source = compilable_files(env, source)
if env.get('_GYP'):
lib = env.SharedLibrary(target, source, *args, **kw)
- result = env.Install('$LIB_DIR', lib)
+ result = env.ChromeInstall('$LIB_DIR', lib)
else:
kw['COMPONENT_STATIC'] = False
result = [env.ComponentLibrary(target, source, *args, **kw)[0]]
@@ -293,6 +293,18 @@
Alias('msvs', i)
return result
+def ChromeInstall(env, target, source):
+ """
+ Replacement for the stock SCons Install() builder to use the
+ external cp utility instead of Python internals.
+ """
+ result = []
+ copy_action = Action('cp $SOURCE $TARGET', 'Copying $TARGET')
+ for s in source:
+ dest = str(target) + '/' + os.path.split(str(s))[1]
+ result.extend(env.Command(dest, s, copy_action)
+ return result
+
def generate(env):
env.AddMethod(ChromeProgram)
env.AddMethod(ChromeTestProgram)
@@ -304,6 +316,7 @@
env.AddMethod(ChromeMSVSFolder)
env.AddMethod(ChromeMSVSProject)
env.AddMethod(ChromeMSVSSolution)
+ env.AddMethod(ChromeInstall)
env.AddMethod(FilterOut)
« 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