| Index: components/breakpad.gypi
|
| diff --git a/components/breakpad.gypi b/components/breakpad.gypi
|
| index c79d81597e5295fb79c5dac40bbd7dec3c58953d..93619c26b06cf6343751f252665799e3ea340313 100644
|
| --- a/components/breakpad.gypi
|
| +++ b/components/breakpad.gypi
|
| @@ -39,6 +39,23 @@
|
| },
|
| ],
|
| 'conditions': [
|
| + ['OS=="win"', {
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'breakpad_crash_service',
|
| + 'type': 'static_library',
|
| + 'dependencies': [
|
| + '../base/base.gyp:base',
|
| + '../breakpad/breakpad.gyp:breakpad_handler',
|
| + '../breakpad/breakpad.gyp:breakpad_sender',
|
| + ],
|
| + 'sources': [
|
| + 'breakpad/tools/crash_service.cc',
|
| + 'breakpad/tools/crash_service.h',
|
| + ],
|
| + },
|
| + ],
|
| + }],
|
| ['OS=="win" and target_arch=="ia32"', {
|
| 'targets': [
|
| {
|
| @@ -56,6 +73,24 @@
|
| },
|
| },
|
| },
|
| + {
|
| + 'target_name': 'breakpad_crash_service_win64',
|
| + 'type': 'static_library',
|
| + 'dependencies': [
|
| + '../base/base.gyp:base_nacl_win64',
|
| + '../breakpad/breakpad.gyp:breakpad_handler_win64',
|
| + '../breakpad/breakpad.gyp:breakpad_sender_win64',
|
| + ],
|
| + 'sources': [
|
| + 'breakpad/tools/crash_service.cc',
|
| + 'breakpad/tools/crash_service.h',
|
| + ],
|
| + 'configurations': {
|
| + 'Common_Base': {
|
| + 'msvs_target_platform': 'x64',
|
| + },
|
| + },
|
| + },
|
| ],
|
| }],
|
| ['OS=="mac"', {
|
|
|