diff options
author | Patrick Scott <phanna@android.com> | 2010-02-04 10:37:17 -0500 |
---|---|---|
committer | Patrick Scott <phanna@android.com> | 2010-02-04 10:39:42 -0500 |
commit | c7f5f8508d98d5952d42ed7648c2a8f30a4da156 (patch) | |
tree | dd51dbfbf6670daa61279b3a19e7b1835b301dbf /googleurl/build | |
parent | 139d8152182f9093f03d9089822b688e49fa7667 (diff) | |
download | external_chromium-c7f5f8508d98d5952d42ed7648c2a8f30a4da156.zip external_chromium-c7f5f8508d98d5952d42ed7648c2a8f30a4da156.tar.gz external_chromium-c7f5f8508d98d5952d42ed7648c2a8f30a4da156.tar.bz2 |
Initial source checkin.
The source files were determined by building net_unittests in chromium's source
tree. Some of the obvious libraries were left out (v8, gmock, gtest).
The Android.mk file has all the sources (minus unittests and tools) that were
used during net_unittests compilation. Nothing builds yet because of STL but
that is the next task. The .cpp files will most likely not compile anyways
because of the LOCAL_CPP_EXTENSION mod. I will have to break this into multiple
projects to get around that limitation.
Diffstat (limited to 'googleurl/build')
-rw-r--r-- | googleurl/build/README.txt | 4 | ||||
-rw-r--r-- | googleurl/build/base.vcproj | 151 | ||||
-rw-r--r-- | googleurl/build/common.vsprops | 22 | ||||
-rw-r--r-- | googleurl/build/debug.vsprops | 18 | ||||
-rw-r--r-- | googleurl/build/googleurl.sln | 32 | ||||
-rw-r--r-- | googleurl/build/googleurl.vcproj | 239 | ||||
-rw-r--r-- | googleurl/build/release.vsprops | 23 |
7 files changed, 489 insertions, 0 deletions
diff --git a/googleurl/build/README.txt b/googleurl/build/README.txt new file mode 100644 index 0000000..eab011a --- /dev/null +++ b/googleurl/build/README.txt @@ -0,0 +1,4 @@ +This directory includes solution and project files for compiling with +Visual Studio 2005 on Windows. + +The base checkout directory must be named 'googleurl'. diff --git a/googleurl/build/base.vcproj b/googleurl/build/base.vcproj new file mode 100644 index 0000000..0e923cf --- /dev/null +++ b/googleurl/build/base.vcproj @@ -0,0 +1,151 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="base" + ProjectGUID="{ACAC8E18-F003-4881-9BA0-C7718AC5FFD5}" + RootNamespace="base" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="4" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops;$(SolutionDir)../third_party/icu/build/using_icu.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="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/icu/build/using_icu.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="VCLibrarianTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <File + RelativePath="..\base\basictypes.h" + > + </File> + <File + RelativePath="..\base\logging.cc" + > + </File> + <File + RelativePath="..\base\logging.h" + > + </File> + <File + RelativePath="..\base\README.txt" + > + </File> + <File + RelativePath="..\base\scoped_ptr.h" + > + </File> + <File + RelativePath="..\base\string16.h" + > + </File> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/googleurl/build/common.vsprops b/googleurl/build/common.vsprops new file mode 100644 index 0000000..ede28e9 --- /dev/null +++ b/googleurl/build/common.vsprops @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioPropertySheet + ProjectType="Visual C++" + Version="8.00" + Name="common" + OutputDirectory="$(SolutionDir)$(ConfigurationName)" + IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\obj\$(ProjectName)" + CharacterSet="1" + > + <Tool + Name="VCCLCompilerTool" + AdditionalIncludeDirectories="$(SolutionDir)..\..;$(SolutionDir).." + PreprocessorDefinitions="_WIN32_WINNT=0x0501;WINVER=0x0501;WIN32;_WINDOWS" + MinimalRebuild="false" + BufferSecurityCheck="true" + EnableFunctionLevelLinking="true" + WarningLevel="3" + WarnAsError="true" + Detect64BitPortabilityProblems="true" + DebugInformationFormat="3" + /> +</VisualStudioPropertySheet> diff --git a/googleurl/build/debug.vsprops b/googleurl/build/debug.vsprops new file mode 100644 index 0000000..d2aa43f --- /dev/null +++ b/googleurl/build/debug.vsprops @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioPropertySheet + ProjectType="Visual C++" + Version="8.00" + Name="debug" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="_DEBUG" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + /> + <Tool + Name="VCLinkerTool" + LinkIncremental="2" + /> +</VisualStudioPropertySheet> diff --git a/googleurl/build/googleurl.sln b/googleurl/build/googleurl.sln new file mode 100644 index 0000000..347810d --- /dev/null +++ b/googleurl/build/googleurl.sln @@ -0,0 +1,32 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "googleurl", "googleurl.vcproj", "{EF5E94AB-B646-4E5B-A058-52EF07B8351C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base.vcproj", "{ACAC8E18-F003-4881-9BA0-C7718AC5FFD5}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D8E84C85-89D3-4B8D-9A3A-C44B63C3383A}" + ProjectSection(SolutionItems) = preProject + ..\LICENSE.txt = ..\LICENSE.txt + ..\README.txt = ..\README.txt + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EF5E94AB-B646-4E5B-A058-52EF07B8351C}.Debug|Win32.ActiveCfg = Debug|Win32 + {EF5E94AB-B646-4E5B-A058-52EF07B8351C}.Debug|Win32.Build.0 = Debug|Win32 + {EF5E94AB-B646-4E5B-A058-52EF07B8351C}.Release|Win32.ActiveCfg = Release|Win32 + {EF5E94AB-B646-4E5B-A058-52EF07B8351C}.Release|Win32.Build.0 = Release|Win32 + {ACAC8E18-F003-4881-9BA0-C7718AC5FFD5}.Debug|Win32.ActiveCfg = Debug|Win32 + {ACAC8E18-F003-4881-9BA0-C7718AC5FFD5}.Debug|Win32.Build.0 = Debug|Win32 + {ACAC8E18-F003-4881-9BA0-C7718AC5FFD5}.Release|Win32.ActiveCfg = Release|Win32 + {ACAC8E18-F003-4881-9BA0-C7718AC5FFD5}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/googleurl/build/googleurl.vcproj b/googleurl/build/googleurl.vcproj new file mode 100644 index 0000000..71b3123 --- /dev/null +++ b/googleurl/build/googleurl.vcproj @@ -0,0 +1,239 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="googleurl" + ProjectGUID="{EF5E94AB-B646-4E5B-A058-52EF07B8351C}" + RootNamespace="googleurl" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="4" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops;$(SolutionDir)../third_party/icu/build/using_icu.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="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/icu/build/using_icu.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="VCLibrarianTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <File + RelativePath="..\src\gurl.cc" + > + </File> + <File + RelativePath="..\src\gurl.h" + > + </File> + <File + RelativePath=".\README.txt" + > + </File> + <File + RelativePath="..\src\url_canon.h" + > + </File> + <File + RelativePath="..\src\url_canon_etc.cc" + > + </File> + <File + RelativePath="..\src\url_canon_fileurl.cc" + > + </File> + <File + RelativePath="..\src\url_canon_host.cc" + > + </File> + <File + RelativePath="..\src\url_canon_icu.cc" + > + </File> + <File + RelativePath="..\src\url_canon_icu.h" + > + </File> + <File + RelativePath="..\src\url_canon_internal.cc" + > + </File> + <File + RelativePath="..\src\url_canon_internal.h" + > + </File> + <File + RelativePath="..\src\url_canon_internal_file.h" + > + </File> + <File + RelativePath="..\src\url_canon_ip.cc" + > + </File> + <File + RelativePath="..\src\url_canon_ip.h" + > + </File> + <File + RelativePath="..\src\url_canon_mailtourl.cc" + > + </File> + <File + RelativePath="..\src\url_canon_path.cc" + > + </File> + <File + RelativePath="..\src\url_canon_pathurl.cc" + > + </File> + <File + RelativePath="..\src\url_canon_query.cc" + > + </File> + <File + RelativePath="..\src\url_canon_relative.cc" + > + </File> + <File + RelativePath="..\src\url_canon_stdstring.h" + > + </File> + <File + RelativePath="..\src\url_canon_stdurl.cc" + > + </File> + <File + RelativePath="..\src\url_file.h" + > + </File> + <File + RelativePath="..\src\url_parse.cc" + > + </File> + <File + RelativePath="..\src\url_parse.h" + > + </File> + <File + RelativePath="..\src\url_parse_file.cc" + > + </File> + <File + RelativePath="..\src\url_parse_internal.h" + > + </File> + <File + RelativePath="..\src\url_util.cc" + > + </File> + <File + RelativePath="..\src\url_util.h" + > + </File> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/googleurl/build/release.vsprops b/googleurl/build/release.vsprops new file mode 100644 index 0000000..2e59356 --- /dev/null +++ b/googleurl/build/release.vsprops @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioPropertySheet + ProjectType="Visual C++" + Version="8.00" + Name="release" + > + <Tool + Name="VCCLCompilerTool" + WholeProgramOptimization="true" + PreprocessorDefinitions="NDEBUG" + /> + <Tool + Name="VCLibrarianTool" + AdditionalOptions="/ltcg" + /> + <Tool + Name="VCLinkerTool" + LinkIncremental="1" + OptimizeReferences="2" + EnableCOMDATFolding="2" + LinkTimeCodeGeneration="1" + /> +</VisualStudioPropertySheet> |