| 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 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 if (is_mac || is_win) { | 38 if (is_mac || is_win) { |
| 39 sources += [ "crashpad.cc" ] | 39 sources += [ "crashpad.cc" ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 defines = [ "CRASH_IMPLEMENTATION" ] | 42 defines = [ "CRASH_IMPLEMENTATION" ] |
| 43 | 43 |
| 44 public_deps = [ | 44 public_deps = [ |
| 45 ":app_non_mac_win", | 45 ":app_non_mac_win", |
| 46 ":lib", | 46 ":lib", |
| 47 "//third_party/kasko", | |
| 48 ] | 47 ] |
| 49 deps = [ | 48 deps = [ |
| 50 "//base", | 49 "//base", |
| 51 ] | 50 ] |
| 52 | 51 |
| 53 if (is_mac || is_win) { | 52 if (is_mac || is_win) { |
| 54 deps += [ | 53 deps += [ |
| 55 "//third_party/crashpad/crashpad/client", | 54 "//third_party/crashpad/crashpad/client", |
| 56 "//third_party/crashpad/crashpad/snapshot:snapshot_api", | 55 "//third_party/crashpad/crashpad/snapshot:snapshot_api", |
| 57 ] | 56 ] |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 ":lib", | 217 ":lib", |
| 219 "//base", | 218 "//base", |
| 220 "//testing/gmock", | 219 "//testing/gmock", |
| 221 "//testing/gtest", | 220 "//testing/gtest", |
| 222 ] | 221 ] |
| 223 | 222 |
| 224 if (is_win) { | 223 if (is_win) { |
| 225 deps += [ "//breakpad:client" ] | 224 deps += [ "//breakpad:client" ] |
| 226 } | 225 } |
| 227 } | 226 } |
| OLD | NEW |