OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 'src/common/dwarf_line_to_module.cc', | 275 'src/common/dwarf_line_to_module.cc', |
276 'src/common/dwarf_line_to_module.h', | 276 'src/common/dwarf_line_to_module.h', |
277 'src/common/language.cc', | 277 'src/common/language.cc', |
278 'src/common/language.h', | 278 'src/common/language.h', |
279 'src/common/linux/dump_symbols.cc', | 279 'src/common/linux/dump_symbols.cc', |
280 'src/common/linux/dump_symbols.h', | 280 'src/common/linux/dump_symbols.h', |
281 'src/common/linux/elf_symbols_to_module.cc', | 281 'src/common/linux/elf_symbols_to_module.cc', |
282 'src/common/linux/elf_symbols_to_module.h', | 282 'src/common/linux/elf_symbols_to_module.h', |
283 'src/common/linux/file_id.cc', | 283 'src/common/linux/file_id.cc', |
284 'src/common/linux/file_id.h', | 284 'src/common/linux/file_id.h', |
| 285 'src/common/linux/memory_mapped_file.cc', |
| 286 'src/common/linux/memory_mapped_file.h', |
285 'src/common/linux/guid_creator.h', | 287 'src/common/linux/guid_creator.h', |
286 'src/common/module.cc', | 288 'src/common/module.cc', |
287 'src/common/module.h', | 289 'src/common/module.h', |
288 'src/common/stabs_reader.cc', | 290 'src/common/stabs_reader.cc', |
289 'src/common/stabs_reader.h', | 291 'src/common/stabs_reader.h', |
290 'src/common/stabs_to_module.cc', | 292 'src/common/stabs_to_module.cc', |
291 'src/common/stabs_to_module.h', | 293 'src/common/stabs_to_module.h', |
292 'src/tools/linux/dump_syms/dump_syms.cc', | 294 'src/tools/linux/dump_syms/dump_syms.cc', |
293 ], | 295 ], |
294 | 296 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 'src/common/convert_UTF.h', | 331 'src/common/convert_UTF.h', |
330 'src/common/linux/file_id.cc', | 332 'src/common/linux/file_id.cc', |
331 'src/common/linux/file_id.h', | 333 'src/common/linux/file_id.h', |
332 'src/common/linux/google_crashdump_uploader.cc', | 334 'src/common/linux/google_crashdump_uploader.cc', |
333 'src/common/linux/google_crashdump_uploader.h', | 335 'src/common/linux/google_crashdump_uploader.h', |
334 'src/common/linux/guid_creator.cc', | 336 'src/common/linux/guid_creator.cc', |
335 'src/common/linux/guid_creator.h', | 337 'src/common/linux/guid_creator.h', |
336 'src/common/linux/libcurl_wrapper.cc', | 338 'src/common/linux/libcurl_wrapper.cc', |
337 'src/common/linux/libcurl_wrapper.h', | 339 'src/common/linux/libcurl_wrapper.h', |
338 'src/common/linux/linux_libc_support.h', | 340 'src/common/linux/linux_libc_support.h', |
| 341 'src/common/linux/memory_mapped_file.cc', |
| 342 'src/common/linux/memory_mapped_file.h', |
| 343 'src/common/linux/safe_readlink.cc', |
| 344 'src/common/linux/safe_readlink.h', |
339 'src/common/memory.h', | 345 'src/common/memory.h', |
340 'src/common/string_conversion.cc', | 346 'src/common/string_conversion.cc', |
341 'src/common/string_conversion.h', | 347 'src/common/string_conversion.h', |
342 ], | 348 ], |
343 | 349 |
344 'conditions': [ | 350 'conditions': [ |
345 ['target_arch=="arm"', { | 351 ['target_arch=="arm"', { |
346 'cflags': ['-Wa,-mimplicit-it=always'], | 352 'cflags': ['-Wa,-mimplicit-it=always'], |
347 }], | 353 }], |
348 ], | 354 ], |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 ], | 440 ], |
435 }, | 441 }, |
436 { | 442 { |
437 'target_name': 'minidump-2-core', | 443 'target_name': 'minidump-2-core', |
438 'type': 'executable', | 444 'type': 'executable', |
439 | 445 |
440 'sources': [ | 446 'sources': [ |
441 'src/tools/linux/md2core/minidump-2-core.cc' | 447 'src/tools/linux/md2core/minidump-2-core.cc' |
442 ], | 448 ], |
443 | 449 |
| 450 'dependencies': [ |
| 451 'breakpad_client', |
| 452 ], |
| 453 |
444 'include_dirs': [ | 454 'include_dirs': [ |
445 '..', | 455 '..', |
446 'src', | 456 'src', |
447 ], | 457 ], |
448 }, | 458 }, |
449 ], | 459 ], |
450 }], | 460 }], |
451 ], | 461 ], |
452 } | 462 } |
OLD | NEW |