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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 'src/tools/linux/md2core/minidump_memory_range.h', | 606 'src/tools/linux/md2core/minidump_memory_range.h', |
607 'src/tools/linux/md2core/minidump_memory_range_unittest.cc', | 607 'src/tools/linux/md2core/minidump_memory_range_unittest.cc', |
608 ], | 608 ], |
609 | 609 |
610 'include_dirs': [ | 610 'include_dirs': [ |
611 'linux', # Use our copy of breakpad_googletest_includes.h | 611 'linux', # Use our copy of breakpad_googletest_includes.h |
612 'src', | 612 'src', |
613 '..', | 613 '..', |
614 '.', | 614 '.', |
615 ], | 615 ], |
| 616 'conditions': [ |
| 617 [ 'clang == 1', { |
| 618 'cflags': [ |
| 619 # See http://crbug.com/138571#c18 |
| 620 '-Wno-unused-value', |
| 621 ], |
| 622 }], |
| 623 ], |
616 }, | 624 }, |
617 { | 625 { |
618 'target_name': 'linux_dumper_unittest_helper', | 626 'target_name': 'linux_dumper_unittest_helper', |
619 'type': 'executable', | 627 'type': 'executable', |
620 'dependencies': [ | 628 'dependencies': [ |
621 'breakpad_processor_support', | 629 'breakpad_processor_support', |
622 ], | 630 ], |
623 'sources': [ | 631 'sources': [ |
624 'src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc', | 632 'src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc', |
625 ], | 633 ], |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 'include_dirs': [ | 761 'include_dirs': [ |
754 'src', | 762 'src', |
755 'src/client/mac/Framework', | 763 'src/client/mac/Framework', |
756 'src/common/mac', | 764 'src/common/mac', |
757 ], | 765 ], |
758 }, | 766 }, |
759 ], | 767 ], |
760 }], | 768 }], |
761 ], | 769 ], |
762 } | 770 } |
OLD | NEW |