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

Side by Side Diff: breakpad/breakpad.gyp

Issue 1061473003: Always build dump_syms with the 'host' toolchain (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@arm_try_by_default
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | build/all.gyp » ('j') | 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 'link_settings': { 438 'link_settings': {
439 'libraries': [ 439 'libraries': [
440 '-ldl', 440 '-ldl',
441 ], 441 ],
442 }, 442 },
443 }, 443 },
444 { 444 {
445 # GN version: //breakpad:dump_syms 445 # GN version: //breakpad:dump_syms
446 'target_name': 'dump_syms', 446 'target_name': 'dump_syms',
447 'type': 'executable', 447 'type': 'executable',
448 'conditions': [ 448 'toolsets': ['host'],
449 ['OS=="android"', {
450 'toolsets': [ 'host' ],
451 }],
452 ],
453 449
454 # dwarf2reader.cc uses dynamic_cast. Because we don't typically 450 # dwarf2reader.cc uses dynamic_cast. Because we don't typically
455 # don't support RTTI, we enable it for this single target. Since 451 # don't support RTTI, we enable it for this single target. Since
456 # dump_syms doesn't share any object files with anything else, 452 # dump_syms doesn't share any object files with anything else,
457 # this doesn't end up polluting Chrome itself. 453 # this doesn't end up polluting Chrome itself.
458 'cflags_cc!': ['-fno-rtti'], 454 'cflags_cc!': ['-fno-rtti'],
459 455
460 'sources': [ 456 'sources': [
461 'src/common/dwarf/bytereader.cc', 457 'src/common/dwarf/bytereader.cc',
462 'src/common/dwarf_cfi_to_module.cc', 458 'src/common/dwarf_cfi_to_module.cc',
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 'include_main_binary': 0, 967 'include_main_binary': 0,
972 }, 968 },
973 'includes': [ 969 'includes': [
974 '../build/android/native_app_dependencies.gypi' 970 '../build/android/native_app_dependencies.gypi'
975 ], 971 ],
976 } 972 }
977 ], 973 ],
978 }], 974 }],
979 ], 975 ],
980 } 976 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698