Skip to content

Commit

Permalink
move bigquery protos
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrooTheChen committed Sep 24, 2024
1 parent f1bc94d commit 90fb1a7
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion buf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ modules:
- path: lib/vector-core/proto
- path: proto/third-party
- path: proto/vector
- path: proto/google/cloud/bigquery/storage/v1
lint:
use:
- DEFAULT
Expand Down
15 changes: 7 additions & 8 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ fn main() {
#[cfg(feature = "protobuf-build")]
{
println!("cargo:rerun-if-changed=proto/third-party/dnstap.proto");
println!("cargo:rerun-if-changed=proto/third-party/google/cloud/bigquery/storage/v1/storage.proto");
println!("cargo:rerun-if-changed=proto/third-party/google/pubsub/v1/pubsub.proto");
println!("cargo:rerun-if-changed=proto/third-party/google/rpc/status.proto");
println!("cargo:rerun-if-changed=proto/vector/dd_metric.proto");
println!("cargo:rerun-if-changed=proto/vector/dd_trace.proto");
println!("cargo:rerun-if-changed=proto/vector/ddsketch_full.proto");
println!("cargo:rerun-if-changed=proto/vector/vector.proto");
println!("cargo:rerun-if-changed=proto/google/cloud/bigquery/storage/v1/storage.proto");

// Create and store the "file descriptor set" from the compiled Protocol Buffers packages.
//
Expand All @@ -145,24 +145,23 @@ fn main() {
prost_build,
&[
"lib/vector-core/proto/event.proto",
"proto/google/cloud/bigquery/storage/v1/arrow.proto",
"proto/google/cloud/bigquery/storage/v1/avro.proto",
"proto/google/cloud/bigquery/storage/v1/protobuf.proto",
"proto/google/cloud/bigquery/storage/v1/storage.proto",
"proto/google/cloud/bigquery/storage/v1/stream.proto",
"proto/google/cloud/bigquery/storage/v1/table.proto",
// "proto/google/cloud/bigquery/storage/v1/arrow.proto",
// "proto/google/cloud/bigquery/storage/v1/avro.proto",
// "proto/google/cloud/bigquery/storage/v1/protobuf.proto",
// "proto/google/cloud/bigquery/storage/v1/stream.proto",
// "proto/google/cloud/bigquery/storage/v1/table.proto",
"proto/third-party/dnstap.proto",
"proto/vector/ddsketch_full.proto",
"proto/vector/dd_metric.proto",
"proto/vector/dd_trace.proto",
"proto/third-party/google/cloud/bigquery/storage/v1/storage.proto",
"proto/third-party/google/pubsub/v1/pubsub.proto",
"proto/third-party/google/rpc/status.proto",
"proto/vector/vector.proto",
],
&[
"proto/third-party",
"proto/vector",
"proto/google/cloud/bigquery/storage/v1",
"lib/vector-core/proto/",
],
)
Expand Down

0 comments on commit 90fb1a7

Please sign in to comment.