diff options
Diffstat (limited to 'net/net_resources.scons')
-rw-r--r-- | net/net_resources.scons | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net/net_resources.scons b/net/net_resources.scons index 6120e0c..a9d8143 100644 --- a/net/net_resources.scons +++ b/net/net_resources.scons @@ -37,6 +37,28 @@ if env.Bit('windows'): ], ) + 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', + ]) |