| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 '../client/client.gyp:crashpad_client', | 154 '../client/client.gyp:crashpad_client', |
| 155 '../test/test.gyp:crashpad_test', | 155 '../test/test.gyp:crashpad_test', |
| 156 '../third_party/mini_chromium/mini_chromium.gyp:base', | 156 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 157 '../util/util.gyp:crashpad_util', | 157 '../util/util.gyp:crashpad_util', |
| 158 ], | 158 ], |
| 159 'sources': [ | 159 'sources': [ |
| 160 'win/crash_other_program.cc', | 160 'win/crash_other_program.cc', |
| 161 ], | 161 ], |
| 162 }, | 162 }, |
| 163 { | 163 { |
| 164 'target_name': 'fake_handler_that_crashes_at_startup', |
| 165 'type': 'executable', |
| 166 'sources': [ |
| 167 'win/fake_handler_that_crashes_at_startup.cc', |
| 168 ], |
| 169 }, |
| 170 { |
| 164 'target_name': 'hanging_program', | 171 'target_name': 'hanging_program', |
| 165 'type': 'executable', | 172 'type': 'executable', |
| 166 'dependencies': [ | 173 'dependencies': [ |
| 167 '../client/client.gyp:crashpad_client', | 174 '../client/client.gyp:crashpad_client', |
| 168 '../third_party/mini_chromium/mini_chromium.gyp:base', | 175 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 169 ], | 176 ], |
| 170 'sources': [ | 177 'sources': [ |
| 171 'win/hanging_program.cc', | 178 'win/hanging_program.cc', |
| 172 ], | 179 ], |
| 173 }, | 180 }, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 ], | 226 ], |
| 220 }, | 227 }, |
| 221 ], | 228 ], |
| 222 }], | 229 }], |
| 223 ], | 230 ], |
| 224 }, { | 231 }, { |
| 225 'targets': [], | 232 'targets': [], |
| 226 }], | 233 }], |
| 227 ], | 234 ], |
| 228 } | 235 } |
| OLD | NEW |