OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |