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