| 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': [ |
| 11 # minidump_stackwalk and minidump_dump are tool-type executables that do | 11 # minidump_stackwalk and minidump_dump are tool-type executables that do |
| 12 # not build on iOS. | 12 # not build on iOS. |
| 13 ['OS!="ios" and OS!="win"', { | 13 ['OS!="ios" and OS!="win"', { |
| 14 'targets': [ | 14 'targets': [ |
| 15 { | 15 { |
| 16 'target_name': 'minidump_stackwalk', | 16 'target_name': 'minidump_stackwalk', |
| 17 'type': 'executable', | 17 'type': 'executable', |
| 18 'includes': ['breakpad_tools.gypi'], | 18 'includes': ['breakpad_tools.gypi'], |
| 19 'defines': ['BPLOG_MINIMUM_SEVERITY=SEVERITY_ERROR'], |
| 19 'sources': [ | 20 'sources': [ |
| 20 'src/processor/basic_code_module.h', | 21 'src/processor/basic_code_module.h', |
| 21 'src/processor/basic_code_modules.cc', | 22 'src/processor/basic_code_modules.cc', |
| 22 'src/processor/basic_code_modules.h', | 23 'src/processor/basic_code_modules.h', |
| 23 'src/processor/basic_source_line_resolver.cc', | 24 'src/processor/basic_source_line_resolver.cc', |
| 24 'src/processor/binarystream.cc', | 25 'src/processor/binarystream.cc', |
| 25 'src/processor/binarystream.h', | 26 'src/processor/binarystream.h', |
| 26 'src/processor/call_stack.cc', | 27 'src/processor/call_stack.cc', |
| 27 'src/processor/cfi_frame_info.cc', | 28 'src/processor/cfi_frame_info.cc', |
| 28 'src/processor/cfi_frame_info.h', | 29 'src/processor/cfi_frame_info.h', |
| (...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 'target_name': 'symupload', | 859 'target_name': 'symupload', |
| 859 'type': 'none', | 860 'type': 'none', |
| 860 'dependencies': [ | 861 'dependencies': [ |
| 861 'breakpad_utilities', | 862 'breakpad_utilities', |
| 862 ], | 863 ], |
| 863 } | 864 } |
| 864 ], | 865 ], |
| 865 }], | 866 }], |
| 866 ], | 867 ], |
| 867 } | 868 } |
| OLD | NEW |