diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-09 04:18:32 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-06-13 11:49:13 +0200 |
commit | f51beb3fdab3d586af081ac14478ea59e0523af4 (patch) | |
tree | fe2c8beb342d9fb5dd173164457ce8929641b874 /dom/media/webspeech/moz.build | |
parent | a934165b573516f2dd7ef1b2879612ac87e2b548 (diff) | |
download | UXP-f51beb3fdab3d586af081ac14478ea59e0523af4.tar UXP-f51beb3fdab3d586af081ac14478ea59e0523af4.tar.gz UXP-f51beb3fdab3d586af081ac14478ea59e0523af4.tar.lz UXP-f51beb3fdab3d586af081ac14478ea59e0523af4.tar.xz UXP-f51beb3fdab3d586af081ac14478ea59e0523af4.zip |
Issue #1560 - Always include speech synthesis IPDLs
This is entangled with the IPC messaging configuration so
we need these IPDLs even if sppech synthesis is otherwise
not being built.
This resolves #1560
Diffstat (limited to 'dom/media/webspeech/moz.build')
-rw-r--r-- | dom/media/webspeech/moz.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/media/webspeech/moz.build b/dom/media/webspeech/moz.build index 677e0656f..c61c63b72 100644 --- a/dom/media/webspeech/moz.build +++ b/dom/media/webspeech/moz.build @@ -3,5 +3,11 @@ # 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/. +# Due to IPC entanglement we always need the synthesis ipdls if CONFIG['MOZ_WEBSPEECH']: DIRS += ['synth'] +else: + IPDL_SOURCES += [ + 'synth/ipc/PSpeechSynthesis.ipdl', + 'synth/ipc/PSpeechSynthesisRequest.ipdl', + ]
\ No newline at end of file |