blob: 2509e8fa1d5d8c671563527a62877bba107c8157 [file] [log] [blame]
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/package.gni")
executable("bin") {
output_name = "crashpad_analyzer"
deps = [
"//third_party/crashpad/client",
"//third_party/crashpad/handler",
"//third_party/crashpad/third_party/mini_chromium/mini_chromium/base",
"//zircon/public/lib/fdio",
"//zircon/public/lib/launchpad",
"//zircon/public/lib/zx",
]
sources = [
"crashpad_analyzer.cc",
]
libs = [ "zircon" ]
}
package("crashpad_analyzer") {
deprecated_system_image = true
deps = [
":bin",
]
binaries = [
{
name = "crashpad_analyzer"
},
]
}