diff options
author | jar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-22 17:24:28 +0000 |
---|---|---|
committer | jar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-22 17:24:28 +0000 |
commit | 108f62e0b5a9b722c89346a192198b1da8e782dd (patch) | |
tree | 070347a1c736b6f832b7ae1d022db68e99bfe498 /net/build | |
parent | b1b945e8f3586a8d08acc9e7d29b4efe99606373 (diff) | |
download | chromium_src-108f62e0b5a9b722c89346a192198b1da8e782dd.zip chromium_src-108f62e0b5a9b722c89346a192198b1da8e782dd.tar.gz chromium_src-108f62e0b5a9b722c89346a192198b1da8e782dd.tar.bz2 |
Experimental integration of delta compression content encoding
The command line option "sdch-enable" enables support of sdch
and automtic lazy download of dictionaries. Optionally it
can select a singular domain to work from.
By default, all domains are enabled when the flag is used.
"-sdch-enable=".google.com" Enables it only for Google.
When the switch is not set on the command line, all this
code is completely disabled.
Still TBD:
a) Finish implementation of security details (much of it is in place)
b) Add tests for security details.
r=huanr,ajenjo,kmixter
Review URL: http://codereview.chromium.org/461
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2443 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/build')
-rw-r--r-- | net/build/net.vcproj | 32 | ||||
-rw-r--r-- | net/build/net_unittests.vcproj | 4 |
2 files changed, 32 insertions, 4 deletions
diff --git a/net/build/net.vcproj b/net/build/net.vcproj index d4e779b..77b21f1 100644 --- a/net/build/net.vcproj +++ b/net/build/net.vcproj @@ -21,7 +21,7 @@ <Configuration Name="Debug|Win32" ConfigurationType="4" - InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops;$(SolutionDir)..\third_party\icu38\build\using_icu.vsprops;$(SolutionDir)..\third_party\zlib\using_zlib.vsprops" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops;$(SolutionDir)..\third_party\icu38\build\using_icu.vsprops;$(SolutionDir)..\third_party\zlib\using_zlib.vsprops;$(SolutionDir)..\sdch\using_sdch.vsprops" > <Tool Name="VCPreBuildEventTool" @@ -78,7 +78,7 @@ <Configuration Name="Release|Win32" ConfigurationType="4" - InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops;$(SolutionDir)..\third_party\icu38\build\using_icu.vsprops;$(SolutionDir)..\third_party\zlib\using_zlib.vsprops" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops;$(SolutionDir)..\third_party\icu38\build\using_icu.vsprops;$(SolutionDir)..\third_party\zlib\using_zlib.vsprops;$(SolutionDir)..\sdch\using_sdch.vsprops" > <Tool Name="VCPreBuildEventTool" @@ -167,6 +167,14 @@ <File RelativePath="..\base\bzip2_filter.cc" > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + AdditionalIncludeDirectories="" + /> + </FileConfiguration> </File> <File RelativePath="..\base\bzip2_filter.h" @@ -357,11 +365,11 @@ > </File> <File - RelativePath="..\base\net_util_win.cc" + RelativePath="..\base\net_util.h" > </File> <File - RelativePath="..\base\net_util.h" + RelativePath="..\base\net_util_win.cc" > </File> <File @@ -405,6 +413,22 @@ > </File> <File + RelativePath="..\base\sdch_filter.cc" + > + </File> + <File + RelativePath="..\base\sdch_filter.h" + > + </File> + <File + RelativePath="..\base\sdch_manager.cc" + > + </File> + <File + RelativePath="..\base\sdch_manager.h" + > + </File> + <File RelativePath="..\base\socket.h" > </File> diff --git a/net/build/net_unittests.vcproj b/net/build/net_unittests.vcproj index 9d0cd3c..479c34b 100644 --- a/net/build/net_unittests.vcproj +++ b/net/build/net_unittests.vcproj @@ -343,6 +343,10 @@ > </File> <File + RelativePath="..\base\sdch_filter_unitest.cc" + > + </File> + <File RelativePath="..\base\ssl_client_socket_unittest.cc" > </File> |