forked from mirrors/gecko-dev
		
	--HG-- rename : toolkit/components/terminator/nsTerminatorTelemetry.js => toolkit/components/terminator/TerminatorTelemetry.jsm extra : source : fe583e7aae8d620c45a4a3638dea4d602d59e513
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
 | 
						|
# vim: set filetype=python:
 | 
						|
# This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
# License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
						|
 | 
						|
with Files('**'):
 | 
						|
    BUG_COMPONENT = ('Toolkit', 'Async Tooling')
 | 
						|
 | 
						|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
 | 
						|
 | 
						|
SOURCES += [
 | 
						|
    'nsTerminator.cpp',
 | 
						|
]
 | 
						|
 | 
						|
EXPORTS += [
 | 
						|
    'nsTerminator.h',
 | 
						|
]
 | 
						|
 | 
						|
EXTRA_COMPONENTS += [
 | 
						|
    'terminator.manifest',
 | 
						|
]
 | 
						|
 | 
						|
EXTRA_JS_MODULES += [
 | 
						|
    'TerminatorTelemetry.jsm',
 | 
						|
]
 | 
						|
 | 
						|
XPCOM_MANIFESTS += [
 | 
						|
    'components.conf',
 | 
						|
]
 | 
						|
 | 
						|
FINAL_LIBRARY = 'xul'
 |