Commit 2f82fb8b authored by sgk@google.com's avatar sgk@google.com

For rlz, delete checked-in Visual Studio, SCons and supporting build files.

svn:ignore the new gyp-generated files.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/115867

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17085 0039d316-1c4b-4281-b951-d872f2087c98
parent 0abf4673
# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
Import('env')
input_files = ChromeFileList([
'binaries/rlz.dll',
'binaries/rlz_dll.pdb',
])
# TODO(sgk): derive from above ChromeFileList object.
env.Install('$TARGET_ROOT',
['binaries/rlz.dll',
'binaries/rlz_dll.pdb'])
p = env.ChromeMSVSProject('rlz.vcproj',
dest='$CHROME_SRC_DIR/rlz/rlz.vcproj',
guid='{BF4F447B-72B5-4059-BE1B-F94337B1F385}',
keyword='Win32Proj',
# TODO(sgk): when we can intuit the hierarchy
# from the built targets.
#buildtargets=TODO,
files=input_files,
tools=[
'VCPreBuildEventTool',
'Output RLZ copy',
'VCCustomBuildTool',
'VCMIDLTool',
'VCPostBuildEventTool',
],
ConfigurationType='10')
# TODO(sgk): remove once SCons drives build
p.AddToolFile('./output_rlz_copy.rules')
p.AddConfig('Debug|Win32',
InheritedPropertySheets=[
'$(SolutionDir)../build/debug.vsprops',
])
p.AddConfig('Release|Win32',
InheritedPropertySheets=[
'$(SolutionDir)../build/release.vsprops',
])
:: Batch file run to copy rlz binaries
@echo off
setlocal
set InputPath=%~1
set OutDir=%~2
if exist "%InputPath%" xcopy /R /C /Y "%InputPath%" "%OutDir%"
<?xml version="1.0" encoding="utf-8"?>
<VisualStudioToolFile
Name="Output RLZ copy"
Version="8.00"
>
<Rules>
<CustomBuildRule
Name="Output RLZ copy"
DisplayName="Output RLZ copy"
CommandLine="$(SolutionDir)..\rlz\copy_files.bat &quot;$(InputPath)&quot; &quot;$(OutDir)&quot;"
Outputs="$(OutDir)\$(InputFileName)"
FileExtensions="*.dll;*.pdb"
ExecutionDescription="Executing tool..."
>
<Properties>
</Properties>
</CustomBuildRule>
</Rules>
</VisualStudioToolFile>
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="rlz"
ProjectGUID="{BF4F447B-72B5-4059-BE1B-F94337B1F385}"
RootNamespace="rlz"
Keyword="Win32Proj"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>
<ToolFiles>
<ToolFile
RelativePath="output_rlz_copy.rules"
/>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|Win32"
ConfigurationType="10"
InheritedPropertySheets="$(SolutionDir)..\build\debug.vsprops"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="Output RLZ copy"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|Win32"
ConfigurationType="10"
InheritedPropertySheets="$(SolutionDir)..\build\release.vsprops"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="Output RLZ copy"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<File
RelativePath="binaries\rlz.dll"
>
</File>
<File
RelativePath="binaries\rlz_dll.pdb"
>
</File>
</Files>
<Globals>
</Globals>
</VisualStudioProject>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment