Skip to content
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

Flags #15

Merged
merged 10 commits into from
Apr 29, 2019
13 changes: 13 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
workspace(name = "remote_client")

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

# Needed for protobuf.
http_archive(
Expand Down Expand Up @@ -32,6 +33,18 @@ http_archive(
],
)

git_repository(
name = "com_github_gflags_gflags",
#tag = "v2.2.0",
ramymedhat marked this conversation as resolved.
Show resolved Hide resolved
commit = "30dbc81fb5ffdc98ea9b14b1918bfe4e8779b26e", # v2.2.0 + fix of include path
remote = "https://github.com/gflags/gflags.git"
)

bind(
name = "gflags",
actual = "@com_github_gflags_gflags//:gflags",
)

# Pull in all gRPC dependencies.
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")

Expand Down
1 change: 1 addition & 0 deletions src/main/cc/proxy_client/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ cc_library(
],
deps = [
"//external:grpc++",
"//external:gflags",
"//src/main/cc/ipc:goma_ipc_lib",
"//src/main/proto:command_server_cc_proto",
"//src/main/proto:include_processor_cc_proto",
Expand Down
Loading