diff options
-rw-r--r-- | chrome/app/breakpad_linux_stub.cc | 5 | ||||
-rw-r--r-- | chrome/chrome.gyp | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/chrome/app/breakpad_linux_stub.cc b/chrome/app/breakpad_linux_stub.cc index ee99606..e92ae65 100644 --- a/chrome/app/breakpad_linux_stub.cc +++ b/chrome/app/breakpad_linux_stub.cc @@ -7,3 +7,8 @@ void EnableCrashDumping() { } + +int UploadCrashDump(const char* filename, const char* crash_url, + unsigned crash_url_length) { + return -1; +} diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 9bb9802..c7f1fbb 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -2835,6 +2835,7 @@ 'chrome_strings', 'test_support_unit', '../app/app.gyp:app_resources', + '../breakpad/breakpad.gyp:breakpad_client', '../net/net.gyp:net_test_support', '../printing/printing.gyp:printing', '../webkit/webkit.gyp:webkit', @@ -2849,6 +2850,8 @@ '..', ], 'sources': [ + 'app/breakpad_linux.h', + 'app/breakpad_linux_stub.cc', 'app/breakpad_mac_stubs.mm', # *NO* files in chrome/app have unit tests (except keystone_glue)!!! # It seems a waste to have an app_unittests target, so for now |