Skip to content

Commit

Permalink
Move cell_parser.py into own py_library.
Browse files Browse the repository at this point in the history
Signed-off-by: Tim 'mithro' Ansell <[email protected]>
  • Loading branch information
mithro committed Nov 11, 2023
1 parent 53a8adf commit 4bb184a
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions pdk/liberty/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,19 @@ py_binary(
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
":cell_parser",
":liberty_utility",
requirement("absl-py"),
],
)

py_library(
name = "cell_parser",
name = "liberty_utility",
srcs = [
"cell_parser.py",
"liberty_utility.py",
],
deps = [
":cell_parser",
],
)

py_test(
Expand All @@ -45,7 +47,14 @@ py_test(
],
python_version = "PY3",
deps = [
":cell_parser",
":liberty_utility",
],
)

py_library(
name = "cell_parser",
srcs = [
"cell_parser.py",
],
)

Expand Down

0 comments on commit 4bb184a

Please sign in to comment.