Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: obsolete/gdb-utils/src/elf_reader/elf_reader.vcproj

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="Windows-1252"?>
2 <VisualStudioProject
3 ProjectType="Visual C++"
4 Version="9.00"
5 Name="elf_reader"
6 ProjectGUID="{EAB8217E-1E42-4D32-9DC4-AF5B6865F8E0}"
7 RootNamespace="elf_reader"
8 Keyword="Win32Proj"
9 TargetFrameworkVersion="196613"
10 >
11 <Platforms>
12 <Platform
13 Name="Win32"
14 />
15 </Platforms>
16 <ToolFiles>
17 </ToolFiles>
18 <Configurations>
19 <Configuration
20 Name="Debug|Win32"
21 OutputDirectory="$(SolutionDir)$(ConfigurationName)"
22 IntermediateDirectory="$(ConfigurationName)"
23 ConfigurationType="4"
24 CharacterSet="1"
25 >
26 <Tool
27 Name="VCPreBuildEventTool"
28 />
29 <Tool
30 Name="VCCustomBuildTool"
31 />
32 <Tool
33 Name="VCXMLDataGeneratorTool"
34 />
35 <Tool
36 Name="VCWebServiceProxyGeneratorTool"
37 />
38 <Tool
39 Name="VCMIDLTool"
40 />
41 <Tool
42 Name="VCCLCompilerTool"
43 Optimization="0"
44 AdditionalIncludeDirectories=".."
45 PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
46 MinimalRebuild="true"
47 BasicRuntimeChecks="3"
48 RuntimeLibrary="3"
49 UsePrecompiledHeader="0"
50 WarningLevel="4"
51 Detect64BitPortabilityProblems="true"
52 DebugInformationFormat="4"
53 DisableSpecificWarnings="4996"
54 />
55 <Tool
56 Name="VCManagedResourceCompilerTool"
57 />
58 <Tool
59 Name="VCResourceCompilerTool"
60 />
61 <Tool
62 Name="VCPreLinkEventTool"
63 />
64 <Tool
65 Name="VCLibrarianTool"
66 />
67 <Tool
68 Name="VCALinkTool"
69 />
70 <Tool
71 Name="VCXDCMakeTool"
72 />
73 <Tool
74 Name="VCBscMakeTool"
75 />
76 <Tool
77 Name="VCFxCopTool"
78 />
79 <Tool
80 Name="VCPostBuildEventTool"
81 />
82 </Configuration>
83 <Configuration
84 Name="Release|Win32"
85 OutputDirectory="$(SolutionDir)$(ConfigurationName)"
86 IntermediateDirectory="$(ConfigurationName)"
87 ConfigurationType="4"
88 CharacterSet="1"
89 WholeProgramOptimization="1"
90 >
91 <Tool
92 Name="VCPreBuildEventTool"
93 />
94 <Tool
95 Name="VCCustomBuildTool"
96 />
97 <Tool
98 Name="VCXMLDataGeneratorTool"
99 />
100 <Tool
101 Name="VCWebServiceProxyGeneratorTool"
102 />
103 <Tool
104 Name="VCMIDLTool"
105 />
106 <Tool
107 Name="VCCLCompilerTool"
108 Optimization="2"
109 EnableIntrinsicFunctions="true"
110 AdditionalIncludeDirectories=".."
111 PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
112 RuntimeLibrary="2"
113 EnableFunctionLevelLinking="true"
114 UsePrecompiledHeader="0"
115 WarningLevel="3"
116 DebugInformationFormat="3"
117 />
118 <Tool
119 Name="VCManagedResourceCompilerTool"
120 />
121 <Tool
122 Name="VCResourceCompilerTool"
123 />
124 <Tool
125 Name="VCPreLinkEventTool"
126 />
127 <Tool
128 Name="VCLibrarianTool"
129 />
130 <Tool
131 Name="VCALinkTool"
132 />
133 <Tool
134 Name="VCXDCMakeTool"
135 />
136 <Tool
137 Name="VCBscMakeTool"
138 />
139 <Tool
140 Name="VCFxCopTool"
141 />
142 <Tool
143 Name="VCPostBuildEventTool"
144 />
145 </Configuration>
146 </Configurations>
147 <References>
148 </References>
149 <Files>
150 <Filter
151 Name="Source Files"
152 Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
153 UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF} "
154 >
155 <File
156 RelativePath=".\elf_object.cc"
157 >
158 </File>
159 </Filter>
160 <Filter
161 Name="Header Files"
162 Filter="h;hpp;hxx;hm;inl;inc;xsd"
163 UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB} "
164 >
165 <File
166 RelativePath=".\elf_object.h"
167 >
168 </File>
169 <File
170 RelativePath=".\elf_reader.h"
171 >
172 </File>
173 <File
174 RelativePath=".\elf_structs.h"
175 >
176 </File>
177 <File
178 RelativePath="..\common\types.h"
179 >
180 </File>
181 </Filter>
182 <Filter
183 Name="Resource Files"
184 Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg; jpe;resx;tiff;tif;png;wav"
185 UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01} "
186 >
187 </Filter>
188 <File
189 RelativePath=".\ReadMe.txt"
190 >
191 </File>
192 </Files>
193 <Globals>
194 </Globals>
195 </VisualStudioProject>
OLDNEW
« no previous file with comments | « obsolete/gdb-utils/src/elf_reader/elf_reader.h ('k') | obsolete/gdb-utils/src/elf_reader/elf_reader.h.orig » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698