parselink-old/tests/proto/BUILD
2023-11-06 16:16:04 -08:00

23 lines
319 B
Python

cc_library(
name = "test_deps",
srcs = [
"test_main.cpp",
],
deps = [
"//source/proto",
"@expected",
"@fmt",
"@magic_enum",
"@ut",
],
)
cc_test(
name = "session_id",
srcs = [
"test_session_id.cpp",
],
deps = ["test_deps"],
)