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

Unified Diff: breakpad/breakpad.gyp

Issue 938763004: Do not build breakpad tool on target when cross-compiling for iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: breakpad/breakpad.gyp
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp
index 1975c367c35d8b6a18d0a8c01d942adec848e7e7..1046c74ad28ce191e61e8026707f66a9aaedd5c4 100644
--- a/breakpad/breakpad.gyp
+++ b/breakpad/breakpad.gyp
@@ -17,7 +17,6 @@
# GN version: //breakpad:stackwalk_common
'target_name': 'stackwalk_common',
'type': 'static_library',
- 'toolsets': ['host'],
'includes': ['breakpad_tools.gypi'],
'defines': ['BPLOG_MINIMUM_SEVERITY=SEVERITY_ERROR'],
'sources': [
@@ -92,12 +91,16 @@
'src/third_party/libdisasm/x86_operand_list.c',
'src/third_party/libdisasm/x86_operand_list.h',
],
+ 'conditions': [
+ ['OS=="ios"', {
+ 'toolsets': ['host'],
+ }],
+ ],
},
{
# GN version: //breakpad:microdump_stackwalk
'target_name': 'microdump_stackwalk',
'type': 'executable',
- 'toolsets': ['host'],
'dependencies': ['stackwalk_common'],
'includes': ['breakpad_tools.gypi'],
'defines': ['BPLOG_MINIMUM_SEVERITY=SEVERITY_ERROR'],
@@ -106,12 +109,16 @@
'src/processor/microdump_processor.cc',
'src/processor/microdump_stackwalk.cc',
],
+ 'conditions': [
+ ['OS=="ios"', {
+ 'toolsets': ['host'],
+ }],
+ ],
},
{
# GN version: //breakpad:minidump_stackwalk
'target_name': 'minidump_stackwalk',
'type': 'executable',
- 'toolsets': ['host'],
'dependencies': ['stackwalk_common'],
'includes': ['breakpad_tools.gypi'],
'defines': ['BPLOG_MINIMUM_SEVERITY=SEVERITY_ERROR'],
@@ -125,12 +132,16 @@
'src/processor/minidump_processor.cc',
'src/processor/minidump_stackwalk.cc',
],
+ 'conditions': [
+ ['OS=="ios"', {
+ 'toolsets': ['host'],
+ }],
+ ],
},
{
# GN version: //breakpad:minidump_dump
'target_name': 'minidump_dump',
'type': 'executable',
- 'toolsets': ['host'],
'includes': ['breakpad_tools.gypi'],
'sources': [
'src/processor/basic_code_module.h',
@@ -145,6 +156,11 @@
'src/processor/pathname_stripper.cc',
'src/processor/pathname_stripper.h',
],
+ 'conditions': [
+ ['OS=="ios"', {
+ 'toolsets': ['host'],
+ }],
+ ],
},
],
}],
« 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