summaryrefslogtreecommitdiff
path: root/dom/media/webspeech/synth/moz.build
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/webspeech/synth/moz.build')
-rw-r--r--dom/media/webspeech/synth/moz.build74
1 files changed, 31 insertions, 43 deletions
diff --git a/dom/media/webspeech/synth/moz.build b/dom/media/webspeech/synth/moz.build
index 7b8c4cd313..3f4e363dbc 100644
--- a/dom/media/webspeech/synth/moz.build
+++ b/dom/media/webspeech/synth/moz.build
@@ -3,56 +3,44 @@
# 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/.
-if CONFIG['MOZ_WEBSPEECH']:
- MOCHITEST_MANIFESTS += [
- 'test/mochitest.ini',
- 'test/startup/mochitest.ini',
- ]
+XPIDL_MODULE = 'dom_webspeechsynth'
- XPIDL_MODULE = 'dom_webspeechsynth'
-
- XPIDL_SOURCES += [
- 'nsISpeechService.idl',
- 'nsISynthVoiceRegistry.idl'
- ]
-
- EXPORTS.mozilla.dom += [
- 'ipc/SpeechSynthesisChild.h',
- 'ipc/SpeechSynthesisParent.h',
- 'nsSpeechTask.h',
- 'nsSynthVoiceRegistry.h',
- 'SpeechSynthesis.h',
- 'SpeechSynthesisUtterance.h',
- 'SpeechSynthesisVoice.h',
- ]
+XPIDL_SOURCES += [
+ 'nsISpeechService.idl',
+ 'nsISynthVoiceRegistry.idl'
+]
- SOURCES += [
- 'ipc/SpeechSynthesisChild.cpp',
- 'ipc/SpeechSynthesisParent.cpp',
- 'nsSpeechTask.cpp',
- 'nsSynthVoiceRegistry.cpp',
- 'SpeechSynthesis.cpp',
- 'SpeechSynthesisUtterance.cpp',
- 'SpeechSynthesisVoice.cpp',
- ]
+EXPORTS.mozilla.dom += [
+ 'ipc/SpeechSynthesisChild.h',
+ 'ipc/SpeechSynthesisParent.h',
+ 'nsSpeechTask.h',
+ 'nsSynthVoiceRegistry.h',
+ 'SpeechSynthesis.h',
+ 'SpeechSynthesisUtterance.h',
+ 'SpeechSynthesisVoice.h',
+]
- if CONFIG['MOZ_WEBSPEECH_TEST_BACKEND']:
- SOURCES += [
- 'test/FakeSynthModule.cpp',
- 'test/nsFakeSynthServices.cpp'
- ]
+SOURCES += [
+ 'ipc/SpeechSynthesisChild.cpp',
+ 'ipc/SpeechSynthesisParent.cpp',
+ 'nsSpeechTask.cpp',
+ 'nsSynthVoiceRegistry.cpp',
+ 'SpeechSynthesis.cpp',
+ 'SpeechSynthesisUtterance.cpp',
+ 'SpeechSynthesisVoice.cpp',
+]
- if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
- DIRS += ['windows']
+if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
+ DIRS += ['windows']
- if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
- DIRS += ['cocoa']
+if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
+ DIRS += ['cocoa']
- if CONFIG['MOZ_SYNTH_SPEECHD']:
- DIRS += ['speechd']
+if CONFIG['MOZ_SYNTH_SPEECHD']:
+ DIRS += ['speechd']
- if CONFIG['MOZ_SYNTH_PICO']:
- DIRS += ['pico']
+if CONFIG['MOZ_SYNTH_PICO']:
+ DIRS += ['pico']
IPDL_SOURCES += [
'ipc/PSpeechSynthesis.ipdl',