23 lines
319 B
Python
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"],
|
|
)
|