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

Side by Side Diff: breakpad/breakpad.gyp

Issue 9838033: Upstream native crash handling changes for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: In response to comments. Lots of linux to posix Created 8 years, 8 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 'src/client/mac/handler/exception_handler.cc', 213 'src/client/mac/handler/exception_handler.cc',
214 'src/client/mac/Framework/Breakpad.mm', 214 'src/client/mac/Framework/Breakpad.mm',
215 'src/client/mac/Framework/OnDemandServer.mm', 215 'src/client/mac/Framework/OnDemandServer.mm',
216 ], 216 ],
217 }, 217 },
218 ], 218 ],
219 }], 219 }],
220 [ 'OS=="linux"', { 220 [ 'OS=="linux"', {
221 'conditions': [ 221 'conditions': [
222 # Tools needed for archiving build symbols. 222 # Tools needed for archiving build symbols.
223 ['linux_breakpad==1', { 223 ['posix_breakpad==1', {
224 'targets': [ 224 'targets': [
225 { 225 {
226 'target_name': 'symupload', 226 'target_name': 'symupload',
227 'type': 'executable', 227 'type': 'executable',
228 228
229 # This uses the system libcurl, so don't use the default 32-bit 229 # This uses the system libcurl, so don't use the default 32-bit
230 # compile flags when building on a 64-bit machine. 230 # compile flags when building on a 64-bit machine.
231 'variables': { 231 'variables': {
232 'host_arch': '<!(uname -m)', 232 'host_arch': '<!(uname -m)',
233 }, 233 },
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 500
501 'include_dirs': [ 501 'include_dirs': [
502 '..', 502 '..',
503 'src', 503 'src',
504 ], 504 ],
505 }, 505 },
506 ], 506 ],
507 }], 507 }],
508 ], 508 ],
509 } 509 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698