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

Side by Side Diff: breakpad/breakpad_tools.gypi

Issue 11418122: Build minidump_stackwalk and minidump_dump on all supported platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable on Windows Created 8 years, 1 month 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 | « breakpad/breakpad.gyp ('k') | 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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'conditions': [
7 ['OS=="linux" or OS=="android"', {
8 'variables': {
9 'host_arch': '<!(uname -m)',
10 },
11 'conditions': [
12 ['host_arch=="x86_64"', {
13 'cflags!': ['-m32', '-march=pentium4', '-msse2', '-mfpmath=sse'],
14 'ldflags!': ['-m32'],
15 'cflags': ['-O2'],
16 'include_dirs!': ['/usr/include32'],
17 }],
18 ],
19 }],
20 ['OS=="android"', {
21 'toolsets': ['host'],
22 'defines': ['__ANDROID__'],
23 }],
24 ['clang==1', {
25 'cflags': ['-Wno-tautological-constant-out-of-range-compare'],
26 'xcode_settings': {
27 'WARNING_CFLAGS': ['-Wno-tautological-constant-out-of-range-compare'],
28 },
29 }],
30 ],
31 'include_dirs': [
32 'src',
33 'src/third_party',
34 ],
35 }
OLDNEW
« no previous file with comments | « breakpad/breakpad.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698