forked from mirrors/gecko-dev
		
	 57a88cbf46
			
		
	
	
		57a88cbf46
		
	
	
	
	
		
			
			While here, use GECKO_PATH instead of $HOME/checkouts/gecko. Differential Revision: https://phabricator.services.mozilla.com/D41889
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			775 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			775 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| source $GECKO_PATH/taskcluster/scripts/misc/source-test-common.sh
 | |
| 
 | |
| # Write custom mozconfig
 | |
| MOZCONFIG=$GECKO_PATH/mozconfig
 | |
| echo "ac_add_options --enable-application=mobile/android" > $MOZCONFIG
 | |
| echo "ac_add_options --target=arm-linux-androideabi" >> $MOZCONFIG
 | |
| echo "ac_add_options --with-android-sdk=${MOZ_FETCHES_DIR}/android-sdk-linux" >> $MOZCONFIG
 | |
| echo "ac_add_options --with-android-ndk=${MOZ_FETCHES_DIR}/android-ndk" >> $MOZCONFIG
 | |
| 
 | |
| # Write custom grade properties
 | |
| export GRADLE_USER_HOME=$HOME/workspace/gradle
 | |
| mkdir -p $GRADLE_USER_HOME
 | |
| echo "org.gradle.daemon=false" >> ${GRADLE_USER_HOME}/gradle.properties
 | |
| 
 | |
| # Mach lookup infer in infer...
 | |
| mkdir -p $MOZBUILD_STATE_PATH/infer/infer
 | |
| mv $MOZ_FETCHES_DIR/infer/{bin,lib} $MOZBUILD_STATE_PATH/infer/infer
 |