| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("lib") { | 9 source_set("lib") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 public_deps = [ | 42 public_deps = [ |
| 43 ":app_non_mac_win", | 43 ":app_non_mac_win", |
| 44 "//third_party/kasko", | 44 "//third_party/kasko", |
| 45 ] | 45 ] |
| 46 deps = [ | 46 deps = [ |
| 47 "//base", | 47 "//base", |
| 48 "//third_party/kasko", | 48 "//third_party/kasko", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 deps += [ ":lib" ] | 51 deps += [ ":lib" ] |
| 52 if (is_win) { |
| 53 deps += [ |
| 54 # TODO(fdoray): Remove this once the PreRead field trial has expired. |
| 55 # crbug.com/577698 |
| 56 "//components/startup_metric_utils/common", |
| 57 ] |
| 58 } |
| 52 if (is_mac || is_win) { | 59 if (is_mac || is_win) { |
| 53 deps += [ | 60 deps += [ |
| 54 "//third_party/crashpad/crashpad/client", | 61 "//third_party/crashpad/crashpad/client", |
| 55 "//third_party/crashpad/crashpad/snapshot:snapshot_api", | 62 "//third_party/crashpad/crashpad/snapshot:snapshot_api", |
| 56 ] | 63 ] |
| 57 } | 64 } |
| 58 } | 65 } |
| 59 | 66 |
| 60 # TODO(mark): https://crbug.com/466890: merge this target with | 67 # TODO(mark): https://crbug.com/466890: merge this target with |
| 61 # crash_component. | 68 # crash_component. |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 177 |
| 171 if (is_mac) { | 178 if (is_mac) { |
| 172 deps += [ "//breakpad" ] | 179 deps += [ "//breakpad" ] |
| 173 } | 180 } |
| 174 | 181 |
| 175 if (is_win) { | 182 if (is_win) { |
| 176 deps += [ "//breakpad:breakpad_handler" ] | 183 deps += [ "//breakpad:breakpad_handler" ] |
| 177 } | 184 } |
| 178 } | 185 } |
| 179 } | 186 } |
| OLD | NEW |