Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 # vim: set filetype=python:
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 XPIDL_MODULE = 'dom_webspeechrecognition'
8 XPIDL_SOURCES = [
9 'nsIDOMSpeechRecognitionEvent.idl',
10 'nsISpeechRecognitionService.idl'
11 ]
13 TEST_DIRS += ['test']
15 EXPORTS.mozilla.dom += [
16 'SpeechGrammar.h',
17 'SpeechGrammarList.h',
18 'SpeechRecognition.h',
19 'SpeechRecognitionAlternative.h',
20 'SpeechRecognitionResult.h',
21 'SpeechRecognitionResultList.h',
22 'SpeechStreamListener.h',
23 'test/FakeSpeechRecognitionService.h',
24 ]
26 UNIFIED_SOURCES += [
27 'endpointer.cc',
28 'energy_endpointer.cc',
29 'energy_endpointer_params.cc',
30 'SpeechGrammar.cpp',
31 'SpeechGrammarList.cpp',
32 'SpeechRecognition.cpp',
33 'SpeechRecognitionAlternative.cpp',
34 'SpeechRecognitionResult.cpp',
35 'SpeechRecognitionResultList.cpp',
36 'SpeechStreamListener.cpp',
37 'test/FakeSpeechRecognitionService.cpp',
38 ]
40 LOCAL_INCLUDES += [
41 '/dom/base',
42 ]
44 include('/ipc/chromium/chromium-config.mozbuild')
46 FINAL_LIBRARY = 'gklayout'