| 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 '-Wno-unused-value', | 607 '-Wno-unused-value', |
| 608 ], | 608 ], |
| 609 }], | 609 }], |
| 610 ['OS=="android"', { | 610 ['OS=="android"', { |
| 611 'libraries': [ | 611 'libraries': [ |
| 612 '-llog', | 612 '-llog', |
| 613 ], | 613 ], |
| 614 'include_dirs': [ | 614 'include_dirs': [ |
| 615 'src/common/android/include', | 615 'src/common/android/include', |
| 616 ], | 616 ], |
| 617 'sources': [ |
| 618 'src/common/android/breakpad_getcontext_unittest.cc', |
| 619 ], |
| 617 }], | 620 }], |
| 618 ], | 621 ], |
| 619 }, | 622 }, |
| 620 { | 623 { |
| 621 'target_name': 'linux_dumper_unittest_helper', | 624 'target_name': 'linux_dumper_unittest_helper', |
| 622 'type': 'executable', | 625 'type': 'executable', |
| 623 'dependencies': [ | 626 'dependencies': [ |
| 624 'breakpad_processor_support', | 627 'breakpad_processor_support', |
| 625 ], | 628 ], |
| 626 'sources': [ | 629 'sources': [ |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 'action_name': 'strip breakpad_unittests', | 865 'action_name': 'strip breakpad_unittests', |
| 863 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], | 866 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], |
| 864 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], | 867 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], |
| 865 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)'
], | 868 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)'
], |
| 866 }], | 869 }], |
| 867 } | 870 } |
| 868 ], | 871 ], |
| 869 }], | 872 }], |
| 870 ], | 873 ], |
| 871 } | 874 } |
| OLD | NEW |