fix bazel build dependencies

This commit is contained in:
HappyZ 2023-05-25 17:35:56 -07:00
parent 09deb4877e
commit cd71c8d2d0
2 changed files with 6 additions and 6 deletions

1
BUILD
View File

@ -37,6 +37,7 @@ par_binary(
"//utilities:text2img",
"//utilities:translator",
"//utilities:img2img",
"//utilities:inpainting",
"//utilities:times",
],
)

View File

@ -21,10 +21,12 @@ py_library(
srcs=["database.py"],
deps=[
":logger",
":times",
":images",
":constants",
],
)
py_library(
name="envvar",
srcs=["envvar.py"],
@ -78,6 +80,7 @@ py_library(
":memory",
":model",
":times",
":images",
],
)
@ -92,6 +95,7 @@ py_library(
":memory",
":model",
":times",
":images",
],
)
@ -124,8 +128,3 @@ py_library(
name="translator",
srcs=["translator.py"],
)
py_library(
name="web",
srcs=["web.py"],
)