Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
michael@0 | 1 | # vim: set filetype=python: |
michael@0 | 2 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 5 | |
michael@0 | 6 | XPIDL_MODULE = 'dom_webspeechrecognition' |
michael@0 | 7 | |
michael@0 | 8 | XPIDL_SOURCES = [ |
michael@0 | 9 | 'nsIDOMSpeechRecognitionEvent.idl', |
michael@0 | 10 | 'nsISpeechRecognitionService.idl' |
michael@0 | 11 | ] |
michael@0 | 12 | |
michael@0 | 13 | TEST_DIRS += ['test'] |
michael@0 | 14 | |
michael@0 | 15 | EXPORTS.mozilla.dom += [ |
michael@0 | 16 | 'SpeechGrammar.h', |
michael@0 | 17 | 'SpeechGrammarList.h', |
michael@0 | 18 | 'SpeechRecognition.h', |
michael@0 | 19 | 'SpeechRecognitionAlternative.h', |
michael@0 | 20 | 'SpeechRecognitionResult.h', |
michael@0 | 21 | 'SpeechRecognitionResultList.h', |
michael@0 | 22 | 'SpeechStreamListener.h', |
michael@0 | 23 | 'test/FakeSpeechRecognitionService.h', |
michael@0 | 24 | ] |
michael@0 | 25 | |
michael@0 | 26 | UNIFIED_SOURCES += [ |
michael@0 | 27 | 'endpointer.cc', |
michael@0 | 28 | 'energy_endpointer.cc', |
michael@0 | 29 | 'energy_endpointer_params.cc', |
michael@0 | 30 | 'SpeechGrammar.cpp', |
michael@0 | 31 | 'SpeechGrammarList.cpp', |
michael@0 | 32 | 'SpeechRecognition.cpp', |
michael@0 | 33 | 'SpeechRecognitionAlternative.cpp', |
michael@0 | 34 | 'SpeechRecognitionResult.cpp', |
michael@0 | 35 | 'SpeechRecognitionResultList.cpp', |
michael@0 | 36 | 'SpeechStreamListener.cpp', |
michael@0 | 37 | 'test/FakeSpeechRecognitionService.cpp', |
michael@0 | 38 | ] |
michael@0 | 39 | |
michael@0 | 40 | LOCAL_INCLUDES += [ |
michael@0 | 41 | '/dom/base', |
michael@0 | 42 | ] |
michael@0 | 43 | |
michael@0 | 44 | include('/ipc/chromium/chromium-config.mozbuild') |
michael@0 | 45 | |
michael@0 | 46 | FINAL_LIBRARY = 'gklayout' |