Index: pkg/appengine/lib/src/protobuf_api/build_protoc.sh |
diff --git a/pkg/appengine/lib/src/protobuf_api/build_protoc.sh b/pkg/appengine/lib/src/protobuf_api/build_protoc.sh |
new file mode 100755 |
index 0000000000000000000000000000000000000000..ffee5cb46892e3b37880bdff11efb5f2347b7bff |
--- /dev/null |
+++ b/pkg/appengine/lib/src/protobuf_api/build_protoc.sh |
@@ -0,0 +1,10 @@ |
+#! /bin/bash |
+for protofile in $(find internal -name "*.proto"); do |
+ # -I option not needed as these protofiles have no includes. |
+ protoc --dart_out=. $protofile |
+done |
+ |
+for protofile in $(find external -name "*.proto"); do |
+ # -I option not needed as these protofiles have no includes. |
+ protoc --dart_out=. $protofile |
+done |