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

Side by Side Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/Templates/Projects/ConsoleApp/NaClNexe.naclproj

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 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/m sbuild/2003">
2 <PropertyGroup>
3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4 <SchemaVersion>2.0</SchemaVersion>
5 <ProjectGuid>$guid1$</ProjectGuid>
6 <OutputType>Exe</OutputType>
7 <RootNamespace>$safeprojectname$</RootNamespace>
8 <AssemblyName>$safeprojectname$</AssemblyName>
9 <NaClSDKRoot>$(NACL_SDK_ROOT)</NaClSDKRoot>
10 <MainFile>NaClMain.c</MainFile>
11 <INCLUDES>-Ic:\src</INCLUDES>
12 <OPT_FLAGS></OPT_FLAGS>
13 <CFLAGS>-std=gnu99</CFLAGS>
14 <CCFLAGS>-Wall -Wswitch-enum -pthread -DXP_UNIX --pedantic -Werror -g -D_GNU _SOURCE=1 -D__STDC_FORMAT_MACROS=1 -D_BSD_SOURCE=1 -D_POSIX_C_SOURCE=199506 -D_X OPEN_SOURCE=600</CCFLAGS>
15 <CXXFLAGS>-std=gnu++98 -Wno-long-long</CXXFLAGS>
16 <Toolchain>win_x86_newlib</Toolchain>
17 <Lib>$(NaClSDKRoot)\toolchain\$(Toolchain)\lib</Lib>
18 <DebugHost>$(NaClSDKRoot)\toolchain\$(Toolchain)\bin\sel_ldr_x86_64.exe</Deb ugHost>
19 <IrtNexe>$(NaClSDKRoot)\toolchain\$(Toolchain)\runtime\irt_core_x86_64.nexe< /IrtNexe>
20 </PropertyGroup>
21 <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
22 <DebugSymbols>true</DebugSymbols>
23 <OutputPath>bin\Debug\</OutputPath>
24 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
25 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
27 <DebugSymbols>true</DebugSymbols>
28 <OutputPath>bin\Release\</OutputPath>
29 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
30 </PropertyGroup>
31
32 <ItemGroup>
33 <Compile Include="NaClMain.c" />
34 </ItemGroup>
35 <Import Project="$(MSBuildExtensionsPath)\Google\NaCl\1.0\NaCl.Common.targets" />
36 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698