diff options
Diffstat (limited to 'media/media_player.scons')
-rw-r--r-- | media/media_player.scons | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/media/media_player.scons b/media/media_player.scons new file mode 100644 index 0000000..87513c6 --- /dev/null +++ b/media/media_player.scons @@ -0,0 +1,62 @@ +# 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. + +__doc__ = """ +Configuration for building media_player. +""" + +Import('env') + +env = env.Clone() + +input_files = ChromeFileList([ + # TODO(sgk): violate standard indentation so we don't have to + # reindent too much when we remove the explicit MSVSFilter() calls + # in favor of generating the hierarchy to reflect the file system. + MSVSFilter('player', [ + 'player/player.cc', + ]), +]) + +p = env.ChromeMSVSProject('build/media_player.vcproj', + dest=('$CHROME_SRC_DIR/media/' + + 'build/media_player.vcproj'), + guid='{D4EB0EDC-DC4D-11DD-AE66-DC4F55D89593}', + keyword='Win32Proj', + # TODO(sgk): when we can intuit the hierarchy + # from the built targets. + #buildtargets=TODO, + files=input_files, + tools=[ + 'VCPreBuildEventTool', + 'VCCustomBuildTool', + 'VCXMLDataGeneratorTool', + 'VCWebServiceProxyGeneratorTool', + 'VCMIDLTool', + 'VCCLCompilerTool', + 'VCManagedResourceCompilerTool', + 'VCResourceCompilerTool', + 'VCPreLinkEventTool', + 'VCLinkerTool', + 'VCALinkTool', + 'VCManifestTool', + 'VCXDCMakeTool', + 'VCBscMakeTool', + 'VCFxCopTool', + 'VCAppVerifierTool', + 'VCWebDeploymentTool', + 'VCPostBuildEventTool', + ], + ConfigurationType='1') + + +p.AddConfig('Debug|Win32', + InheritedPropertySheets=[ + '$(SolutionDir)../build/debug.vsprops', + ]) + +p.AddConfig('Release|Win32', + InheritedPropertySheets=[ + '$(SolutionDir)../build/release.vsprops', + ]) |