Skip to content

Commit f8e0fe5

Browse files
committed
fix visibility
1 parent 8648510 commit f8e0fe5

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

tests/Integration/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ cc_test(
44
name = "integration-test",
55
srcs = glob(["**/*.cpp"]),
66
linkstatic = True,
7+
visibility = ["//visibility:public"],
78
deps = [
89
"//src/Assembler:assembler_core",
910
"//src/Emulator:emulator_core",

tests/Modular/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ cc_test(
66
["**/*.cpp"],
77
),
88
linkstatic = True,
9+
visibility = ["//visibility:public"],
910
deps = [
1011
"//src/Assembler:assembler_core",
1112
"//src/Emulator:emulator_core",

tests/Pog/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load("@rules_cc//cc:defs.bzl", "cc_test")
33
cc_test(
44
name = "test-pog",
55
srcs = glob(["**/*.cpp"]),
6+
visibility = ["//visibility:public"],
67
deps = [
78
"//src/PCH:pch_cstd",
89
"//src/Pog:pog",

0 commit comments

Comments
 (0)