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

Unified Diff: net/net_resources.scons

Issue 17602: Updates to Visual Studio project generation to accomodate... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 11 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 | « net/net_perftests.scons ('k') | net/net_sln.scons » ('j') | skia/SConscript » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net_resources.scons
===================================================================
--- net/net_resources.scons (revision 7854)
+++ net/net_resources.scons (working copy)
@@ -37,6 +37,28 @@
],
)
+ net_resources = []
for g in [g for g in generated if str(g).endswith('.rc')]:
net_res = env.RES(g)
+ net_resources.extend(net_res)
env.Depends(net_res, tld_names_clean)
+
+ p = env.ChromeMSVSProject('build/net_resources.vcproj',
+ dest='$CHROME_SRC_DIR/net/build/net_resources.vcproj',
+ guid='{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}',
+ buildtargets=net_resources,
+ ConfigurationType='10')
+
+ p.AddToolFile('../tools/grit/build/grit_resources.rules')
+
+ p.AddConfig('Debug|Win32',
+ InheritedPropertySheets=[
+ '$(SolutionDir)../build/common.vsprops',
+ '$(SolutionDir)../build/debug.vsprops',
+ ])
+
+ p.AddConfig('Release|Win32',
+ InheritedPropertySheets=[
+ '$(SolutionDir)../build/common.vsprops',
+ '$(SolutionDir)../build/release.vsprops',
+ ])
« no previous file with comments | « net/net_perftests.scons ('k') | net/net_sln.scons » ('j') | skia/SConscript » ('J')

Powered by Google App Engine
This is Rietveld 408576698