blob: 2f6f22c9776ae895c28d3cf70e8f36990807f113 [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.
import("//build/cpp/sdk_source_set.gni")
group("tests") {
testonly = true
deps = [ "tests:tests" ]
}
config("config") {
include_dirs = [ "include" ]
}
sdk_source_set("fuchsia-mem-ext") {
category = "internal"
sdk_name = "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" ]
}