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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 }, | 392 }, |
393 { | 393 { |
394 'target_name': 'breakpad_unittests', | 394 'target_name': 'breakpad_unittests', |
395 'type': 'executable', | 395 'type': 'executable', |
396 'dependencies': [ | 396 'dependencies': [ |
397 '../testing/gtest.gyp:gtest', | 397 '../testing/gtest.gyp:gtest', |
398 '../testing/gtest.gyp:gtest_main', | 398 '../testing/gtest.gyp:gtest_main', |
399 '../testing/gmock.gyp:gmock', | 399 '../testing/gmock.gyp:gmock', |
400 'breakpad_client', | 400 'breakpad_client', |
401 'breakpad_processor_support', | 401 'breakpad_processor_support', |
| 402 'linux_dumper_unittest_helper', |
402 ], | 403 ], |
403 | 404 |
404 'sources': [ | 405 'sources': [ |
405 'linux/breakpad_googletest_includes.h', | 406 'linux/breakpad_googletest_includes.h', |
406 'src/client/linux/handler/exception_handler_unittest.cc', | 407 'src/client/linux/handler/exception_handler_unittest.cc', |
407 'src/client/linux/minidump_writer/directory_reader_unittest.cc', | 408 'src/client/linux/minidump_writer/directory_reader_unittest.cc', |
408 'src/client/linux/minidump_writer/line_reader_unittest.cc', | 409 'src/client/linux/minidump_writer/line_reader_unittest.cc', |
409 'src/client/linux/minidump_writer/linux_dumper_unittest.cc', | 410 'src/client/linux/minidump_writer/linux_dumper_unittest.cc', |
410 'src/client/linux/minidump_writer/minidump_writer_unittest.cc', | 411 'src/client/linux/minidump_writer/minidump_writer_unittest.cc', |
| 412 'src/common/linux/elf_core_dump.cc', |
| 413 'src/common/linux/elf_core_dump.h', |
| 414 'src/common/linux/elf_core_dump_unittest.cc', |
411 'src/common/linux/file_id_unittest.cc', | 415 'src/common/linux/file_id_unittest.cc', |
412 'src/common/linux/linux_libc_support_unittest.cc', | 416 'src/common/linux/linux_libc_support_unittest.cc', |
413 'src/common/linux/synth_elf.cc', | 417 'src/common/linux/synth_elf.cc', |
| 418 'src/common/linux/tests/crash_generator.cc', |
| 419 'src/common/linux/tests/crash_generator.h', |
| 420 'src/common/memory_range.h', |
414 'src/common/memory_unittest.cc', | 421 'src/common/memory_unittest.cc', |
415 'src/common/test_assembler.cc', | 422 'src/common/test_assembler.cc', |
| 423 'src/common/tests/file_utils.cc', |
| 424 'src/common/tests/file_utils.h', |
| 425 'src/tools/linux/md2core/minidump_memory_range.h', |
| 426 'src/tools/linux/md2core/minidump_memory_range_unittest.cc', |
416 ], | 427 ], |
417 | 428 |
418 'include_dirs': [ | 429 'include_dirs': [ |
419 'linux', # Use our copy of breakpad_googletest_includes.h | 430 'linux', # Use our copy of breakpad_googletest_includes.h |
420 'src', | 431 'src', |
421 '..', | 432 '..', |
422 '.', | 433 '.', |
423 ], | 434 ], |
424 }, | 435 }, |
425 { | 436 { |
| 437 'target_name': 'linux_dumper_unittest_helper', |
| 438 'type': 'executable', |
| 439 'dependencies': [ |
| 440 ], |
| 441 'sources': [ |
| 442 'src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc', |
| 443 ], |
| 444 |
| 445 'include_dirs': [ |
| 446 '..', |
| 447 ], |
| 448 }, |
| 449 { |
426 'target_name': 'generate_test_dump', | 450 'target_name': 'generate_test_dump', |
427 'type': 'executable', | 451 'type': 'executable', |
428 | 452 |
429 'sources': [ | 453 'sources': [ |
430 'linux/generate-test-dump.cc', | 454 'linux/generate-test-dump.cc', |
431 ], | 455 ], |
432 | 456 |
433 'dependencies': [ | 457 'dependencies': [ |
434 'breakpad_client', | 458 'breakpad_client', |
435 ], | 459 ], |
(...skipping 17 matching lines...) Expand all Loading... |
453 | 477 |
454 'include_dirs': [ | 478 'include_dirs': [ |
455 '..', | 479 '..', |
456 'src', | 480 'src', |
457 ], | 481 ], |
458 }, | 482 }, |
459 ], | 483 ], |
460 }], | 484 }], |
461 ], | 485 ], |
462 } | 486 } |
OLD | NEW |