├── .gitignore ├── BUILD ├── BUILD.boringssl ├── BUILD.zlib ├── README.md ├── WORKSPACE ├── grpc_proto.bzl └── src ├── BUILD ├── greeter_client.cc ├── greeter_server.cc └── helloworld.proto /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- 1 | export_files(['grpc_proto.bzl']) 2 | -------------------------------------------------------------------------------- /BUILD.boringssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/BUILD.boringssl -------------------------------------------------------------------------------- /BUILD.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/BUILD.zlib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/WORKSPACE -------------------------------------------------------------------------------- /grpc_proto.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/grpc_proto.bzl -------------------------------------------------------------------------------- /src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/src/BUILD -------------------------------------------------------------------------------- /src/greeter_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/src/greeter_client.cc -------------------------------------------------------------------------------- /src/greeter_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/src/greeter_server.cc -------------------------------------------------------------------------------- /src/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korfuri/grpc-bazel/HEAD/src/helloworld.proto --------------------------------------------------------------------------------