| OLD | NEW |
| 1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 '../third_party/mini_chromium/mini_chromium.gyp:base', | 31 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 32 '../tools/tools.gyp:crashpad_tool_support', | 32 '../tools/tools.gyp:crashpad_tool_support', |
| 33 '../util/util.gyp:crashpad_util', | 33 '../util/util.gyp:crashpad_util', |
| 34 ], | 34 ], |
| 35 'include_dirs': [ | 35 'include_dirs': [ |
| 36 '..', | 36 '..', |
| 37 ], | 37 ], |
| 38 'sources': [ | 38 'sources': [ |
| 39 'crash_report_upload_thread.cc', | 39 'crash_report_upload_thread.cc', |
| 40 'crash_report_upload_thread.h', | 40 'crash_report_upload_thread.h', |
| 41 'handler_main.cc', |
| 42 'handler_main.h', |
| 41 'mac/crash_report_exception_handler.cc', | 43 'mac/crash_report_exception_handler.cc', |
| 42 'mac/crash_report_exception_handler.h', | 44 'mac/crash_report_exception_handler.h', |
| 43 'mac/exception_handler_server.cc', | 45 'mac/exception_handler_server.cc', |
| 44 'mac/exception_handler_server.h', | 46 'mac/exception_handler_server.h', |
| 45 'handler_main.cc', | 47 'prune_crash_reports_thread.cc', |
| 46 'handler_main.h', | 48 'prune_crash_reports_thread.h', |
| 47 'win/crash_report_exception_handler.cc', | 49 'win/crash_report_exception_handler.cc', |
| 48 'win/crash_report_exception_handler.h', | 50 'win/crash_report_exception_handler.h', |
| 49 ], | 51 ], |
| 50 }, | 52 }, |
| 51 { | 53 { |
| 52 'target_name': 'crashpad_handler', | 54 'target_name': 'crashpad_handler', |
| 53 'type': 'executable', | 55 'type': 'executable', |
| 54 'dependencies': [ | 56 'dependencies': [ |
| 55 '../third_party/mini_chromium/mini_chromium.gyp:base', | 57 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 56 '../tools/tools.gyp:crashpad_tool_support', | 58 '../tools/tools.gyp:crashpad_tool_support', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 ], | 148 ], |
| 147 }, | 149 }, |
| 148 ], | 150 ], |
| 149 }], | 151 }], |
| 150 ], | 152 ], |
| 151 }, { | 153 }, { |
| 152 'targets': [], | 154 'targets': [], |
| 153 }], | 155 }], |
| 154 ], | 156 ], |
| 155 } | 157 } |
| OLD | NEW |