Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|Win32">
5 <Configuration>Debug</Configuration>
6 <Platform>Win32</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Debug|x64">
9 <Configuration>Debug</Configuration>
10 <Platform>x64</Platform>
11 </ProjectConfiguration>
12 <ProjectConfiguration Include="Release|Win32">
13 <Configuration>Release</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
16 <ProjectConfiguration Include="Release|x64">
17 <Configuration>Release</Configuration>
18 <Platform>x64</Platform>
19 </ProjectConfiguration>
20 </ItemGroup>
21 <PropertyGroup Label="Globals">
22 <ProjectGuid>{FBE32DF3-0FB0-4F2F-A424-2C21BD7BC325}</ProjectGuid>
23 <RootNamespace>preprocessor</RootNamespace>
24 <Keyword>Win32Proj</Keyword>
25 </PropertyGroup>
26 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
28 <ConfigurationType>StaticLibrary</ConfigurationType>
29 <CharacterSet>Unicode</CharacterSet>
30 <WholeProgramOptimization>true</WholeProgramOptimization>
31 </PropertyGroup>
32 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
33 <ConfigurationType>StaticLibrary</ConfigurationType>
34 <CharacterSet>Unicode</CharacterSet>
35 </PropertyGroup>
36 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
37 <ConfigurationType>StaticLibrary</ConfigurationType>
38 <CharacterSet>Unicode</CharacterSet>
39 <WholeProgramOptimization>true</WholeProgramOptimization>
40 </PropertyGroup>
41 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
42 <ConfigurationType>StaticLibrary</ConfigurationType>
43 <CharacterSet>Unicode</CharacterSet>
44 </PropertyGroup>
45 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
46 <ImportGroup Label="ExtensionSettings">
47 </ImportGroup>
48 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
49 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
50 </ImportGroup>
51 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
52 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
53 </ImportGroup>
54 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
55 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56 </ImportGroup>
57 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
59 </ImportGroup>
60 <PropertyGroup Label="UserMacros" />
61 <PropertyGroup>
62 <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
63 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
64 <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
65 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
66 <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\</IntDir>
67 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
68 <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
69 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
70 <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\</IntDir>
71 </PropertyGroup>
72 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
73 <ClCompile>
74 <Optimization>Disabled</Optimization>
75 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
76 <MinimalRebuild>true</MinimalRebuild>
77 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
78 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
79 <PrecompiledHeader>
80 </PrecompiledHeader>
81 <WarningLevel>Level4</WarningLevel>
82 <TreatWarningAsError>true</TreatWarningAsError>
83 <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
84 <DisableSpecificWarnings>4100;4127;4189;4239;4244;4245;4512;4702;4267;%(DisableSpecificWarnings)</DisableSpecificWarnings>
85 </ClCompile>
86 </ItemDefinitionGroup>
87 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
88 <Midl>
89 <TargetEnvironment>X64</TargetEnvironment>
90 </Midl>
91 <ClCompile>
92 <Optimization>Disabled</Optimization>
93 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
94 <MinimalRebuild>true</MinimalRebuild>
95 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
96 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
97 <PrecompiledHeader>
98 </PrecompiledHeader>
99 <WarningLevel>Level4</WarningLevel>
100 <TreatWarningAsError>true</TreatWarningAsError>
101 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
102 <DisableSpecificWarnings>4100;4127;4189;4239;4244;4245;4512;4702;4718;4267;%(DisableSpecificWarnings)</DisableSpecificWarnings>
103 </ClCompile>
104 </ItemDefinitionGroup>
105 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
106 <ClCompile>
107 <Optimization>MaxSpeed</Optimization>
108 <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
109 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;_SECURE_SCL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
110 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
111 <PrecompiledHeader>
112 </PrecompiledHeader>
113 <WarningLevel>Level4</WarningLevel>
114 <TreatWarningAsError>true</TreatWarningAsError>
115 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
116 <DisableSpecificWarnings>4100;4127;4189;4239;4244;4245;4512;4702;4718;4267;%(DisableSpecificWarnings)</DisableSpecificWarnings>
117 </ClCompile>
118 </ItemDefinitionGroup>
119 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
120 <Midl>
121 <TargetEnvironment>X64</TargetEnvironment>
122 </Midl>
123 <ClCompile>
124 <Optimization>MaxSpeed</Optimization>
125 <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
126 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;_SECURE_SCL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
127 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
128 <PrecompiledHeader>
129 </PrecompiledHeader>
130 <WarningLevel>Level4</WarningLevel>
131 <TreatWarningAsError>true</TreatWarningAsError>
132 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
133 <DisableSpecificWarnings>4100;4127;4189;4239;4244;4245;4512;4702;4718;4267;%(DisableSpecificWarnings)</DisableSpecificWarnings>
134 </ClCompile>
135 </ItemDefinitionGroup>
136 <ItemGroup>
137 <ClCompile Include="DiagnosticsBase.cpp" />
138 <ClCompile Include="DirectiveHandlerBase.cpp" />
139 <ClCompile Include="DirectiveParser.cpp" />
140 <ClCompile Include="ExpressionParser.cpp" />
141 <ClCompile Include="Input.cpp" />
142 <ClCompile Include="Lexer.cpp" />
143 <ClCompile Include="Macro.cpp" />
144 <ClCompile Include="MacroExpander.cpp" />
145 <ClCompile Include="Preprocessor.cpp" />
146 <ClCompile Include="Token.cpp" />
147 <ClCompile Include="Tokenizer.cpp" />
148 </ItemGroup>
149 <ItemGroup>
150 <ClInclude Include="length_limits.h" />
151 <ClInclude Include="DiagnosticsBase.h" />
152 <ClInclude Include="DirectiveHandlerBase.h" />
153 <ClInclude Include="DirectiveParser.h" />
154 <ClInclude Include="ExpressionParser.h" />
155 <ClInclude Include="Input.h" />
156 <ClInclude Include="Lexer.h" />
157 <ClInclude Include="Macro.h" />
158 <ClInclude Include="MacroExpander.h" />
159 <ClInclude Include="numeric_lex.h" />
160 <ClInclude Include="pp_utils.h" />
161 <ClInclude Include="Preprocessor.h" />
162 <ClInclude Include="SourceLocation.h" />
163 <ClInclude Include="Token.h" />
164 <ClInclude Include="Tokenizer.h" />
165 </ItemGroup>
166 <ItemGroup>
167 <None Include="Tokenizer.l" />
168 </ItemGroup>
169 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
170 <ImportGroup Label="ExtensionTargets">
171 </ImportGroup>
172 </Project>