| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 'dependencies': [ | 217 'dependencies': [ |
| 218 'crash_component_non_mac_win', | 218 'crash_component_non_mac_win', |
| 219 'crash_component_lib', | 219 'crash_component_lib', |
| 220 '../base/base.gyp:base', | 220 '../base/base.gyp:base', |
| 221 '../third_party/kasko/kasko.gyp:kasko', | 221 '../third_party/kasko/kasko.gyp:kasko', |
| 222 ], | 222 ], |
| 223 'export_dependent_settings': [ | 223 'export_dependent_settings': [ |
| 224 '../third_party/kasko/kasko.gyp:kasko', | 224 '../third_party/kasko/kasko.gyp:kasko', |
| 225 ], | 225 ], |
| 226 'conditions': [ | 226 'conditions': [ |
| 227 ['OS=="win"', { | |
| 228 'dependencies': [ | |
| 229 # TODO(fdoray): Remove this once the PreRead field trial has | |
| 230 # expired. crbug.com/577698 | |
| 231 '<(DEPTH)/components/components.gyp:startup_metric_utils_win', | |
| 232 ], | |
| 233 }], | |
| 234 ['OS=="mac" or OS=="win"', { | 227 ['OS=="mac" or OS=="win"', { |
| 235 'dependencies': [ | 228 'dependencies': [ |
| 236 '../third_party/crashpad/crashpad/client/client.gyp:crashpad_cli
ent', | 229 '../third_party/crashpad/crashpad/client/client.gyp:crashpad_cli
ent', |
| 237 '../third_party/crashpad/crashpad/snapshot/snapshot.gyp:crashpad
_snapshot_api', | 230 '../third_party/crashpad/crashpad/snapshot/snapshot.gyp:crashpad
_snapshot_api', |
| 238 ], | 231 ], |
| 239 }], | 232 }], |
| 240 ['OS=="win"', { | 233 ['OS=="win"', { |
| 241 'dependencies': [ | 234 'dependencies': [ |
| 242 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_h
andler_lib', | 235 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_h
andler_lib', |
| 243 ], | 236 ], |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 ], | 475 ], |
| 483 }], | 476 }], |
| 484 ], | 477 ], |
| 485 }, | 478 }, |
| 486 ], | 479 ], |
| 487 }], | 480 }], |
| 488 ], | 481 ], |
| 489 }], | 482 }], |
| 490 ], | 483 ], |
| 491 } | 484 } |
| OLD | NEW |