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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « breakpad/breakpad.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: breakpad/breakpad_tools.gypi
diff --git a/breakpad/breakpad_tools.gypi b/breakpad/breakpad_tools.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..bf38f1a180d21d51f9b374e162eeeccb9cb9e9f6
--- /dev/null
+++ b/breakpad/breakpad_tools.gypi
@@ -0,0 +1,35 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'conditions': [
+ ['OS=="linux" or OS=="android"', {
+ 'variables': {
+ 'host_arch': '<!(uname -m)',
+ },
+ 'conditions': [
+ ['host_arch=="x86_64"', {
+ 'cflags!': ['-m32', '-march=pentium4', '-msse2', '-mfpmath=sse'],
+ 'ldflags!': ['-m32'],
+ 'cflags': ['-O2'],
+ 'include_dirs!': ['/usr/include32'],
+ }],
+ ],
+ }],
+ ['OS=="android"', {
+ 'toolsets': ['host'],
+ 'defines': ['__ANDROID__'],
+ }],
+ ['clang==1', {
+ 'cflags': ['-Wno-tautological-constant-out-of-range-compare'],
+ 'xcode_settings': {
+ 'WARNING_CFLAGS': ['-Wno-tautological-constant-out-of-range-compare'],
+ },
+ }],
+ ],
+ 'include_dirs': [
+ 'src',
+ 'src/third_party',
+ ],
+}
« 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