blob: 61bdeb511e598daec23985cdb0db377a671f902e [file] [log] [blame] [edit]
# 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: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" ]
}