diff options
-rw-r--r-- | breakpad/breakpad.gyp | 6 | ||||
-rw-r--r-- | build/all.gyp | 2 | ||||
-rw-r--r-- | build/gn_migration.gypi | 2 | ||||
-rw-r--r-- | chrome/chrome.gyp | 2 |
4 files changed, 4 insertions, 8 deletions
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index de0faac..cc5187d 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -447,11 +447,7 @@ # GN version: //breakpad:dump_syms 'target_name': 'dump_syms', 'type': 'executable', - 'conditions': [ - ['OS=="android"', { - 'toolsets': [ 'host' ], - }], - ], + 'toolsets': ['host'], # dwarf2reader.cc uses dynamic_cast. Because we don't typically # don't support RTTI, we enable it for this single target. Since diff --git a/build/all.gyp b/build/all.gyp index 40a7e29..13ae2a4 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -538,7 +538,7 @@ }], ['OS=="linux"', { 'dependencies': [ - '../breakpad/breakpad.gyp:dump_syms', + '../breakpad/breakpad.gyp:dump_syms#host', ], }], ], diff --git a/build/gn_migration.gypi b/build/gn_migration.gypi index ad6560c..9aa30af 100644 --- a/build/gn_migration.gypi +++ b/build/gn_migration.gypi @@ -378,7 +378,7 @@ ['OS=="linux"', { 'dependencies': [ '../breakpad/breakpad.gyp:breakpad_unittests', - '../breakpad/breakpad.gyp:dump_syms', + '../breakpad/breakpad.gyp:dump_syms#host', '../breakpad/breakpad.gyp:generate_test_dump', '../breakpad/breakpad.gyp:minidump-2-core', '../dbus/dbus.gyp:dbus_test_server', diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 5137c93..55d9dce 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -383,7 +383,7 @@ ], 'dependencies': [ 'chrome', - '../breakpad/breakpad.gyp:dump_syms', + '../breakpad/breakpad.gyp:dump_syms#host', ], }], ], |