blob: b5d275fafb4d70a4d2f816d5c0468e8d617e273a [file] [log] [blame]
# Copyright 2020 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/zircon/migrated_targets.gni")
group("ram-crashlog") {
public_deps = [ ":lib" ]
}
group("tests") {
testonly = true
deps = [ "tests" ]
}
zx_library("lib") {
sdk = "source"
sdk_headers = [ "ram-crashlog/ram-crashlog.h" ]
sources = [ "ram-crashlog.cc" ]
deps = [ "//zircon/third_party/ulib/cksum" ]
host = true
kernel = true
static = true
}