blob: a96803ce3655f729a4c1589e256b7c2e7b8a3fc9 [file] [log] [blame]
# Copyright 2023 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/components.gni")
import("//build/test.gni")
group("tests") {
testonly = true
deps = [ ":driver-restricted-symbols-tests" ]
}
source_set("driver_symbols") {
sources = [
"restricted_symbols.h",
"symbols.cc",
"symbols.h",
]
deps = [ "//zircon/system/ulib/zircon-internal" ]
public_deps = [ "//zircon/system/ulib/zx" ]
}
test("driver_symbols_test") {
sources = [ "symbols_test.cc" ]
deps = [
":driver_symbols",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_component("driver_symbols_unittests") {
deps = [ ":driver_symbols_test" ]
}
fuchsia_test_package("driver-restricted-symbols-tests") {
test_components = [ ":driver_symbols_unittests" ]
}