OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'crash_component_lib', | 8 'target_name': 'crash_component_lib', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
(...skipping 27 matching lines...) Expand all Loading... |
38 'target_name': 'crash_component', | 38 'target_name': 'crash_component', |
39 'type': '<(crash_component_target_type)', | 39 'type': '<(crash_component_target_type)', |
40 'sources': [ | 40 'sources': [ |
41 'crash/app/breakpad_linux.cc', | 41 'crash/app/breakpad_linux.cc', |
42 'crash/app/breakpad_linux.h', | 42 'crash/app/breakpad_linux.h', |
43 'crash/app/breakpad_linux_impl.h', | 43 'crash/app/breakpad_linux_impl.h', |
44 'crash/app/breakpad_mac.h', | 44 'crash/app/breakpad_mac.h', |
45 'crash/app/breakpad_mac.mm', | 45 'crash/app/breakpad_mac.mm', |
46 'crash/app/breakpad_win.cc', | 46 'crash/app/breakpad_win.cc', |
47 'crash/app/breakpad_win.h', | 47 'crash/app/breakpad_win.h', |
| 48 'crash/app/crashpad_mac.h', |
| 49 'crash/app/crashpad_mac.mm', |
48 'crash/app/hard_error_handler_win.cc', | 50 'crash/app/hard_error_handler_win.cc', |
49 'crash/app/hard_error_handler_win.h', | 51 'crash/app/hard_error_handler_win.h', |
50 ], | 52 ], |
51 'dependencies': [ | 53 'dependencies': [ |
52 'crash_component_lib', | 54 'crash_component_lib', |
53 '../base/base.gyp:base', | 55 '../base/base.gyp:base', |
54 ], | 56 ], |
55 'defines': ['CRASH_IMPLEMENTATION'], | 57 'defines': ['CRASH_IMPLEMENTATION'], |
56 'conditions': [ | 58 'conditions': [ |
57 ['OS=="mac"', { | 59 ['OS=="mac"', { |
58 'dependencies': [ | 60 'dependencies': [ |
59 '../breakpad/breakpad.gyp:breakpad', | 61 '../breakpad/breakpad.gyp:breakpad', |
| 62 '../third_party/crashpad/crashpad/client/client.gyp:crashpad_client'
, |
60 ], | 63 ], |
61 }], | 64 }], |
62 ['OS=="win"', { | 65 ['OS=="win"', { |
63 'dependencies': [ | 66 'dependencies': [ |
64 '../breakpad/breakpad.gyp:breakpad_handler', | 67 '../breakpad/breakpad.gyp:breakpad_handler', |
65 '../breakpad/breakpad.gyp:breakpad_sender', | 68 '../breakpad/breakpad.gyp:breakpad_sender', |
66 '../sandbox/sandbox.gyp:sandbox', | 69 '../sandbox/sandbox.gyp:sandbox', |
67 ], | 70 ], |
68 }], | 71 }], |
69 ['os_posix == 1 and OS != "mac" and OS != "ios" and android_webview_buil
d != 1', { | 72 ['os_posix == 1 and OS != "mac" and OS != "ios" and android_webview_buil
d != 1', { |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 'sources/': [ | 227 'sources/': [ |
225 ['include', '^crash/browser/crash_handler_host_linux\\.cc$'], | 228 ['include', '^crash/browser/crash_handler_host_linux\\.cc$'], |
226 ], | 229 ], |
227 }], | 230 }], |
228 ], | 231 ], |
229 }, | 232 }, |
230 ], | 233 ], |
231 }], | 234 }], |
232 ], | 235 ], |
233 } | 236 } |
OLD | NEW |