blob: 4bb2fa58627d7e6c8c09db2e90a0fddcd8c9fa2e [file] [log] [blame] [edit]
# 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.
import("//build/zircon/zx_library.gni")
zx_library("sysmem-version") {
sdk = "source"
sdk_headers = [ "lib/sysmem-version/sysmem-version.h" ]
sources = [ "sysmem-version.cc" ]
public_deps = [
"//sdk/fidl/fuchsia.sysmem:fuchsia.sysmem_cpp",
"//sdk/fidl/fuchsia.sysmem2:fuchsia.sysmem2_cpp",
]
deps = [
"//sdk/lib/fidl",
"//zircon/third_party/ulib/safemath",
]
# TODO(fxbug.dev/94768): This target uses mutable tables which are deprecated,
# rather than builders.
configs += [ "//build/cpp:fidl-wire-deprecated-mutable-tables" ]
}
group("tests") {
testonly = true
deps = [ "test:tests" ]
}