Skip to content

Commit 7bf94c8

Browse files
committed
Add missing protobuf includes.
Signed-off-by: Piotr Sikora <[email protected]>
1 parent 9af5ac0 commit 7bf94c8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

BUILD

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ cc_library(
1212
],
1313
deps = [
1414
":common_lib",
15+
"@com_google_protobuf//:protobuf_lite",
1516
],
1617
)
1718

@@ -63,7 +64,7 @@ cc_library(
6364
deps = [
6465
":proxy_wasm_intrinsics",
6566
":proxy_wasm_intrinsics_lite_cc_proto",
66-
"@com_google_protobuf//:protobuf",
67+
"@com_google_protobuf//:protobuf_lite",
6768
],
6869
)
6970

proxy_wasm_api.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
// NOLINT(namespace-envoy)
2222
#pragma once
2323

24+
#ifdef PROXY_WASM_PROTOBUF
25+
#include "google/protobuf/message_lite.h"
26+
#endif
27+
2428
#include <cstring>
2529
#include <functional>
2630
#include <memory>

0 commit comments

Comments
 (0)