Lines Matching +full:- +full:isrc
3 set -ex
7 if ../src/protoc --help > /dev/null; then
13 (cd .. && bazel build -c opt :protoc)
14 PROTOC=bazel-bin/protoc
17 if [[ -d tmp && -z $(find tests/proto ../$PROTOC -newer tmp) ]]; then
22 echo "Test protos are up-to-date, skipping protoc."
26 rm -rf tmp
27 mkdir -p tmp
30 find php/tests/proto -type f -name "*.proto"| xargs $PROTOC --php_out=php/tmp -Isrc -Iphp/tests
32 if [ "$1" = "--aggregate_metadata" ]; then
35 $PROTOC --php_out=aggregate_metadata=foo#bar:php/tmp -Isrc -Iphp/tests $AGGREGATED_FILES
38 echo "Generated test protos from tests/proto -> tmp"