| 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 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 if (is_mac || is_win) { | 41 if (is_mac || is_win) { |
| 42 sources += [ "crashpad.cc" ] | 42 sources += [ "crashpad.cc" ] |
| 43 } | 43 } |
| 44 | 44 |
| 45 defines = [ "CRASH_IMPLEMENTATION" ] | 45 defines = [ "CRASH_IMPLEMENTATION" ] |
| 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:kasko_features", |
| 51 ] | 51 ] |
| 52 deps = [ | 52 deps = [ |
| 53 "//base", | 53 "//base", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 if (is_win) { | 56 if (is_win) { |
| 57 deps += [ | 57 deps += [ |
| 58 # TODO(fdoray): Remove this once the PreRead field trial has expired. | 58 # TODO(fdoray): Remove this once the PreRead field trial has expired. |
| 59 # crbug.com/577698 | 59 # crbug.com/577698 |
| 60 "//components/startup_metric_utils/common", | 60 "//components/startup_metric_utils/common", |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 ":lib", | 212 ":lib", |
| 213 "//base", | 213 "//base", |
| 214 "//testing/gmock", | 214 "//testing/gmock", |
| 215 "//testing/gtest", | 215 "//testing/gtest", |
| 216 ] | 216 ] |
| 217 | 217 |
| 218 if (is_win) { | 218 if (is_win) { |
| 219 deps += [ "//breakpad:client" ] | 219 deps += [ "//breakpad:client" ] |
| 220 } | 220 } |
| 221 } | 221 } |
| OLD | NEW |