summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/speech-dispatcher
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@theqtcompany.com>2014-12-05 15:04:29 +0100
committerAndras Becsi <andras.becsi@theqtcompany.com>2014-12-09 10:49:28 +0100
commitaf6588f8d723931a298c995fa97259bb7f7deb55 (patch)
tree060ca707847ba1735f01af2372e0d5e494dc0366 /chromium/third_party/speech-dispatcher
parent2fff84d821cc7b1c785f6404e0f8091333283e74 (diff)
BASELINE: Update chromium to 40.0.2214.28 and ninja to 1.5.3.
Change-Id: I759465284fd64d59ad120219cbe257f7402c4181 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/speech-dispatcher')
-rw-r--r--chromium/third_party/speech-dispatcher/BUILD.gn29
1 files changed, 29 insertions, 0 deletions
diff --git a/chromium/third_party/speech-dispatcher/BUILD.gn b/chromium/third_party/speech-dispatcher/BUILD.gn
new file mode 100644
index 00000000000..41ae249f6fa
--- /dev/null
+++ b/chromium/third_party/speech-dispatcher/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//tools/generate_library_loader/generate_library_loader.gni")
+
+generate_library_loader("speech-dispatcher") {
+ name = "LibSpeechdLoader"
+ output_h = "libspeechd.h"
+ output_cc = "libspeechd.cc"
+ header = "<libspeechd.h>"
+ bundled_header = "\"third_party/speech-dispatcher/libspeechd.h\""
+
+ functions = [
+ "spd_open",
+ "spd_say",
+ "spd_stop",
+ "spd_close",
+ "spd_pause",
+ "spd_resume",
+ "spd_set_notification_on",
+ "spd_set_voice_rate",
+ "spd_set_voice_pitch",
+ "spd_list_synthesis_voices",
+ "spd_set_synthesis_voice",
+ "spd_list_modules",
+ "spd_set_output_module",
+ ]
+}