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

Side by Side Diff: build/linux/system.gyp

Issue 15846006: Support multiple voices for all available modules (text-to-speech engines) on Linux. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Whitespace. Created 7 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/speech/tts_linux.cc » ('j') | chrome/browser/speech/tts_linux.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, { 10 }, {
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 '--bundled-header', 513 '--bundled-header',
514 '"third_party/speech-dispatcher/libspeechd.h"', 514 '"third_party/speech-dispatcher/libspeechd.h"',
515 '--link-directly=<(linux_link_libspeechd)', 515 '--link-directly=<(linux_link_libspeechd)',
516 'spd_open', 516 'spd_open',
517 'spd_say', 517 'spd_say',
518 'spd_stop', 518 'spd_stop',
519 'spd_close', 519 'spd_close',
520 'spd_set_notification_on', 520 'spd_set_notification_on',
521 'spd_set_voice_rate', 521 'spd_set_voice_rate',
522 'spd_set_voice_pitch', 522 'spd_set_voice_pitch',
523 'spd_list_synthesis_voices',
524 'spd_set_synthesis_voice',
525 'spd_list_modules',
526 'spd_set_output_module',
523 ], 527 ],
524 'message': 'Generating libspeechd library loader.', 528 'message': 'Generating libspeechd library loader.',
525 'process_outputs_as_sources': 1, 529 'process_outputs_as_sources': 1,
526 }, 530 },
527 ], 531 ],
528 }, 532 },
529 { 533 {
530 'target_name': 'x11', 534 'target_name': 'x11',
531 'type': 'none', 535 'type': 'none',
532 'toolsets': ['host', 'target'], 536 'toolsets': ['host', 'target'],
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 ], 825 ],
822 'libraries': [ 826 'libraries': [
823 '<!@(<(pkg-config) --libs-only-l libudev)', 827 '<!@(<(pkg-config) --libs-only-l libudev)',
824 ], 828 ],
825 }, 829 },
826 }], 830 }],
827 ], 831 ],
828 }, 832 },
829 ], 833 ],
830 } 834 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/speech/tts_linux.cc » ('j') | chrome/browser/speech/tts_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698