| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 '../util/util.gyp:crashpad_util', | 141 '../util/util.gyp:crashpad_util', |
| 142 ], | 142 ], |
| 143 'include_dirs': [ | 143 'include_dirs': [ |
| 144 '..', | 144 '..', |
| 145 ], | 145 ], |
| 146 'sources': [ | 146 'sources': [ |
| 147 'win/crashy_test_program.cc', | 147 'win/crashy_test_program.cc', |
| 148 ], | 148 ], |
| 149 }, | 149 }, |
| 150 { | 150 { |
| 151 'target_name': 'crashy_signal', |
| 152 'type': 'executable', |
| 153 'dependencies': [ |
| 154 '../client/client.gyp:crashpad_client', |
| 155 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 156 ], |
| 157 'include_dirs': [ |
| 158 '..', |
| 159 ], |
| 160 'sources': [ |
| 161 'win/crashy_signal.cc', |
| 162 ], |
| 163 }, |
| 164 { |
| 151 'target_name': 'crash_other_program', | 165 'target_name': 'crash_other_program', |
| 152 'type': 'executable', | 166 'type': 'executable', |
| 153 'dependencies': [ | 167 'dependencies': [ |
| 154 '../client/client.gyp:crashpad_client', | 168 '../client/client.gyp:crashpad_client', |
| 155 '../test/test.gyp:crashpad_test', | 169 '../test/test.gyp:crashpad_test', |
| 156 '../third_party/mini_chromium/mini_chromium.gyp:base', | 170 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 157 '../util/util.gyp:crashpad_util', | 171 '../util/util.gyp:crashpad_util', |
| 158 ], | 172 ], |
| 159 'sources': [ | 173 'sources': [ |
| 160 'win/crash_other_program.cc', | 174 'win/crash_other_program.cc', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 ], | 240 ], |
| 227 }, | 241 }, |
| 228 ], | 242 ], |
| 229 }], | 243 }], |
| 230 ], | 244 ], |
| 231 }, { | 245 }, { |
| 232 'targets': [], | 246 'targets': [], |
| 233 }], | 247 }], |
| 234 ], | 248 ], |
| 235 } | 249 } |
| OLD | NEW |