[CORD-2871]
Fix protobuf integration in prep for CORD-2276
Change-Id: I67ffa17d97d97e9a226269e99de76c236a431dd1
diff --git a/protos/Makefile b/protos/Makefile
index 363c22b..52e36b0 100644
--- a/protos/Makefile
+++ b/protos/Makefile
@@ -22,7 +22,7 @@
default: build
-PROTO_FILES := $(wildcard *.proto) $(wildcard third_party/google/api/*proto)
+PROTO_FILES := $(wildcard *.proto)
PROTO_PB2_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,_pb2.py,$(f)))
PROTO_DESC_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,.desc,$(f)))
@@ -35,7 +35,6 @@
@echo "Building protocol buffer artifacts from $<"
env LD_LIBRARY_PATH=$(PROTOC_LIBDIR) python -m grpc.tools.protoc \
-I. \
- -I./third_party \
--python_out=. \
--grpc_python_out=. \
$<