diff options
author | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-26 22:42:52 +0000 |
---|---|---|
committer | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-26 22:42:52 +0000 |
commit | 586acc5fe142f498261f52c66862fa417c3d52d2 (patch) | |
tree | c98b3417a883f2477029c8cd5888f4078681e24e /net/build | |
parent | a814a8d55429605fe6d7045045cd25b6bf624580 (diff) | |
download | chromium_src-586acc5fe142f498261f52c66862fa417c3d52d2.zip chromium_src-586acc5fe142f498261f52c66862fa417c3d52d2.tar.gz chromium_src-586acc5fe142f498261f52c66862fa417c3d52d2.tar.bz2 |
Add net to the repository.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/build')
-rw-r--r-- | net/build/convert_tld_data.rules | 19 | ||||
-rw-r--r-- | net/build/crash_cache.vcproj | 155 | ||||
-rw-r--r-- | net/build/net.vcproj | 895 | ||||
-rw-r--r-- | net/build/net_perftests.vcproj | 175 | ||||
-rw-r--r-- | net/build/net_unittests.vcproj | 382 | ||||
-rw-r--r-- | net/build/precompiled_net.cc | 33 | ||||
-rw-r--r-- | net/build/precompiled_net.h | 50 | ||||
-rw-r--r-- | net/build/stress_cache.vcproj | 155 | ||||
-rw-r--r-- | net/build/tld_cleanup.vcproj | 151 |
9 files changed, 2015 insertions, 0 deletions
diff --git a/net/build/convert_tld_data.rules b/net/build/convert_tld_data.rules new file mode 100644 index 0000000..0331c13 --- /dev/null +++ b/net/build/convert_tld_data.rules @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<VisualStudioToolFile + Name="Convert TLD Data File" + Version="8.00" + > + <Rules> + <CustomBuildRule + Name="Convert TLD Data File" + DisplayName="Convert TLD Data File" + CommandLine=""$(OutDir)\tld_cleanup.exe" "$(InputPath)" "$(IntDir)\$(InputName)_clean.dat"" + Outputs=""$(IntDir)\$(InputName)_clean.dat"" + FileExtensions="*.dat" + ExecutionDescription="Converting TLD data file..." + > + <Properties> + </Properties> + </CustomBuildRule> + </Rules> +</VisualStudioToolFile> diff --git a/net/build/crash_cache.vcproj b/net/build/crash_cache.vcproj new file mode 100644 index 0000000..0a37acf --- /dev/null +++ b/net/build/crash_cache.vcproj @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="crash_cache" + ProjectGUID="{B0EE0599-2913-46A0-A847-A3EC813658D3}" + RootNamespace="crash_cache" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + SubSystem="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + SubSystem="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <File + RelativePath="..\tools\crash_cache\crash_cache.cc" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache_test_util.cc" + > + </File> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/net/build/net.vcproj b/net/build/net.vcproj new file mode 100644 index 0000000..0d670a4 --- /dev/null +++ b/net/build/net.vcproj @@ -0,0 +1,895 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="net" + ProjectGUID="{326E9795-E760-410A-B69A-3F79DB3F5243}" + RootNamespace="net" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + <ToolFile + RelativePath=".\convert_tld_data.rules" + /> + </ToolFiles> + <Configurations> + <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" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="Convert TLD Data File" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + UsePrecompiledHeader="2" + PrecompiledHeaderThrough="precompiled_net.h" + ForcedIncludeFiles="precompiled_net.h" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <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" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="Convert TLD Data File" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="base" + > + <File + RelativePath="..\base\address_list.cc" + > + </File> + <File + RelativePath="..\base\address_list.h" + > + </File> + <File + RelativePath="..\base\auth.h" + > + </File> + <File + RelativePath="..\base\auth_cache.cc" + > + </File> + <File + RelativePath="..\base\auth_cache.h" + > + </File> + <File + RelativePath="..\base\base64.cc" + > + </File> + <File + RelativePath="..\base\base64.h" + > + </File> + <File + RelativePath="..\base\bzip2_filter.cc" + > + </File> + <File + RelativePath="..\base\bzip2_filter.h" + > + </File> + <File + RelativePath="..\base\cert_status_flags.h" + > + </File> + <File + RelativePath="..\base\client_socket.h" + > + </File> + <File + RelativePath="..\base\client_socket_factory.cc" + > + </File> + <File + RelativePath="..\base\client_socket_factory.h" + > + </File> + <File + RelativePath="..\base\completion_callback.h" + > + </File> + <File + RelativePath="..\base\cookie_monster.cc" + > + </File> + <File + RelativePath="..\base\cookie_monster.h" + > + </File> + <File + RelativePath="..\base\cookie_policy.cc" + > + </File> + <File + RelativePath="..\base\cookie_policy.h" + > + </File> + <File + RelativePath="..\base\data_url.cc" + > + </File> + <File + RelativePath="..\base\data_url.h" + > + </File> + <File + RelativePath="..\base\directory_lister.cc" + > + </File> + <File + RelativePath="..\base\directory_lister.h" + > + </File> + <File + RelativePath="..\base\dns_resolution_observer.cc" + > + </File> + <File + RelativePath="..\base\dns_resolution_observer.h" + > + </File> + <File + RelativePath="..\base\effective_tld_names.dat" + > + </File> + <File + RelativePath="..\base\escape.cc" + > + </File> + <File + RelativePath="..\base\escape.h" + > + </File> + <File + RelativePath="..\base\ev_root_ca_metadata.cc" + > + </File> + <File + RelativePath="..\base\ev_root_ca_metadata.h" + > + </File> + <File + RelativePath="..\base\filter.cc" + > + </File> + <File + RelativePath="..\base\filter.h" + > + </File> + <File + RelativePath="..\base\gzip_filter.cc" + > + </File> + <File + RelativePath="..\base\gzip_filter.h" + > + </File> + <File + RelativePath="..\base\gzip_header.cc" + > + </File> + <File + RelativePath="..\base\gzip_header.h" + > + </File> + <File + RelativePath="..\base\host_resolver.cc" + > + </File> + <File + RelativePath="..\base\host_resolver.h" + > + </File> + <File + RelativePath="..\base\listen_socket.cc" + > + </File> + <File + RelativePath="..\base\listen_socket.h" + > + </File> + <File + RelativePath="..\base\load_flags.h" + > + </File> + <File + RelativePath="..\base\mime_sniffer.cc" + > + </File> + <File + RelativePath="..\base\mime_sniffer.h" + > + </File> + <File + RelativePath="..\base\mime_util.cc" + > + </File> + <File + RelativePath="..\base\mime_util.h" + > + </File> + <File + RelativePath="..\base\net_error_list.h" + > + </File> + <File + RelativePath="..\base\net_errors.cc" + > + </File> + <File + RelativePath="..\base\net_errors.h" + > + </File> + <File + RelativePath="..\base\net_module.cc" + > + </File> + <File + RelativePath="..\base\net_module.h" + > + </File> + <File + RelativePath="..\base\net_resources.h" + > + </File> + <File + RelativePath="..\base\net_util.cc" + > + </File> + <File + RelativePath="..\base\net_util.h" + > + </File> + <File + RelativePath=".\precompiled_net.cc" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + UsePrecompiledHeader="1" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + ExcludedFromBuild="true" + > + <Tool + Name="VCCLCompilerTool" + /> + </FileConfiguration> + </File> + <File + RelativePath=".\precompiled_net.h" + > + </File> + <File + RelativePath="..\base\registry_controlled_domain.cc" + > + </File> + <File + RelativePath="..\base\registry_controlled_domain.h" + > + </File> + <File + RelativePath="..\base\socket.h" + > + </File> + <File + RelativePath="..\base\ssl_client_socket.cc" + > + </File> + <File + RelativePath="..\base\ssl_client_socket.h" + > + </File> + <File + RelativePath="..\base\ssl_config_service.cc" + > + </File> + <File + RelativePath="..\base\ssl_config_service.h" + > + </File> + <File + RelativePath="..\base\ssl_info.h" + > + </File> + <File + RelativePath="..\base\tcp_client_socket.cc" + > + </File> + <File + RelativePath="..\base\tcp_client_socket.h" + > + </File> + <File + RelativePath="..\base\telnet_server.cc" + > + </File> + <File + RelativePath="..\base\telnet_server.h" + > + </File> + <File + RelativePath="..\base\upload_data.cc" + > + </File> + <File + RelativePath="..\base\upload_data.h" + > + </File> + <File + RelativePath="..\base\upload_data_stream.cc" + > + </File> + <File + RelativePath="..\base\upload_data_stream.h" + > + </File> + <File + RelativePath="..\base\wininet_util.cc" + > + </File> + <File + RelativePath="..\base\wininet_util.h" + > + </File> + <File + RelativePath="..\base\winsock_init.cc" + > + </File> + <File + RelativePath="..\base\winsock_init.h" + > + </File> + <File + RelativePath="..\base\x509_certificate.cc" + > + </File> + <File + RelativePath="..\base\x509_certificate.h" + > + </File> + </Filter> + <Filter + Name="url_request" + > + <File + RelativePath="..\url_request\mime_sniffer_proxy.cc" + > + </File> + <File + RelativePath="..\url_request\mime_sniffer_proxy.h" + > + </File> + <File + RelativePath="..\url_request\url_request.cc" + > + </File> + <File + RelativePath="..\url_request\url_request.h" + > + </File> + <File + RelativePath="..\url_request\url_request_about_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_about_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_context.h" + > + </File> + <File + RelativePath="..\url_request\url_request_error_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_error_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_file_dir_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_file_dir_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_file_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_file_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_filter.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_filter.h" + > + </File> + <File + RelativePath="..\url_request\url_request_ftp_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_ftp_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_http_cache_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_http_cache_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_inet_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_inet_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_job_manager.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_job_manager.h" + > + </File> + <File + RelativePath="..\url_request\url_request_job_metrics.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_job_metrics.h" + > + </File> + <File + RelativePath="..\url_request\url_request_job_tracker.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_job_tracker.h" + > + </File> + <File + RelativePath="..\url_request\url_request_simple_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_simple_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_status.h" + > + </File> + <File + RelativePath="..\url_request\url_request_test_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_test_job.h" + > + </File> + <File + RelativePath="..\url_request\url_request_view_cache_job.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_view_cache_job.h" + > + </File> + </Filter> + <Filter + Name="http" + > + <File + RelativePath="..\http\cert_status_cache.cc" + > + </File> + <File + RelativePath="..\http\cert_status_cache.h" + > + </File> + <File + RelativePath="..\http\http_atom_list.h" + > + </File> + <File + RelativePath="..\http\http_cache.cc" + > + </File> + <File + RelativePath="..\http\http_cache.h" + > + </File> + <File + RelativePath="..\http\http_chunked_decoder.cc" + > + </File> + <File + RelativePath="..\http\http_chunked_decoder.h" + > + </File> + <File + RelativePath="..\http\http_connection.cc" + > + </File> + <File + RelativePath="..\http\http_connection.h" + > + </File> + <File + RelativePath="..\http\http_connection_manager.cc" + > + </File> + <File + RelativePath="..\http\http_connection_manager.h" + > + </File> + <File + RelativePath="..\http\http_network_layer.cc" + > + </File> + <File + RelativePath="..\http\http_network_layer.h" + > + </File> + <File + RelativePath="..\http\http_network_session.h" + > + </File> + <File + RelativePath="..\http\http_network_transaction.cc" + > + </File> + <File + RelativePath="..\http\http_network_transaction.h" + > + </File> + <File + RelativePath="..\http\http_proxy_resolver_fixed.cc" + > + </File> + <File + RelativePath="..\http\http_proxy_resolver_fixed.h" + > + </File> + <File + RelativePath="..\http\http_proxy_resolver_winhttp.cc" + > + </File> + <File + RelativePath="..\http\http_proxy_resolver_winhttp.h" + > + </File> + <File + RelativePath="..\http\http_proxy_service.cc" + > + </File> + <File + RelativePath="..\http\http_proxy_service.h" + > + </File> + <File + RelativePath="..\http\http_request_info.h" + > + </File> + <File + RelativePath="..\http\http_response_headers.cc" + > + </File> + <File + RelativePath="..\http\http_response_headers.h" + > + </File> + <File + RelativePath="..\http\http_response_info.h" + > + </File> + <File + RelativePath="..\http\http_transaction.h" + > + </File> + <File + RelativePath="..\http\http_transaction_factory.h" + > + </File> + <File + RelativePath="..\http\http_transaction_winhttp.cc" + > + </File> + <File + RelativePath="..\http\http_transaction_winhttp.h" + > + </File> + <File + RelativePath="..\http\http_util.cc" + > + </File> + <File + RelativePath="..\http\http_util.h" + > + </File> + <File + RelativePath="..\http\http_vary_data.cc" + > + </File> + <File + RelativePath="..\http\http_vary_data.h" + > + </File> + <File + RelativePath="..\http\winhttp_request_throttle.cc" + > + </File> + <File + RelativePath="..\http\winhttp_request_throttle.h" + > + </File> + </Filter> + <Filter + Name="disk_cache" + > + <File + RelativePath="..\disk_cache\addr.h" + > + </File> + <File + RelativePath="..\disk_cache\backend_impl.cc" + > + </File> + <File + RelativePath="..\disk_cache\backend_impl.h" + > + </File> + <File + RelativePath="..\disk_cache\block_files.cc" + > + </File> + <File + RelativePath="..\disk_cache\block_files.h" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache.h" + > + </File> + <File + RelativePath="..\disk_cache\disk_format.h" + > + </File> + <File + RelativePath="..\disk_cache\entry_impl.cc" + > + </File> + <File + RelativePath="..\disk_cache\entry_impl.h" + > + </File> + <File + RelativePath="..\disk_cache\errors.h" + > + </File> + <File + RelativePath="..\disk_cache\file.cc" + > + </File> + <File + RelativePath="..\disk_cache\file.h" + > + </File> + <File + RelativePath="..\disk_cache\file_block.h" + > + </File> + <File + RelativePath="..\disk_cache\file_lock.cc" + > + </File> + <File + RelativePath="..\disk_cache\file_lock.h" + > + </File> + <File + RelativePath="..\disk_cache\hash.cc" + > + </File> + <File + RelativePath="..\disk_cache\hash.h" + > + </File> + <File + RelativePath="..\disk_cache\mapped_file.cc" + > + </File> + <File + RelativePath="..\disk_cache\mapped_file.h" + > + </File> + <File + RelativePath="..\disk_cache\mem_backend_impl.cc" + > + </File> + <File + RelativePath="..\disk_cache\mem_backend_impl.h" + > + </File> + <File + RelativePath="..\disk_cache\mem_entry_impl.cc" + > + </File> + <File + RelativePath="..\disk_cache\mem_entry_impl.h" + > + </File> + <File + RelativePath="..\disk_cache\mem_rankings.cc" + > + </File> + <File + RelativePath="..\disk_cache\mem_rankings.h" + > + </File> + <File + RelativePath="..\disk_cache\rankings.cc" + > + </File> + <File + RelativePath="..\disk_cache\rankings.h" + > + </File> + <File + RelativePath="..\disk_cache\stats.cc" + > + </File> + <File + RelativePath="..\disk_cache\stats.h" + > + </File> + <File + RelativePath="..\disk_cache\storage_block-inl.h" + > + </File> + <File + RelativePath="..\disk_cache\storage_block.h" + > + </File> + <File + RelativePath="..\disk_cache\trace.cc" + > + </File> + <File + RelativePath="..\disk_cache\trace.h" + > + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/net/build/net_perftests.vcproj b/net/build/net_perftests.vcproj new file mode 100644 index 0000000..04cf0c9 --- /dev/null +++ b/net/build/net_perftests.vcproj @@ -0,0 +1,175 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="net_perftests" + ProjectGUID="{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}" + RootNamespace="net_perftests" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops;$(SolutionDir)..\testing\using_gtest.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="PERF_TEST" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops;$(SolutionDir)..\testing\using_gtest.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="PERF_TEST" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="support" + > + <File + RelativePath="..\..\base\perftimer.cc" + > + </File> + <File + RelativePath="..\..\base\run_all_perftests.cc" + > + </File> + </Filter> + <Filter + Name="tests" + > + <File + RelativePath="..\base\cookie_monster_perftest.cc" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache_perftest.cc" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache_test_util.cc" + > + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/net/build/net_unittests.vcproj b/net/build/net_unittests.vcproj new file mode 100644 index 0000000..d31226e --- /dev/null +++ b/net/build/net_unittests.vcproj @@ -0,0 +1,382 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="net_unittests" + ProjectGUID="{E99DA267-BE90-4F45-88A1-6919DB2C7567}" + RootNamespace="net_unittests" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops;$(SolutionDir)..\testing\using_gtest.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="UNIT_TEST" + UsePrecompiledHeader="2" + PrecompiledHeaderThrough="precompiled_net.h" + ForcedIncludeFiles="precompiled_net.h" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops;$(SolutionDir)..\testing\using_gtest.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="UNIT_TEST" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="support" + > + <File + RelativePath=".\precompiled_net.cc" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + UsePrecompiledHeader="1" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + ExcludedFromBuild="true" + > + <Tool + Name="VCCLCompilerTool" + /> + </FileConfiguration> + </File> + <File + RelativePath=".\precompiled_net.h" + > + </File> + <File + RelativePath="..\..\base\run_all_unittests.cc" + > + </File> + </Filter> + <Filter + Name="tests" + > + <Filter + Name="disk_cache" + > + <File + RelativePath="..\disk_cache\addr_unittest.cc" + > + </File> + <File + RelativePath="..\disk_cache\backend_unittest.cc" + > + </File> + <File + RelativePath="..\disk_cache\block_files_unittest.cc" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache_test_base.cc" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache_test_base.h" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache_test_util.cc" + > + </File> + <File + RelativePath="..\disk_cache\disk_cache_test_util.h" + > + </File> + <File + RelativePath="..\disk_cache\entry_unittest.cc" + > + </File> + <File + RelativePath="..\disk_cache\mapped_file_unittest.cc" + > + </File> + <File + RelativePath="..\disk_cache\storage_block_unittest.cc" + > + </File> + </Filter> + <Filter + Name="http" + > + <File + RelativePath="..\http\http_cache_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_chunked_decoder_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_connection_manager_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_network_layer_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_network_transaction_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_proxy_service_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_response_headers_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_transaction_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_transaction_unittest.h" + > + </File> + <File + RelativePath="..\http\http_transaction_winhttp_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_util_unittest.cc" + > + </File> + <File + RelativePath="..\http\http_vary_data_unittest.cc" + > + </File> + <File + RelativePath="..\http\winhttp_request_throttle_unittest.cc" + > + </File> + </Filter> + <Filter + Name="base" + > + <File + RelativePath="..\base\auth_cache_unittest.cc" + > + </File> + <File + RelativePath="..\base\base64_unittest.cc" + > + </File> + <File + RelativePath="..\base\bzip2_filter_unittest.cc" + > + </File> + <File + RelativePath="..\base\cookie_monster_unittest.cc" + > + </File> + <File + RelativePath="..\base\cookie_policy_unittest.cc" + > + </File> + <File + RelativePath="..\base\data_url_unittest.cc" + > + </File> + <File + RelativePath="..\base\directory_lister_unittest.cc" + > + </File> + <File + RelativePath="..\base\escape_unittest.cc" + > + </File> + <File + RelativePath="..\base\gzip_filter_unittest.cc" + > + </File> + <File + RelativePath="..\base\listen_socket_unittest.cc" + > + </File> + <File + RelativePath="..\base\listen_socket_unittest.h" + > + </File> + <File + RelativePath="..\base\mime_sniffer_unittest.cc" + > + </File> + <File + RelativePath="..\base\mime_util_unittest.cc" + > + </File> + <File + RelativePath="..\base\net_util_unittest.cc" + > + </File> + <File + RelativePath="..\base\registry_controlled_domain_unittest.cc" + > + </File> + <File + RelativePath="..\base\ssl_client_socket_unittest.cc" + > + </File> + <File + RelativePath="..\base\ssl_config_service_unittest.cc" + > + </File> + <File + RelativePath="..\base\tcp_client_socket_unittest.cc" + > + </File> + <File + RelativePath="..\base\telnet_server_unittest.cc" + > + </File> + <File + RelativePath="..\base\wininet_util_unittest.cc" + > + </File> + </Filter> + <Filter + Name="url_request" + > + <File + RelativePath="..\url_request\url_request_unittest.cc" + > + </File> + <File + RelativePath="..\url_request\url_request_unittest.h" + > + </File> + </Filter> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/net/build/precompiled_net.cc b/net/build/precompiled_net.cc new file mode 100644 index 0000000..733702c --- /dev/null +++ b/net/build/precompiled_net.cc @@ -0,0 +1,33 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Generates the precompiled file. + +#include "precompiled_net.h" + diff --git a/net/build/precompiled_net.h b/net/build/precompiled_net.h new file mode 100644 index 0000000..fa64b8a --- /dev/null +++ b/net/build/precompiled_net.h @@ -0,0 +1,50 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Header used to generate the precompiled file. + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include <windows.h> +#include <wincrypt.h> +#include <winsock2.h> + +#include <algorithm> +#include <hash_map> +#include <hash_set> +#include <list> +#include <set> +#include <string> +#include <vector> + +#include <assert.h> +#include <limits.h> +#include <stddef.h> +#include <string.h> diff --git a/net/build/stress_cache.vcproj b/net/build/stress_cache.vcproj new file mode 100644 index 0000000..590ec5e --- /dev/null +++ b/net/build/stress_cache.vcproj @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="stress_cache" + ProjectGUID="{B491C3A1-DE5F-4843-A1BB-AB8C4337187B}" + RootNamespace="stress_cache" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + SubSystem="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + SubSystem="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <File + RelativePath="..\disk_cache\disk_cache_test_util.cc" + > + </File> + <File + RelativePath="..\disk_cache\stress_cache.cc" + > + </File> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/net/build/tld_cleanup.vcproj b/net/build/tld_cleanup.vcproj new file mode 100644 index 0000000..c628d9a --- /dev/null +++ b/net/build/tld_cleanup.vcproj @@ -0,0 +1,151 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="tld_cleanup" + ProjectGUID="{E13045CD-7E1F-4A41-9B18-8D288B2E7B41}" + RootNamespace="tld_cleanup" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + SubSystem="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + ConfigurationType="1" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + SubSystem="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <File + RelativePath="..\tools\tld_cleanup\tld_cleanup.cc" + > + </File> + </Files> + <Globals> + </Globals> +</VisualStudioProject> |