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

Unified Diff: net/net_resources.scons

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 | « net/net_perftests.scons ('k') | net/net_sln.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net_resources.scons
===================================================================
--- net/net_resources.scons (revision 7290)
+++ net/net_resources.scons (working copy)
@@ -21,16 +21,18 @@
'tools/tld_cleanup/tld_cleanup.exe'
]
-# TODO: Need to figure out what to do with external resources on linux.
-# This dat file needed by net_resources is generated.
-tld_names_clean = env.Command('net/effective_tld_names_clean.dat',
+if env.Bit('windows'):
+ # TODO(port): Need to figure out what to do with external resources
+ # on linux (and mac?).
+ # This dat file needed by net_resources is generated.
+ tld_names_clean = env.Command('net/effective_tld_names_clean.dat',
input_files,
'${SOURCES[1]} ${SOURCES[0]} $TARGET')
-rc = env.Command('net_resources.rc',
- 'base/net_resources.rc',
- Copy('$TARGET', '$SOURCE'))
+ rc = env.Command('net_resources.rc',
+ 'base/net_resources.rc',
+ Copy('$TARGET', '$SOURCE'))
-env.Depends(rc, tld_names_clean)
+ env.Depends(rc, tld_names_clean)
-env.RES(rc)
+ env.RES(rc)
« no previous file with comments | « net/net_perftests.scons ('k') | net/net_sln.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698