forked from mirrors/gecko-dev
		
	 1d69a1ae8f
			
		
	
	
		1d69a1ae8f
		
	
	
	
	
		
			
			Add the protocol buffer and client side of the SDK to the Gecko build. This includes prefs to enable/disable/configure content analysis. In addition to the pref, content analysis requires a command-line argument "-allow-content-analysis" to be turned on; this is for security reasons until we make sure that the pref can only be turned on by enterprise policies. Differential Revision: https://phabricator.services.mozilla.com/D189568
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| if which protoc >/dev/null ; then
 | |
|     echo "Using $(which protoc) to regenerate .pb.cc and .pb.h files."
 | |
| else
 | |
|     echo "protoc not found in your path. Cannot regenerate the .pb.cc and .pb.h files."
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| regenerate() {
 | |
|     DIR="$1"
 | |
|     PROTO="$2"
 | |
|     echo
 | |
|     echo "${DIR}${PROTO}:"
 | |
|     pushd "$DIR" >/dev/null
 | |
|     protoc --cpp_out=. "$PROTO"
 | |
|     popd >/dev/null
 | |
| }
 | |
| 
 | |
| cd $(dirname $0)
 | |
| cd ../../.. # Top level.
 | |
| 
 | |
| regenerate devtools/shared/heapsnapshot/ CoreDump.proto
 | |
| regenerate toolkit/components/reputationservice/chromium/chrome/common/safe_browsing/ csd.proto
 | |
| regenerate toolkit/components/url-classifier/chromium/ safebrowsing.proto
 | |
| command cp third_party/content_analysis_sdk/proto/content_analysis/sdk/analysis.proto toolkit/components/contentanalysis/content_analysis/sdk/analysis.proto
 | |
| regenerate toolkit/components/contentanalysis/content_analysis/sdk/ analysis.proto
 | |
| command cp third_party/rust/viaduct/src/fetch_msg_types.proto toolkit/components/viaduct/fetch_msg_types.proto
 | |
| regenerate toolkit/components/viaduct/ fetch_msg_types.proto
 |