Lines Matching refs:protoc
3 # invokes protoc to generate the appropriate protobuf
32 # A Makefile to run protoc and simplify testing.
46 # Run protoc to create the c++ files for msgheader
49 protoc --cpp_out=$(gen_src_cpp) --proto_path=$(src_proto) $<
52 # Run protoc to create the python files for msgheader
55 protoc --descriptor_set_out=$@ --proto_path=$(src_proto) --include_imports $<
57 # Run protoc to create the pyhton files for msgheader
60 protoc --python_out=$(gen_src_py) --proto_path=$(src_proto) $<
62 # Run protoc to create the java files for ril
65 protoc --javamicro_out=$(gen_src_java) --proto_path=$(src_proto) $<
67 # Run protoc to create the c++ files for ril
70 protoc --cpp_out=$(gen_src_cpp) --proto_path=$(src_proto) $<
73 # Run protoc to create the ril descriptor file for ril
76 protoc --descriptor_set_out=$@ --proto_path=$(src_proto) --include_imports $<
78 # Run protoc to create the pyhton files for ril
81 protoc --python_out=$(gen_src_py) --proto_path=$(src_proto) $<
83 # Run protoc to create the java files for ril
86 protoc --javamicro_out=$(gen_src_java) --proto_path=$(src_proto) $<
88 # Run protoc to create the c++ files for control
91 protoc --cpp_out=$(gen_src_cpp) --proto_path=$(src_proto) $<
94 # Run protoc to create the pyhton files for control
97 protoc --python_out=$(gen_src_py) --proto_path=$(src_proto) $<
99 # Run protoc to create the ctrl descriptor file for control
102 protoc --descriptor_set_out=$@ --proto_path=$(src_proto) --include_imports $<
104 # Run protoc to create the java files for ril
107 protoc --javamicro_out=$(gen_src_java) --proto_path=$(src_proto) $<