Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: build/config/linux/BUILD.gn

Issue 377403002: Move GN speechd target to third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698