| 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_mac.mm', | 210 'crash/content/app/crashpad_mac.mm', |
| 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 '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 ], |
| 226 }], |
| 220 ['OS=="mac" or OS=="win"', { | 227 ['OS=="mac" or OS=="win"', { |
| 221 'dependencies': [ | 228 'dependencies': [ |
| 222 '../third_party/crashpad/crashpad/client/client.gyp:crashpad_cli
ent', | 229 '../third_party/crashpad/crashpad/client/client.gyp:crashpad_cli
ent', |
| 223 '../third_party/crashpad/crashpad/snapshot/snapshot.gyp:crashpad
_snapshot_api', | 230 '../third_party/crashpad/crashpad/snapshot/snapshot.gyp:crashpad
_snapshot_api', |
| 224 ], | 231 ], |
| 225 }], | 232 }], |
| 226 ], | 233 ], |
| 227 'defines': ['CRASH_IMPLEMENTATION'], | 234 'defines': ['CRASH_IMPLEMENTATION'], |
| 228 }, | 235 }, |
| 229 { | 236 { |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 ], | 433 ], |
| 427 }], | 434 }], |
| 428 ], | 435 ], |
| 429 }, | 436 }, |
| 430 ], | 437 ], |
| 431 }], | 438 }], |
| 432 ], | 439 ], |
| 433 }], | 440 }], |
| 434 ], | 441 ], |
| 435 } | 442 } |
| OLD | NEW |