blob: 5d92c6c8abfecd73635fe47e4955ee4057e09749 [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 = [
"//garnet/public/lib/app/cpp",
"//third_party/crashpad/client",
"//third_party/crashpad/handler",
"//third_party/crashpad/third_party/mini_chromium/mini_chromium/base",
"//zircon/public/fidl/crash:crash",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/fdio",
"//zircon/public/lib/zx",
]
sources = [
"crashpad_analyzer.cc",
]
libs = [ "zircon" ]
}
package("crashpad_analyzer") {
deps = [
":bin",
]
binary = "crashpad_analyzer"
meta = [
{
path = rebase_path("meta/crashpad_analyzer.cmx")
dest = "crashpad_analyzer.cmx"
},
]
}