Skip to content

Commit 58cb318

Browse files
committed
Add missing cmake dependencies.
1 parent 5900470 commit 58cb318

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

compiler_gym/service/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ py_library(
1313
":compilation_session",
1414
":connection",
1515
# TODO(github.com/facebookresearch/CompilerGym/pull/633):
16-
# add this after circular dependencies are resolved
16+
# add this after circular dependencies are resolved:
1717
# ":client_service_compiler_env",
1818
":connection_pool",
1919
"//compiler_gym/service/proto",

compiler_gym/service/CMakeLists.txt

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ cg_py_library(
1414
::compilation_session
1515
::connection
1616
# TODO(github.com/facebookresearch/CompilerGym/pull/633):
17-
# add this after circular dependencies are resolved
18-
#::client_service_compiler_env
17+
# add this after circular dependencies are resolved:
18+
# ::client_service_compiler_env
19+
::connection_pool
1920
compiler_gym::service::proto::proto
2021
PUBLIC
2122
)
@@ -73,3 +74,13 @@ cg_py_library(
7374
compiler_gym::views::views
7475
PUBLIC
7576
)
77+
78+
cg_py_library(
79+
NAME
80+
connection_pool
81+
SRCS
82+
"connection_pool.py"
83+
DEPS
84+
::connection
85+
PUBLIC
86+
)

0 commit comments

Comments
 (0)