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

Side by Side Diff: breakpad/breakpad.gyp

Issue 1978803003: Roll src/breakpad/src/ eb46b8c4f..33a43757f (10 commits). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: roll to 2nd elf fix Created 4 years, 7 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 | « breakpad/BUILD.gn ('k') | no next file » | 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 'toolsets': ['host'], 188 'toolsets': ['host'],
189 'include_dirs': [ 189 'include_dirs': [
190 'src/common/mac', 190 'src/common/mac',
191 ], 191 ],
192 'sources': [ 192 'sources': [
193 'src/common/dwarf/bytereader.cc', 193 'src/common/dwarf/bytereader.cc',
194 'src/common/dwarf_cfi_to_module.cc', 194 'src/common/dwarf_cfi_to_module.cc',
195 'src/common/dwarf_cu_to_module.cc', 195 'src/common/dwarf_cu_to_module.cc',
196 'src/common/dwarf/dwarf2diehandler.cc', 196 'src/common/dwarf/dwarf2diehandler.cc',
197 'src/common/dwarf/dwarf2reader.cc', 197 'src/common/dwarf/dwarf2reader.cc',
198 'src/common/dwarf/elf_reader.cc',
199 'src/common/dwarf/elf_reader.h',
198 'src/common/dwarf_line_to_module.cc', 200 'src/common/dwarf_line_to_module.cc',
199 'src/common/language.cc', 201 'src/common/language.cc',
200 'src/common/mac/arch_utilities.cc', 202 'src/common/mac/arch_utilities.cc',
201 'src/common/mac/arch_utilities.h', 203 'src/common/mac/arch_utilities.h',
202 'src/common/mac/dump_syms.cc', 204 'src/common/mac/dump_syms.cc',
203 'src/common/mac/file_id.cc', 205 'src/common/mac/file_id.cc',
204 'src/common/mac/macho_id.cc', 206 'src/common/mac/macho_id.cc',
205 'src/common/mac/macho_reader.cc', 207 'src/common/mac/macho_reader.cc',
206 'src/common/mac/macho_utilities.cc', 208 'src/common/mac/macho_utilities.cc',
207 'src/common/mac/macho_walker.cc', 209 'src/common/mac/macho_walker.cc',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 'cflags_cc!': ['-fno-rtti'], 460 'cflags_cc!': ['-fno-rtti'],
459 461
460 'sources': [ 462 'sources': [
461 'src/common/dwarf/bytereader.cc', 463 'src/common/dwarf/bytereader.cc',
462 'src/common/dwarf_cfi_to_module.cc', 464 'src/common/dwarf_cfi_to_module.cc',
463 'src/common/dwarf_cfi_to_module.h', 465 'src/common/dwarf_cfi_to_module.h',
464 'src/common/dwarf_cu_to_module.cc', 466 'src/common/dwarf_cu_to_module.cc',
465 'src/common/dwarf_cu_to_module.h', 467 'src/common/dwarf_cu_to_module.h',
466 'src/common/dwarf/dwarf2diehandler.cc', 468 'src/common/dwarf/dwarf2diehandler.cc',
467 'src/common/dwarf/dwarf2reader.cc', 469 'src/common/dwarf/dwarf2reader.cc',
470 'src/common/dwarf/elf_reader.cc',
471 'src/common/dwarf/elf_reader.h',
468 'src/common/dwarf_line_to_module.cc', 472 'src/common/dwarf_line_to_module.cc',
469 'src/common/dwarf_line_to_module.h', 473 'src/common/dwarf_line_to_module.h',
470 'src/common/language.cc', 474 'src/common/language.cc',
471 'src/common/language.h', 475 'src/common/language.h',
472 'src/common/linux/crc32.cc', 476 'src/common/linux/crc32.cc',
473 'src/common/linux/crc32.h', 477 'src/common/linux/crc32.h',
474 'src/common/linux/dump_symbols.cc', 478 'src/common/linux/dump_symbols.cc',
475 'src/common/linux/dump_symbols.h', 479 'src/common/linux/dump_symbols.h',
476 'src/common/linux/elf_symbols_to_module.cc', 480 'src/common/linux/elf_symbols_to_module.cc',
477 'src/common/linux/elf_symbols_to_module.h', 481 'src/common/linux/elf_symbols_to_module.h',
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 'breakpad_unittests_apk.isolate', 1036 'breakpad_unittests_apk.isolate',
1033 ], 1037 ],
1034 }, 1038 },
1035 ] 1039 ]
1036 } 1040 }
1037 ], 1041 ],
1038 ], 1042 ],
1039 }], 1043 }],
1040 ], 1044 ],
1041 } 1045 }
OLDNEW
« no previous file with comments | « breakpad/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698