blob: 8a65abbea7f3da9a566dd24c758ad0764cbafe0e [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/cpp/library_headers.gni")
library_headers("headers") {
testonly = true
headers = [ "mock-mmio-range/mock-mmio-range.h" ]
}
source_set("mock-mmio-range") {
testonly = true
public_deps = [
":headers",
"//src/devices/lib/mmio",
"//zircon/system/ulib/fbl",
]
sources = []
}
group("tests") {
testonly = true
deps = [ "test:mock-mmio-range-test" ]
}