| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ], | 53 ], |
| 54 'include_dirs': [ | 54 'include_dirs': [ |
| 55 '..', | 55 '..', |
| 56 ], | 56 ], |
| 57 'sources': [ | 57 'sources': [ |
| 58 'tool_support.cc', | 58 'tool_support.cc', |
| 59 'tool_support.h', | 59 'tool_support.h', |
| 60 ], | 60 ], |
| 61 }, | 61 }, |
| 62 { | 62 { |
| 63 'target_name': 'crashpad_database_util', |
| 64 'type': 'executable', |
| 65 'dependencies': [ |
| 66 'crashpad_tool_support', |
| 67 '../client/client.gyp:crashpad_client', |
| 68 '../compat/compat.gyp:crashpad_compat', |
| 69 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 70 '../util/util.gyp:crashpad_util', |
| 71 ], |
| 72 'include_dirs': [ |
| 73 '..', |
| 74 ], |
| 75 'sources': [ |
| 76 'crashpad_database_util.cc', |
| 77 ], |
| 78 }, |
| 79 { |
| 63 'target_name': 'catch_exception_tool', | 80 'target_name': 'catch_exception_tool', |
| 64 'type': 'executable', | 81 'type': 'executable', |
| 65 'dependencies': [ | 82 'dependencies': [ |
| 66 'crashpad_tool_support', | 83 'crashpad_tool_support', |
| 67 '../compat/compat.gyp:crashpad_compat', | 84 '../compat/compat.gyp:crashpad_compat', |
| 68 '../third_party/mini_chromium/mini_chromium.gyp:base', | 85 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 69 '../util/util.gyp:crashpad_util', | 86 '../util/util.gyp:crashpad_util', |
| 70 ], | 87 ], |
| 71 'include_dirs': [ | 88 'include_dirs': [ |
| 72 '..', | 89 '..', |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'sources': [ | 180 'sources': [ |
| 164 'mac/run_with_crashpad.cc', | 181 'mac/run_with_crashpad.cc', |
| 165 ], | 182 ], |
| 166 }, | 183 }, |
| 167 ], | 184 ], |
| 168 }, { | 185 }, { |
| 169 'targets': [], | 186 'targets': [], |
| 170 }], | 187 }], |
| 171 ], | 188 ], |
| 172 } | 189 } |
| OLD | NEW |