diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-26 18:55:01 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-26 18:55:01 +0000 |
commit | 403cf73262903bfc643c5ce21b68179a789aa60d (patch) | |
tree | 22550c938688f0267896aa112134566222d3e7d3 /breakpad/SConscript | |
parent | debd60bc6c9830c5c3d221e951b395ff4183bf41 (diff) | |
download | chromium_src-403cf73262903bfc643c5ce21b68179a789aa60d.zip chromium_src-403cf73262903bfc643c5ce21b68179a789aa60d.tar.gz chromium_src-403cf73262903bfc643c5ce21b68179a789aa60d.tar.bz2 |
Generate additional .vcproj files in miscellaneous top-level components.
This also updates the .vcproj files themselves to fix minor stylistic
incompatibilities with the rest. Affected .vcproj files:
* No change (byte-for-byte identical):
media\build\media.vcproj
media\build\media_player.vcproj
media\build\media_unittests.vcproj
google_update\ondemand_updates.vcproj
* Remove .\ prefix where inconsistent with the rest of a filelist:
rlz\rlz.vcproj
breakpad\breakpad_handler.vcproj
* Add empty <ToolFiles>, <References> and <Globals> sections:
breakpad\breakpad_sender.vcproj
* Add explicit RootNamespace attribute:
sdch\sdch.vcproj
* Use Windows-canonical \ separators:
sdch\sdch.vcproj
* Remove unnecessary Filter and UniqueIdentifier attributes from
<Filter> declarations:
sdch\sdch.vcproj
Additional cleanups along for the ride:
* Split breakpad\SConscript logic into separate
breakpad_{handler,sender}.scons files.
* Add a media\media_player.scons configuration.
Review URL: http://codereview.chromium.org/18717
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8644 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad/SConscript')
-rw-r--r-- | breakpad/SConscript | 57 |
1 files changed, 9 insertions, 48 deletions
diff --git a/breakpad/SConscript b/breakpad/SConscript index fe2ca9f..c68fc8a 100644 --- a/breakpad/SConscript +++ b/breakpad/SConscript @@ -2,54 +2,15 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -Import('env') - -env = env.Clone() - -env.Prepend( - CPPPATH = [ - 'src', - '$CHROME_SRC_DIR', - ], -) - -if env.Bit('windows'): - env.Append( - CCFLAGS = [ - '/TP', - '/wd4800', - ], - ) - - sender_input_files = [ - 'src/client/windows/sender/crash_report_sender.cc', - 'src/common/windows/http_upload.cc', - ] +__doc__ = """ +Master configuration for building breakpad libraries. +""" - env.ChromeLibrary('breakpad_sender', sender_input_files) - -env.ChromeMSVSProject('$BREAKPAD_DIR/breakpad_sender.vcproj', - guid='{9946A048-043B-4F8F-9E07-9297B204714C}') - -if env.Bit('windows'): - handler_input_files = [ - 'src/client/windows/crash_generation/client_info.cc', - 'src/client/windows/crash_generation/minidump_generator.cc', - 'src/common/windows/guid_string.cc', - 'src/client/windows/handler/exception_handler.cc', - 'src/client/windows/crash_generation/crash_generation_server.cc', - 'src/client/windows/crash_generation/crash_generation_client.cc', - ] -elif env.Bit('linux'): - handler_input_files = [ - 'src/common/linux/guid_creator.cc', - 'src/client/linux/handler/exception_handler.cc', - 'src/client/linux/handler/minidump_generator.cc', - 'src/client/linux/handler/linux_thread.cc', - ] - -env.ChromeLibrary('breakpad_handler', handler_input_files) +Import('env') -env.ChromeMSVSProject('$BREAKPAD_DIR/breakpad_handler.vcproj', - guid='{B55CA863-B374-4BAF-95AC-539E4FA4C90C}') +sconscript_files = [ + 'breakpad_handler.scons', + 'breakpad_sender.scons', +] +SConscript(sconscript_files, exports=['env']) |