| # Copyright 2024 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. |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| cc_library( |
| name = "cpp", |
| srcs = [ |
| "globally-ordered-region.cc", |
| "region.cc", |
| "register.cc", |
| ], |
| hdrs = [ |
| "globally-ordered-region.h", |
| "region.h", |
| "register.h", |
| ], |
| include_prefix = "lib/driver/mock-mmio/cpp", |
| target_compatible_with = ["@platforms//os:fuchsia"], |
| deps = [ |
| "@fuchsia_sdk//pkg/driver_mmio_cpp", |
| "@fuchsia_sdk//pkg/stdcompat", |
| ], |
| ) |