| # Copyright 2014 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| # TODO(crbug.com/565771): This target should be removed. |
| if (is_win) { |
| static_library("deprecated_breakpad_win") { |
| visibility = [ "//components/nacl/broker:nacl64" ] |
| |
| sources = [ |
| "breakpad_win.cc", |
| "breakpad_win.h", |
| "hard_error_handler_win.cc", |
| "hard_error_handler_win.h", |
| ] |
| |
| defines = [ "CRASH_IMPLEMENTATION" ] |
| |
| deps = [ |
| "//base", |
| "//base:base_static", |
| "//components/crash/core/app:lib", |
| "//components/crash/core/common", |
| "//content/public/common:result_codes", |
| "//third_party/breakpad:breakpad_handler", |
| "//third_party/breakpad:client", |
| ] |
| |
| include_dirs = [ "../../../../third_party/breakpad/breakpad/src" ] |
| |
| libs = [ "userenv.lib" ] |
| } |
| } |