diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2023-03-13 10:48:00 +0100 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2023-03-15 14:36:45 +0100 |
commit | e849a1d42178ffc80118e17ae2f10b940317bc9a (patch) | |
tree | 59e7bf66056707e2d3831ccdf78348981002fe03 /src | |
parent | e73494c2342ef83c35c404a5bab306aac828770c (diff) | |
download | justbuild-e849a1d42178ffc80118e17ae2f10b940317bc9a.tar.gz |
bazel api: fix include of proto files...
...bazel_types.hpp just requires the messages, not the grpc related
services and classes
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/common/bazel_types.hpp | 2 | ||||
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_ac_client.hpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/common/bazel_types.hpp b/src/buildtool/common/bazel_types.hpp index 85e06764..e2b785a1 100644 --- a/src/buildtool/common/bazel_types.hpp +++ b/src/buildtool/common/bazel_types.hpp @@ -47,7 +47,7 @@ using int64 = int64_t; #else -#include "build/bazel/remote/execution/v2/remote_execution.grpc.pb.h" +#include "build/bazel/remote/execution/v2/remote_execution.pb.h" #endif diff --git a/src/buildtool/execution_api/remote/bazel/bazel_ac_client.hpp b/src/buildtool/execution_api/remote/bazel/bazel_ac_client.hpp index 99c28412..6d4a1713 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_ac_client.hpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_ac_client.hpp @@ -20,6 +20,7 @@ #include <string> #include <vector> +#include "build/bazel/remote/execution/v2/remote_execution.grpc.pb.h" #include "src/buildtool/common/bazel_types.hpp" #include "src/buildtool/execution_api/bazel_msg/bazel_common.hpp" #include "src/buildtool/execution_api/remote/config.hpp" |