OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
9 ], | 9 ], |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 } | 175 } |
176 }, | 176 }, |
177 { | 177 { |
178 'target_name': 'breakpad', | 178 'target_name': 'breakpad', |
179 'type': 'static_library', | 179 'type': 'static_library', |
180 'dependencies': [ | 180 'dependencies': [ |
181 'breakpad_utilities', | 181 'breakpad_utilities', |
182 'crash_inspector', | 182 'crash_inspector', |
183 'crash_report_sender', | 183 'crash_report_sender', |
184 ], | 184 ], |
| 185 'defines': [ |
| 186 'USE_PROTECTED_ALLOCATIONS=1', |
| 187 ], |
185 'sources': [ | 188 'sources': [ |
186 'src/client/mac/crash_generation/crash_generation_client.cc', | 189 'src/client/mac/crash_generation/crash_generation_client.cc', |
187 'src/client/mac/crash_generation/crash_generation_client.h', | 190 'src/client/mac/crash_generation/crash_generation_client.h', |
188 'src/client/mac/handler/protected_memory_allocator.cc', | 191 'src/client/mac/handler/protected_memory_allocator.cc', |
189 'src/client/mac/handler/exception_handler.cc', | 192 'src/client/mac/handler/exception_handler.cc', |
190 'src/client/mac/Framework/Breakpad.mm', | 193 'src/client/mac/Framework/Breakpad.mm', |
191 'src/client/mac/Framework/OnDemandServer.mm', | 194 'src/client/mac/Framework/OnDemandServer.mm', |
192 ], | 195 ], |
193 }, | 196 }, |
194 ], | 197 ], |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 | 421 |
419 'include_dirs': [ | 422 'include_dirs': [ |
420 '..', | 423 '..', |
421 'src', | 424 'src', |
422 ], | 425 ], |
423 }, | 426 }, |
424 ], | 427 ], |
425 }], | 428 }], |
426 ], | 429 ], |
427 } | 430 } |
OLD | NEW |