diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-04 06:34:07 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-04 06:34:07 +0000 |
commit | ee0b7af74dd323f193013c427309d1a22210e580 (patch) | |
tree | 04aac6c19ad901615da963731ef37272d62a78a0 /chrome/chrome_dll.gypi | |
parent | bc069bc0c5602c7c8e021072cec2d103d7113fcf (diff) | |
download | chromium_src-ee0b7af74dd323f193013c427309d1a22210e580.zip chromium_src-ee0b7af74dd323f193013c427309d1a22210e580.tar.gz chromium_src-ee0b7af74dd323f193013c427309d1a22210e580.tar.bz2 |
Add a BreakpadClient which an embedder of the breakpad component has to provide
As a first step, I added a method for returning the default crash dump location
and use this on all three platforms.
BUG=247431
R=thestig@chromium.org,joi@chromium.org
Review URL: https://chromiumcodereview.appspot.com/18341002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_dll.gypi')
-rw-r--r-- | chrome/chrome_dll.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/chrome_dll.gypi b/chrome/chrome_dll.gypi index fc11338..2510ec6 100644 --- a/chrome/chrome_dll.gypi +++ b/chrome/chrome_dll.gypi @@ -283,14 +283,20 @@ ['mac_breakpad_compiled_in==1', { 'dependencies': [ '../breakpad/breakpad.gyp:breakpad', + '../components/components.gyp:breakpad_component', 'app/policy/cloud_policy_codegen.gyp:policy', ], 'sources': [ 'app/breakpad_mac.mm', 'app/breakpad_mac.h', + 'app/chrome_breakpad_client.cc', + 'app/chrome_breakpad_client.h', ], }, { # else: mac_breakpad_compiled_in!=1 # No Breakpad, put in the stubs. + 'dependencies': [ + '../components/components.gyp:breakpad_stubs', + ], 'sources': [ 'app/breakpad_mac_stubs.mm', 'app/breakpad_mac.h', |