forked from mirrors/gecko-dev
		
	 ed9ed87b3e
			
		
	
	
		ed9ed87b3e
		
	
	
	
	
		
			
			Pulls out the NMParser work (parsing nm results and turning them into an ArrayBuffer'd map of addresses to symbols) into a worker. For OSX we will still need to do some work to run c++filt in the background, but this gets us most of the way there. Without a Subprocess.jsm usable from a worker, we'll have to bounce data back to the main thread in order to bounce it to the c++filt worker. MozReview-Commit-ID: LZi7J1qGpmh --HG-- extra : rebase_source : 048329fb085542ecc4c8f8d872e6c4cf0b535376
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			928 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			928 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", "WebExtensions: Untriaged")
 | |
| 
 | |
| JAR_MANIFESTS += ['jar.mn']
 | |
| 
 | |
| EXTRA_COMPONENTS += [
 | |
|     'extensions-browser.manifest',
 | |
| ]
 | |
| 
 | |
| EXTRA_JS_MODULES += [
 | |
|     'ExtensionPopups.jsm',
 | |
|     'ParseBreakpadSymbols-worker.js',
 | |
|     'ParseCppFiltSymbols-worker.js',
 | |
|     'ParseNMSymbols-worker.js',
 | |
|     'ParseSymbols.jsm',
 | |
| ]
 | |
| 
 | |
| DIRS += ['schemas']
 | |
| 
 | |
| BROWSER_CHROME_MANIFESTS += [
 | |
|     'test/browser/browser-remote.ini',
 | |
|     'test/browser/browser.ini',
 | |
| ]
 | |
| 
 | |
| MOCHITEST_MANIFESTS += ['test/mochitest/mochitest.ini']
 | |
| XPCSHELL_TESTS_MANIFESTS += [
 | |
|     'test/xpcshell/xpcshell-remote.ini',
 | |
|     'test/xpcshell/xpcshell.ini',
 | |
| ]
 |