| 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 assert(!is_ios) | 5 assert(!is_ios) |
| 6 if (is_android) { | 6 if (is_android) { |
| 7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("lib") { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 public_deps = [ | 47 public_deps = [ |
| 48 ":app_non_mac_win", | 48 ":app_non_mac_win", |
| 49 ":lib", | 49 ":lib", |
| 50 "//third_party/kasko", | 50 "//third_party/kasko", |
| 51 ] | 51 ] |
| 52 deps = [ | 52 deps = [ |
| 53 "//base", | 53 "//base", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 if (is_win) { | |
| 57 deps += [ | |
| 58 # TODO(fdoray): Remove this once the PreRead field trial has expired. | |
| 59 # crbug.com/577698 | |
| 60 "//components/startup_metric_utils/common", | |
| 61 ] | |
| 62 } | |
| 63 if (is_mac || is_win) { | 56 if (is_mac || is_win) { |
| 64 deps += [ | 57 deps += [ |
| 65 "//third_party/crashpad/crashpad/client", | 58 "//third_party/crashpad/crashpad/client", |
| 66 "//third_party/crashpad/crashpad/snapshot:snapshot_api", | 59 "//third_party/crashpad/crashpad/snapshot:snapshot_api", |
| 67 ] | 60 ] |
| 68 } | 61 } |
| 69 if (is_win) { | 62 if (is_win) { |
| 70 deps += [ "//third_party/crashpad/crashpad/handler:handler_lib" ] | 63 deps += [ "//third_party/crashpad/crashpad/handler:handler_lib" ] |
| 71 } | 64 } |
| 72 } | 65 } |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 ":lib", | 205 ":lib", |
| 213 "//base", | 206 "//base", |
| 214 "//testing/gmock", | 207 "//testing/gmock", |
| 215 "//testing/gtest", | 208 "//testing/gtest", |
| 216 ] | 209 ] |
| 217 | 210 |
| 218 if (is_win) { | 211 if (is_win) { |
| 219 deps += [ "//breakpad:client" ] | 212 deps += [ "//breakpad:client" ] |
| 220 } | 213 } |
| 221 } | 214 } |
| OLD | NEW |