| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 deps += [ | 237 deps += [ |
| 239 ":run_as_crashpad_handler", | 238 ":run_as_crashpad_handler", |
| 240 "//breakpad:client", | 239 "//breakpad:client", |
| 241 "//third_party/crashpad/crashpad/client:client", | 240 "//third_party/crashpad/crashpad/client:client", |
| 242 "//third_party/crashpad/crashpad/compat", | 241 "//third_party/crashpad/crashpad/compat", |
| 243 "//third_party/crashpad/crashpad/snapshot:snapshot", | 242 "//third_party/crashpad/crashpad/snapshot:snapshot", |
| 244 "//third_party/crashpad/crashpad/util", | 243 "//third_party/crashpad/crashpad/util", |
| 245 ] | 244 ] |
| 246 } | 245 } |
| 247 } | 246 } |
| OLD | NEW |