Sign in
bazel
/
bazel
/
ed79a0f459b043b27e208e162b70f09a15a115ac
/
.
/
examples
/
py
/
BUILD
blob: 8dba6e0384b35828f307163078d098a36d808cd2 [
file
] [
log
] [
blame
]
py_library
(
name
=
"lib"
,
srcs
=
[
"lib.py"
],
)
py_binary
(
name
=
"bin"
,
srcs
=
[
"bin.py"
],
deps
=
[
":lib"
],
)
filegroup
(
name
=
"srcs"
,
srcs
=
[
"BUILD"
]
+
glob
([
"**/*.py"
]),
visibility
=
[
"//examples:__pkg__"
],
)