diff options
author | Makarand Dharmapurikar <makarandd@google.com> | 2017-04-24 16:22:49 -0700 |
---|---|---|
committer | Makarand Dharmapurikar <makarandd@google.com> | 2017-04-24 16:22:49 -0700 |
commit | be0fb725f64513d5d0981375dfbb076bb2d0587b (patch) | |
tree | 7b7d053199088b17453510c906dfdbcc8c84f22b /examples | |
parent | 4c0620b7df8b53a66e21e8cb40c5a88141118e28 (diff) |
fixed target name so bazel basic build passes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/BUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/BUILD b/examples/BUILD index 3870591195..382713e5e4 100644 --- a/examples/BUILD +++ b/examples/BUILD @@ -33,12 +33,12 @@ load("//bazel:grpc_build_system.bzl", "grpc_proto_library") grpc_proto_library( name = "auth_sample", - srcs = ["auth_sample.proto"], + srcs = ["protos/auth_sample.proto"], ) grpc_proto_library( name = "hellostreamingworld", - srcs = ["hellostreamingworld.proto"], + srcs = ["protos/hellostreamingworld.proto"], ) grpc_proto_library( |