| # Copyright lowRISC contributors. |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| load("//rules:opentitan.bzl", "OPENTITAN_CPU") |
| |
| # TODO use more specific targets to avoid unnecesary dependencies |
| # https://github.com/lowRISC/opentitan/issues/9098 |
| cc_library( |
| name = "testing", |
| srcs = [ |
| "test_framework/test_coverage_none.c", |
| "test_framework/test_status.c", |
| ], |
| hdrs = [ |
| "check.h", |
| "test_framework/test_coverage.h", |
| "test_framework/test_status.h", |
| ], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/arch:device", |
| "//sw/device/lib/base", |
| "//sw/device/lib/dif:uart", |
| "//sw/device/lib/runtime:hart", |
| "//sw/device/lib/runtime:log", |
| "//sw/device/lib/runtime:print", |
| ], |
| ) |