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

Side by Side Diff: breakpad/breakpad.gyp

Issue 10912003: Merge 154083 - Re-Fix official Linux builds, broken by missing symupload. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1249/src/
Patch Set: Created 8 years, 3 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 | « no previous file | no next file » | 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) 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 ], 365 ],
366 'include_dirs': [ 366 'include_dirs': [
367 'src', 367 'src',
368 'src/third_party', 368 'src/third_party',
369 '..', 369 '..',
370 ], 370 ],
371 }, 371 },
372 { 372 {
373 'target_name': 'symupload', 373 'target_name': 'symupload',
374 'type': 'executable', 374 'type': 'executable',
375 'conditions': [
376 ['OS=="android"', {
377 'toolsets': [ 'host' ],
378 }],
379 ],
380 375
381 # This uses the system libcurl, so don't use the default 32-bit 376 # This uses the system libcurl, so don't use the default 32-bit
382 # compile flags when building on a 64-bit machine. 377 # compile flags when building on a 64-bit machine.
383 'variables': { 378 'variables': {
384 'host_arch': '<!(uname -m)', 379 'host_arch': '<!(uname -m)',
385 }, 380 },
386 'conditions': [ 381 'conditions': [
387 ['host_arch=="x86_64"', { 382 ['host_arch=="x86_64"', {
388 'cflags!': ['-m32', '-march=pentium4', '-msse2', 383 'cflags!': ['-m32', '-march=pentium4', '-msse2',
389 '-mfpmath=sse'], 384 '-mfpmath=sse'],
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 'include_dirs': [ 841 'include_dirs': [
847 '<(DEPTH)/third_party/GTM', 842 '<(DEPTH)/third_party/GTM',
848 '<(DEPTH)/third_party/GTM/Foundation', 843 '<(DEPTH)/third_party/GTM/Foundation',
849 ], 844 ],
850 }, 845 },
851 }, 846 },
852 ], 847 ],
853 }], 848 }],
854 ], 849 ],
855 } 850 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698