diff --git a/BUILD b/BUILD index 4814cad..539775c 100644 --- a/BUILD +++ b/BUILD @@ -37,6 +37,7 @@ par_binary( "//utilities:text2img", "//utilities:translator", "//utilities:img2img", + "//utilities:inpainting", "//utilities:times", ], ) diff --git a/utilities/BUILD b/utilities/BUILD index 9265bac..a82111c 100644 --- a/utilities/BUILD +++ b/utilities/BUILD @@ -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"], -)