OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/crash/core/browser | 8 # GN version: //components/crash/core/browser |
9 'target_name': 'crash_core_browser', | 9 'target_name': 'crash_core_browser', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 'crash/content/app/crashpad_win.cc', | 210 'crash/content/app/crashpad_win.cc', |
211 ], | 211 ], |
212 'dependencies': [ | 212 'dependencies': [ |
213 'crash_component_non_mac_win', | 213 'crash_component_non_mac_win', |
214 'crash_component_lib', | 214 'crash_component_lib', |
215 '../base/base.gyp:base', | 215 '../base/base.gyp:base', |
216 '../third_party/kasko/kasko.gyp:kasko', | 216 '../third_party/kasko/kasko.gyp:kasko', |
217 ], | 217 ], |
218 'defines': ['CRASH_IMPLEMENTATION'], | 218 'defines': ['CRASH_IMPLEMENTATION'], |
219 'conditions': [ | 219 'conditions': [ |
| 220 ['OS=="win"', { |
| 221 'dependencies': [ |
| 222 # TODO(fdoray): Remove this once the PreRead field trial has |
| 223 # expired. crbug.com/577698 |
| 224 '<(DEPTH)/components/components.gyp:startup_metric_utils_common'
, |
| 225 '<(DEPTH)/content/content.gyp:content_common', |
| 226 ], |
| 227 }], |
220 ['OS=="mac" or OS=="win"', { | 228 ['OS=="mac" or OS=="win"', { |
221 'dependencies': [ | 229 'dependencies': [ |
222 '../third_party/crashpad/crashpad/client/client.gyp:crashpad_cli
ent', | 230 '../third_party/crashpad/crashpad/client/client.gyp:crashpad_cli
ent', |
223 ], | 231 ], |
224 }], | 232 }], |
225 ], | 233 ], |
226 }, | 234 }, |
227 { | 235 { |
228 # TODO(mark): https://crbug.com/466890: remove this target. | 236 # TODO(mark): https://crbug.com/466890: remove this target. |
229 # | 237 # |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 ], | 432 ], |
425 }], | 433 }], |
426 ], | 434 ], |
427 }, | 435 }, |
428 ], | 436 ], |
429 }], | 437 }], |
430 ], | 438 ], |
431 }], | 439 }], |
432 ], | 440 ], |
433 } | 441 } |
OLD | NEW |