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

Unified Diff: site_scons/site_tools/chromium_builders.py

Issue 14472: Initial generation of native Visual Studio solution files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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 | « sdch/SConscript ('k') | skia/SConscript » ('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 7290)
+++ site_scons/site_tools/chromium_builders.py (working copy)
@@ -40,5 +40,23 @@
return env.ComponentObject(*args, **kw)
env.AddMethod(ChromeObject)
+ def ChromeMSVSFolder(env, *args, **kw):
+ if env.Bit('msvs'):
+ return env.MSVSFolder(*args, **kw)
+ return []
+ env.AddMethod(ChromeMSVSFolder)
+
+ def ChromeMSVSProject(env, *args, **kw):
+ if env.Bit('msvs'):
+ return env.MSVSProject(*args, **kw)
+ return []
+ env.AddMethod(ChromeMSVSProject)
+
+ def ChromeMSVSSolution(env, *args, **kw):
+ if env.Bit('msvs'):
+ return env.MSVSSolution(*args, **kw)
+ return []
+ env.AddMethod(ChromeMSVSSolution)
+
def exists(env):
return True
« no previous file with comments | « sdch/SConscript ('k') | skia/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698