commit | 9c11463770beab0c6f244999e66676f9bca866fd | [log] [tgz] |
---|---|---|
author | Krishna Ersson <2743723+kersson@users.noreply.github.com> | Tue Aug 15 15:51:01 2023 -0400 |
committer | Petteri Aimonen <jpa@github.mail.kapsi.fi> | Thu Aug 31 09:14:55 2023 +0300 |
tree | b20d1fc232ffc9691bc621d2469d83faeacb417a | |
parent | d9ecc77395f09cd8cafd8b63cb82a27e6b02c04a [diff] |
Add missing source and data files
diff --git a/BUILD.bazel b/BUILD.bazel index 50b616c..5ca4acf 100644 --- a/BUILD.bazel +++ b/BUILD.bazel
@@ -37,10 +37,17 @@ py_binary( name = "protoc-gen-nanopb", - srcs = [ - "generator/nanopb_generator.py", + srcs = glob([ + "generator/**/*.py", + ]) + [ ":protoc-gen-nanopb.py", ], + data = glob([ + "generator/**/*.proto", + ]), + imports = [ + "generator", + ], deps = [ requirement("grpcio-tools"), ],