Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: breakpad/breakpad.gyp

Issue 165330: Disable RTTI and C++ exceptions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/hash_tables.h ('k') | build/common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « base/hash_tables.h ('k') | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698