blob: dea8d1385d4684904426bba84a673ea7044f0cbc [file] [log] [blame]
# Copyright 2019 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.
##########################################
# Though under //zircon, this build file #
# is meant to be used in the Fuchsia GN #
# build. #
# See fxbug.dev/36548. #
##########################################
assert(!defined(zx) || zx != "/",
"This file can only be used in the Fuchsia GN build.")
import("//build/unification/zx_library.gni")
zx_library("fs-host") {
sdk = "source"
sdk_headers = [
"fs-host/common.h",
"fs-host/json_recorder.h",
]
host = true
sources = [
"common.cc",
"json_recorder.cc",
]
public_deps = [
# <fs-host/json_recorder.h> has #include <lib/zircon-internal/thread_annotations.h>.
"//zircon/public/lib/zircon-internal",
]
deps = [ "//zircon/public/lib/fbl" ]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}