Skip to content

Commit 077b3bf

Browse files
author
Chris Cummins
committed
Add missing cmake dependencies.
1 parent c1f89eb commit 077b3bf

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

compiler_gym/service/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ py_library(
1515
":compilation_session",
1616
":connection",
1717
# TODO(github.com/facebookresearch/CompilerGym/pull/633):
18-
# add this after circular dependencies are resolved
18+
# add this after circular dependencies are resolved:
1919
# ":client_service_compiler_env",
2020
":connection_pool",
2121
# TODO(github.com/facebookresearch/CompilerGym/pull/633):

compiler_gym/service/CMakeLists.txt

Lines changed: 12 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
::service_cache
2021
compiler_gym::errors::errors
2122
compiler_gym::service::proto::proto
@@ -79,6 +80,15 @@ cg_py_library(
7980
PUBLIC
8081
)
8182

83+
cg_py_library(
84+
connection_pool
85+
SRCS
86+
"connection_pool.py"
87+
DEPS
88+
::connection
89+
PUBLIC
90+
)
91+
8292
cg_py_library(
8393
NAME
8494
service_cache

0 commit comments

Comments
 (0)