| 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',
|
| + ])
|
|
|