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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "fallback_crash_handler_win.h", | 71 "fallback_crash_handler_win.h", |
72 "fallback_crash_handling_win.cc", | 72 "fallback_crash_handling_win.cc", |
73 "fallback_crash_handling_win.h", | 73 "fallback_crash_handling_win.h", |
74 "run_as_crashpad_handler_win.cc", | 74 "run_as_crashpad_handler_win.cc", |
75 "run_as_crashpad_handler_win.h", | 75 "run_as_crashpad_handler_win.h", |
76 ] | 76 ] |
77 | 77 |
78 deps = [ | 78 deps = [ |
79 "//base", | 79 "//base", |
80 "//chrome/install_static:install_static_util", | 80 "//chrome/install_static:install_static_util", |
| 81 "//components/browser_watcher:crash_stability", |
81 "//third_party/crashpad/crashpad/client", | 82 "//third_party/crashpad/crashpad/client", |
82 "//third_party/crashpad/crashpad/handler:handler_lib", | 83 "//third_party/crashpad/crashpad/handler:handler_lib", |
83 "//third_party/crashpad/crashpad/minidump", | 84 "//third_party/crashpad/crashpad/minidump", |
84 ] | 85 ] |
85 } | 86 } |
86 } | 87 } |
87 | 88 |
88 # TODO(mark): https://crbug.com/466890: merge this target with | 89 # TODO(mark): https://crbug.com/466890: merge this target with |
89 # crash_component. | 90 # crash_component. |
90 # | 91 # |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 if (is_win) { | 237 if (is_win) { |
237 deps += [ | 238 deps += [ |
238 ":run_as_crashpad_handler", | 239 ":run_as_crashpad_handler", |
239 "//breakpad:client", | 240 "//breakpad:client", |
240 "//third_party/crashpad/crashpad/client:client", | 241 "//third_party/crashpad/crashpad/client:client", |
241 "//third_party/crashpad/crashpad/snapshot:snapshot", | 242 "//third_party/crashpad/crashpad/snapshot:snapshot", |
242 "//third_party/crashpad/crashpad/util", | 243 "//third_party/crashpad/crashpad/util", |
243 ] | 244 ] |
244 } | 245 } |
245 } | 246 } |
OLD | NEW |