summaryrefslogtreecommitdiffstats
path: root/net/SConscript
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-22 05:10:59 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-22 05:10:59 +0000
commita7e79591fd7db823cd278ff43616ba4a22108213 (patch)
tree512e2f2a282595c51cfa3bb48e0de9d2d5a46251 /net/SConscript
parent1ea9aac8836d5532c8d9ef5cf57f3653f0af1347 (diff)
downloadchromium_src-a7e79591fd7db823cd278ff43616ba4a22108213.zip
chromium_src-a7e79591fd7db823cd278ff43616ba4a22108213.tar.gz
chromium_src-a7e79591fd7db823cd278ff43616ba4a22108213.tar.bz2
Move FileURLToFilePath into platform specific files. Most of the logic in this function is specific to windows' file system.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1211 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/SConscript')
-rw-r--r--net/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/SConscript b/net/SConscript
index 932e25d..1303f8a 100644
--- a/net/SConscript
+++ b/net/SConscript
@@ -140,6 +140,7 @@ if env['PLATFORM'] == 'win32':
],
)
input_files.extend([
+ 'base/net_util_win.cc',
'base/platform_mime_util_win.cc',
'disk_cache/cache_util_win.cc',
'disk_cache/file_win.cc',
@@ -154,6 +155,7 @@ if env['PLATFORM'] == 'darwin':
if env['PLATFORM'] in ('darwin', 'posix'):
input_files.extend([
+ 'base/net_util_posix.cc',
# TODO(tc): gnome-vfs? xdgmime? /etc/mime.types?
#'base/platform_mime_util_linux.cc,
'disk_cache/cache_util_posix.cc',
@@ -189,7 +191,6 @@ env_tests.Prepend(
'base',
'googleurl',
'gtest',
- 'net', # Likewise, net must come before modp_b64 and icuuc.
'icuuc',
'modp_b64',
'zlib',