OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
7 '../build/common.gypi', | 7 '../build/common.gypi', |
8 ], | 8 ], |
9 'conditions': [ | 9 'conditions': [ |
10 [ 'OS=="mac"', { | 10 [ 'OS=="mac"', { |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 'breakpad_utilities', | 137 'breakpad_utilities', |
138 'crash_inspector', | 138 'crash_inspector', |
139 'crash_report_sender', | 139 'crash_report_sender', |
140 ], | 140 ], |
141 'sources': [ | 141 'sources': [ |
142 'src/client/mac/handler/protected_memory_allocator.cc', | 142 'src/client/mac/handler/protected_memory_allocator.cc', |
143 'src/client/mac/handler/exception_handler.cc', | 143 'src/client/mac/handler/exception_handler.cc', |
144 'src/client/mac/Framework/Breakpad.mm', | 144 'src/client/mac/Framework/Breakpad.mm', |
145 'src/client/mac/Framework/OnDemandServer.mm', | 145 'src/client/mac/Framework/OnDemandServer.mm', |
146 ], | 146 ], |
| 147 'xcode_settings': { |
| 148 # The Mac Breakpad framework uses C++ exceptions internally, but |
| 149 # is careful to not propagate them to callers. |
| 150 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', |
| 151 }, |
147 }, | 152 }, |
148 ], | 153 ], |
149 }], | 154 }], |
150 [ 'OS=="win"', { | 155 [ 'OS=="win"', { |
151 'targets': [ | 156 'targets': [ |
152 { | 157 { |
153 'target_name': 'breakpad_handler', | 158 'target_name': 'breakpad_handler', |
154 'type': '<(library)', | 159 'type': '<(library)', |
155 'msvs_guid': 'B55CA863-B374-4BAF-95AC-539E4FA4C90C', | 160 'msvs_guid': 'B55CA863-B374-4BAF-95AC-539E4FA4C90C', |
156 'sources': [ | 161 'sources': [ |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 | 344 |
340 'include_dirs': [ | 345 'include_dirs': [ |
341 'src', | 346 'src', |
342 '..', | 347 '..', |
343 ], | 348 ], |
344 }, | 349 }, |
345 ], | 350 ], |
346 }], | 351 }], |
347 ], | 352 ], |
348 } | 353 } |
OLD | NEW |