mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
722 B
Bash
Executable File
24 lines
722 B
Bash
Executable File
#!/bin/bash
|
|
# A script to generate toolkit/components/downloads/csd.pb.{cc,h} for use in
|
|
# nsIApplicationReputationQuery. This script assumes you have downloaded and
|
|
# installed the protocol buffer compiler.
|
|
|
|
if [ -n $PROTOC_PATH ]; then
|
|
PROTOC_PATH=/usr/local/bin/protoc
|
|
fi
|
|
|
|
echo "Using $PROTOC_PATH as protocol compiler"
|
|
|
|
if [ ! -e $PROTOC_PATH ]; then
|
|
echo "You must install the protocol compiler from " \
|
|
"https://code.google.com/p/protobuf/downloads/list"
|
|
exit 1
|
|
fi
|
|
|
|
# Get the protocol buffer and compile it
|
|
CMD='wget http://src.chromium.org/chrome/trunk/src/chrome/common/safe_browsing/csd.proto -O csd.proto'
|
|
OUTPUT_PATH=toolkit/components/downloads
|
|
|
|
$CMD
|
|
$PROTOC_PATH csd.proto --cpp_out=$OUTPUT_PATH
|