-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proto libraries with dependencies #190
Comments
Is there any plan on supporting this feature? Also, is there some workaround we can use for this (other than bundling statically generated files, of course)? |
Ability to specify deps in closure_js_proto_library would be definitely helpful. My proto is importing "google/protobuf/timestamp.proto" and right now I don't see any way to specify a dependency on it. |
I've run into a similar issue. The protos I'm compiling import Incidentally, if I strip out my |
Is there a way to generate a JS proto library from a .proto file with dependencies (on other .proto files that the top-level .proto imports) ? IIUC closure_js_proto_library does not support a deps= argument. I suppose it could?
I believe the implementation of closure_js_proto_library(deps=...) could rely on the proto_library rule added to Bazel recently.
The text was updated successfully, but these errors were encountered: