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

Unified Diff: site_scons/site_tools/chromium_builders.py

Issue 42667: Remove Hammer files.... (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 | « site_scons/site_tools/atlmfc_vc80.py ('k') | site_scons/site_tools/chromium_load_component.py » ('j') | 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 12583)
+++ site_scons/site_tools/chromium_builders.py (working copy)
@@ -4,7 +4,7 @@
"""
Tool module for adding, to a construction environment, Chromium-specific
-wrappers around Hammer builders. This gives us a central place for any
+wrappers around SCons builders. This gives us a central place for any
customization we need to make to the different things we build.
"""
@@ -13,7 +13,6 @@
from SCons.Script import *
import SCons.Node
-import _Node_MSVS as MSVS
class Null(object):
def __new__(cls, *args, **kwargs):
@@ -29,7 +28,74 @@
def __delattr__(self, name): return self
def __getitem__(self, name): return self
-class ChromeFileList(MSVS.FileList):
+class FileList(object):
+ def __init__(self, entries=None):
+ if isinstance(entries, FileList):
+ entries = entries.entries
+ self.entries = entries or []
+ def __getitem__(self, i):
+ return self.entries[i]
+ def __setitem__(self, i, item):
+ self.entries[i] = item
+ def __delitem__(self, i):
+ del self.entries[i]
+ def __add__(self, other):
+ if isinstance(other, FileList):
+ return self.__class__(self.entries + other.entries)
+ elif isinstance(other, type(self.entries)):
+ return self.__class__(self.entries + other)
+ else:
+ return self.__class__(self.entries + list(other))
+ def __radd__(self, other):
+ if isinstance(other, FileList):
+ return self.__class__(other.entries + self.entries)
+ elif isinstance(other, type(self.entries)):
+ return self.__class__(other + self.entries)
+ else:
+ return self.__class__(list(other) + self.entries)
+ def __iadd__(self, other):
+ if isinstance(other, FileList):
+ self.entries += other.entries
+ elif isinstance(other, type(self.entries)):
+ self.entries += other
+ else:
+ self.entries += list(other)
+ return self
+ def append(self, item):
+ return self.entries.append(item)
+ def extend(self, item):
+ return self.entries.extend(item)
+ def index(self, item, *args):
+ return self.entries.index(item, *args)
+ def remove(self, item):
+ return self.entries.remove(item)
+
+def FileListWalk(top, topdown=True, onerror=None):
+ """
+ """
+ try:
+ entries = top.entries
+ except AttributeError, err:
+ if onerror is not None:
+ onerror(err)
+ return
+
+ dirs, nondirs = [], []
+ for entry in entries:
+ if hasattr(entry, 'entries'):
+ dirs.append(entry)
+ else:
+ nondirs.append(entry)
+
+ if topdown:
+ yield top, dirs, nondirs
+ for entry in dirs:
+ for x in FileListWalk(entry, topdown, onerror):
+ yield x
+ if not topdown:
+ yield top, dirs, nondirs
+
+class ChromeFileList(FileList):
def Append(self, *args):
for element in args:
self.append(element)
@@ -37,14 +103,14 @@
for element in args:
self.extend(element)
def Remove(self, *args):
- for top, lists, nonlists in MSVS.FileListWalk(self, topdown=False):
+ for top, lists, nonlists in FileListWalk(self, topdown=False):
for element in args:
try:
top.remove(element)
except ValueError:
pass
def Replace(self, old, new):
- for top, lists, nonlists in MSVS.FileListWalk(self, topdown=False):
+ for top, lists, nonlists in FileListWalk(self, topdown=False):
try:
i = top.index(old)
except ValueError:
@@ -116,7 +182,7 @@
if not hasattr(sources, 'entries'):
return [x for x in sources if compilable(env, x)]
result = []
- for top, folders, nonfolders in MSVS.FileListWalk(sources):
+ for top, folders, nonfolders in FileListWalk(sources):
result.extend([x for x in nonfolders if compilable(env, x)])
return result
@@ -189,43 +255,6 @@
result = env.ComponentObject(*args, **kw)
return result
-def ChromeMSVSFolder(env, *args, **kw):
- if not env.Bit('msvs'):
- return Null()
- return env.MSVSFolder(*args, **kw)
-
-def ChromeMSVSProject(env, *args, **kw):
- if not env.Bit('msvs'):
- return Null()
- try:
- dest = kw['dest']
- except KeyError:
- dest = None
- else:
- del kw['dest']
- result = env.MSVSProject(*args, **kw)
- env.AlwaysBuild(result)
- if dest:
- i = env.Command(dest, result, Copy('$TARGET', '$SOURCE'))
- Alias('msvs', i)
- return result
-
-def ChromeMSVSSolution(env, *args, **kw):
- if not env.Bit('msvs'):
- return Null()
- try:
- dest = kw['dest']
- except KeyError:
- dest = None
- else:
- del kw['dest']
- result = env.MSVSSolution(*args, **kw)
- env.AlwaysBuild(result)
- if dest:
- i = env.Command(dest, result, Copy('$TARGET', '$SOURCE'))
- Alias('msvs', i)
- return result
-
def generate(env):
env.AddMethod(ChromeProgram)
env.AddMethod(ChromeTestProgram)
@@ -234,9 +263,6 @@
env.AddMethod(ChromeStaticLibrary)
env.AddMethod(ChromeSharedLibrary)
env.AddMethod(ChromeObject)
- env.AddMethod(ChromeMSVSFolder)
- env.AddMethod(ChromeMSVSProject)
- env.AddMethod(ChromeMSVSSolution)
env.AddMethod(FilterOut)
« no previous file with comments | « site_scons/site_tools/atlmfc_vc80.py ('k') | site_scons/site_tools/chromium_load_component.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698