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

Side by Side Diff: breakpad/breakpad.gyp

Issue 10913003: Re-Fix official Linux builds, broken by missing symupload. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/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 'toolsets': [ 'host', ],
376 375
377 # 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
378 # compile flags when building on a 64-bit machine. 377 # compile flags when building on a 64-bit machine.
379 'variables': { 378 'variables': {
380 'host_arch': '<!(uname -m)', 379 'host_arch': '<!(uname -m)',
381 }, 380 },
382 'conditions': [ 381 'conditions': [
383 ['host_arch=="x86_64"', { 382 ['host_arch=="x86_64"', {
384 'cflags!': ['-m32', '-march=pentium4', '-msse2', 383 'cflags!': ['-m32', '-march=pentium4', '-msse2',
385 '-mfpmath=sse'], 384 '-mfpmath=sse'],
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 'include_dirs': [ 841 'include_dirs': [
843 '<(DEPTH)/third_party/GTM', 842 '<(DEPTH)/third_party/GTM',
844 '<(DEPTH)/third_party/GTM/Foundation', 843 '<(DEPTH)/third_party/GTM/Foundation',
845 ], 844 ],
846 }, 845 },
847 }, 846 },
848 ], 847 ],
849 }], 848 }],
850 ], 849 ],
851 } 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