github.com/emcfarlane/larking@v0.0.0-20220605172417-1704b45ee6c3/examples/cpp/helloworld/BUILD.bazel (about)

     1  load("@rules_cc//cc:defs.bzl", "cc_binary")
     2  
     3  cc_binary(
     4      name = "helloworld",
     5      srcs = ["hello_world.cc"],
     6      defines = ["BAZEL_BUILD"],
     7      deps = [
     8          "//examples/proto:helloworld_cc_grpc",
     9          "//examples/proto:helloworld_cc_proto",
    10          "@com_github_grpc_grpc//:grpc++",
    11          "@com_github_grpc_grpc//:grpc++_reflection",
    12      ],
    13  )