| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//build/config/sysroot.gni") | 6 import("//build/config/sysroot.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//tools/generate_library_loader/generate_library_loader.gni") | 8 import("//tools/generate_library_loader/generate_library_loader.gni") |
| 9 | 9 |
| 10 config("sdk") { | 10 config("sdk") { |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 functions = [ | 151 functions = [ |
| 152 "pci_alloc", | 152 "pci_alloc", |
| 153 "pci_init", | 153 "pci_init", |
| 154 "pci_cleanup", | 154 "pci_cleanup", |
| 155 "pci_scan_bus", | 155 "pci_scan_bus", |
| 156 "pci_fill_info", | 156 "pci_fill_info", |
| 157 "pci_lookup_name", | 157 "pci_lookup_name", |
| 158 ] | 158 ] |
| 159 } | 159 } |
| 160 | 160 |
| 161 generate_library_loader("libspeechd") { | 161 # Looking for libspeechd? Use //third_party/speech-dispatcher |
| 162 name = "LibSpeechdLoader" | |
| 163 output_h = "libspeechd.h" | |
| 164 output_cc = "libspeechd.cc" | |
| 165 header = "<libspeechd.h>" | |
| 166 bundled_header = "\"third_party/speech-dispatcher/libspeechd.h\"" | |
| 167 | |
| 168 functions = [ | |
| 169 "spd_open", | |
| 170 "spd_say", | |
| 171 "spd_stop", | |
| 172 "spd_close", | |
| 173 "spd_pause", | |
| 174 "spd_resume", | |
| 175 "spd_set_notification_on", | |
| 176 "spd_set_voice_rate", | |
| 177 "spd_set_voice_pitch", | |
| 178 "spd_list_synthesis_voices", | |
| 179 "spd_set_synthesis_voice", | |
| 180 "spd_list_modules", | |
| 181 "spd_set_output_module", | |
| 182 ] | |
| 183 } | |
| OLD | NEW |