forked from mirrors/gecko-dev
		
	 97e69eb233
			
		
	
	
		97e69eb233
		
	
	
	
	
		
			
			MozReview-Commit-ID: Duwu5vZOhtF --HG-- extra : rebase_source : 564542010fd854c92978defba889b18a73f398f9
		
			
				
	
	
		
			65 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			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/.
 | |
| 
 | |
| DIRS += [
 | |
|     'about',
 | |
|     'contextualidentity',
 | |
|     'customizableui',
 | |
|     'dirprovider',
 | |
|     'downloads',
 | |
|     'extensions',
 | |
|     'feeds',
 | |
|     'migration',
 | |
|     'newtab',
 | |
|     'originattributes',
 | |
|     'places',
 | |
|     'preferences',
 | |
|     'privatebrowsing',
 | |
|     'search',
 | |
|     'sessionstore',
 | |
|     'shell',
 | |
|     'selfsupport',
 | |
|     'syncedtabs',
 | |
|     'uitour',
 | |
|     'translation',
 | |
| ]
 | |
| 
 | |
| DIRS += ['build']
 | |
| 
 | |
| XPIDL_SOURCES += [
 | |
|     'nsIBrowserGlue.idl',
 | |
|     'nsIBrowserHandler.idl',
 | |
| ]
 | |
| 
 | |
| XPIDL_MODULE = 'browsercompsbase'
 | |
| 
 | |
| EXTRA_PP_COMPONENTS += [
 | |
|     'BrowserComponents.manifest',
 | |
| ]
 | |
| 
 | |
| EXTRA_COMPONENTS += [
 | |
|     'nsBrowserContentHandler.js',
 | |
|     'nsBrowserGlue.js',
 | |
| ]
 | |
| 
 | |
| EXTRA_JS_MODULES += [
 | |
|     'distribution.js',
 | |
| ]
 | |
| 
 | |
| BROWSER_CHROME_MANIFESTS += [
 | |
|     'safebrowsing/content/test/browser.ini',
 | |
|     'tests/browser/browser.ini'
 | |
| ]
 | |
| 
 | |
| XPCSHELL_TESTS_MANIFESTS += [
 | |
|     'tests/unit/xpcshell.ini'
 | |
| ]
 | |
| 
 | |
| with Files('safebrowsing/*'):
 | |
|     BUG_COMPONENT = ('Toolkit', 'Phishing Protection')
 | |
| 
 | |
| with Files('controlcenter/**'):
 | |
|     BUG_COMPONENT = ('Firefox', 'General')
 |