blob: 02f935afeb876a0a6118008f881d092cd4451fcf [file] [log] [blame]
# Copyright 2021 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.
group("tests") {
testonly = true
deps = [ "tests" ]
}
config("config") {
include_dirs = [ "include" ]
}
source_set("fuchsia-mem-ext") {
public = [ "include/lib/fuchsia-mem-ext/fuchsia-mem-ext.h" ]
public_deps = [
"//sdk/fidl/fuchsia.mem:fuchsia.mem_hlcpp",
"//sdk/lib/stdcompat",
"//zircon/system/ulib/zx",
]
sources = [ "fuchsia-mem-ext.cc" ]
public_configs = [ ":config" ]
}