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

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

Issue 15108002: Add Pause and Resume to Web TTS & Extension TTS APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 6 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 | chrome/browser/extensions/extension_function_histogram_value.h » ('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) 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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 '--output-h', '<(output_h)', 510 '--output-h', '<(output_h)',
511 '--output-cc', '<(output_cc)', 511 '--output-cc', '<(output_cc)',
512 '--header', '<<(libspeechd_h_prefix)libspeechd.h>', 512 '--header', '<<(libspeechd_h_prefix)libspeechd.h>',
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_pause',
521 'spd_resume',
520 'spd_set_notification_on', 522 'spd_set_notification_on',
521 'spd_set_voice_rate', 523 'spd_set_voice_rate',
522 'spd_set_voice_pitch', 524 'spd_set_voice_pitch',
523 'spd_list_synthesis_voices', 525 'spd_list_synthesis_voices',
524 'spd_set_synthesis_voice', 526 'spd_set_synthesis_voice',
525 'spd_list_modules', 527 'spd_list_modules',
526 'spd_set_output_module', 528 'spd_set_output_module',
527 ], 529 ],
528 'message': 'Generating libspeechd library loader.', 530 'message': 'Generating libspeechd library loader.',
529 'process_outputs_as_sources': 1, 531 'process_outputs_as_sources': 1,
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 ], 827 ],
826 'libraries': [ 828 'libraries': [
827 '<!@(<(pkg-config) --libs-only-l libudev)', 829 '<!@(<(pkg-config) --libs-only-l libudev)',
828 ], 830 ],
829 }, 831 },
830 }], 832 }],
831 ], 833 ],
832 }, 834 },
833 ], 835 ],
834 } 836 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_function_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698