xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/proto/common.proto (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifansyntax = "proto3";
2*d4726bddSHONG Yifan
3*d4726bddSHONG Yifanoption java_package = "org.pubref.rules_protobuf.examples";
4*d4726bddSHONG Yifanoption java_outer_classname = "CommonProto";
5*d4726bddSHONG Yifan
6*d4726bddSHONG Yifanpackage common;
7*d4726bddSHONG Yifan
8*d4726bddSHONG Yifan// A configuration object.  This is used to test the viability of
9*d4726bddSHONG Yifan// protobuf imports.
10*d4726bddSHONG Yifanmessage Config {
11*d4726bddSHONG Yifan    bool verbose = 1;
12*d4726bddSHONG Yifan}
13