forked from mirrors/gecko-dev
		
	 337e0066fd
			
		
	
	
		337e0066fd
		
	
	
	
	
		
			
			Tags: #secure-revision Bug #: 1371485 Differential Revision: https://phabricator.services.mozilla.com/D1800 --HG-- extra : rebase_source : c43b24b09e1391f7242e0cff85de67ac29a04814
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			447 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			447 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| # Copyright (c) 2009 Google Inc. All rights reserved.
 | |
| # Use of this source code is governed by a BSD-style license that can be
 | |
| # found in the LICENSE file.
 | |
| 
 | |
| import os
 | |
| import sys
 | |
| 
 | |
| # Make sure we're using the version of pylib in this repo, not one installed
 | |
| # elsewhere on the system.
 | |
| sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]), 'pylib'))
 | |
| import gyp
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|   sys.exit(gyp.script_main())
 |