I'm currently building grpc as an external http_archive dependency in a bazel project. To debug grpc issues, I would like to build grpc with special tracing enabled as described
here. This requires the config=dbg environment variable to be set when running make.
I'm using bazel, and working with grpc as an external repo. How might I set this environment variable?
To be specific, I'm currently loading a .bzl file with the following text:
...
My impression is that I can copy the repo locally and directly modify its BUILD file, setting package specific environment variable with a bazel action, but I'm hoping there's a simpler approach here.