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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 }, | 848 }, |
849 { | 849 { |
850 'target_name': 'symupload', | 850 'target_name': 'symupload', |
851 'type': 'none', | 851 'type': 'none', |
852 'dependencies': [ | 852 'dependencies': [ |
853 'breakpad_utilities', | 853 'breakpad_utilities', |
854 ], | 854 ], |
855 } | 855 } |
856 ], | 856 ], |
857 }], | 857 }], |
| 858 ['OS=="android"', { |
| 859 'targets': [ |
| 860 { |
| 861 'target_name': 'breakpad_unittests_stripped', |
| 862 'type': 'none', |
| 863 'dependencies': [ 'breakpad_unittests' ], |
| 864 'actions': [{ |
| 865 'action_name': 'strip breakpad_unittests', |
| 866 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], |
| 867 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], |
| 868 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)'
], |
| 869 }], |
| 870 } |
| 871 ], |
| 872 }], |
858 ], | 873 ], |
859 } | 874 } |
OLD | NEW |