diff options
author | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-02 19:57:37 +0000 |
---|---|---|
committer | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-02 19:57:37 +0000 |
commit | b4ed8dd5ed1728b961e3840a74c21c66d1a9b3c8 (patch) | |
tree | 9c790d7b4553fad6e91f68916c10ac1a588778d1 /gears/SConscript.inputs | |
parent | 985aadb7da9e96436c4815e6789bae6daf2abdc3 (diff) | |
download | chromium_src-b4ed8dd5ed1728b961e3840a74c21c66d1a9b3c8.zip chromium_src-b4ed8dd5ed1728b961e3840a74c21c66d1a9b3c8.tar.gz chromium_src-b4ed8dd5ed1728b961e3840a74c21c66d1a9b3c8.tar.bz2 |
Add crash_sender and crash_inspector to Safari gears-scons build.
Review URL: http://codereview.chromium.org/13037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6235 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gears/SConscript.inputs')
-rwxr-xr-x | gears/SConscript.inputs | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/gears/SConscript.inputs b/gears/SConscript.inputs index 510856e..12f914d 100755 --- a/gears/SConscript.inputs +++ b/gears/SConscript.inputs @@ -31,7 +31,19 @@ if env['OS'] == 'win32': '$THIRD_PARTY_DIR/breakpad/src/common/windows/http_upload.cc', ]) elif env['OS'] == 'osx': - print 'TODO: crash_sender' + env.Append(CRASH_SENDER_CPPSRCS = [ + '$OPEN_DIR/base/common/exception_handler_osx/nshost_macaddress.m', + '$OPEN_DIR/crash_sender/crash_sender_osx.m', + '$THIRD_PARTY_DIR/breakpad/src/common/mac/HTTPMultipartUpload.m', + ]) + + env.Append(OSX_CRASH_INSPECTOR_CPPSRCS = [ + '$THIRD_PARTY_DIR/breakpad_osx/src/common/convert_UTF.c', + '$OPEN_DIR/base/common/exception_handler_osx/inspector.mm', + '$OPEN_DIR/base/common/exception_handler_osx/mach_ipc.mm', + '$OPEN_DIR/base/common/exception_handler_osx/on_demand_server.mm', + '$OPEN_DIR/base/common/exception_handler_osx/simple_string_dictionary.mm', + ]) #----------------------------------------------------------------------------- # ipc_test @@ -155,12 +167,13 @@ if env['OS'] == 'win32': #----------------------------------------------------------------------------- # third_party/breakpad_osx + env.Append(SF_CPPSRCS = [ - '$OPEN_DIR/base/common/exception_handler_osx.mm', - '$OPEN_DIR/base/common/exception_handler_osx/google_breakpad.mm', - '$OPEN_DIR/base/common/exception_handler_osx/mach_ipc.mm', - '$OPEN_DIR/base/common/exception_handler_osx/on_demand_server.mm', - '$OPEN_DIR/base/common/exception_handler_osx/simple_string_dictionary.mm' + '$OPEN_DIR/base/common/exception_handler_osx.mm', + '$OPEN_DIR/base/common/exception_handler_osx/google_breakpad.mm', + '$OPEN_DIR/base/common/exception_handler_osx/mach_ipc.mm', + '$OPEN_DIR/base/common/exception_handler_osx/on_demand_server.mm', + '$OPEN_DIR/base/common/exception_handler_osx/simple_string_dictionary.mm' ]) #----------------------------------------------------------------------------- |