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

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, 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 | Annotate | Revision Log
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 ], 525 ],
524 'message': 'Generating libspeechd library loader.', 526 'message': 'Generating libspeechd library loader.',
525 'process_outputs_as_sources': 1, 527 'process_outputs_as_sources': 1,
526 }, 528 },
527 ], 529 ],
528 }, 530 },
529 { 531 {
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 ], 836 ],
835 'libraries': [ 837 'libraries': [
836 '<!@(<(pkg-config) --libs-only-l libudev)', 838 '<!@(<(pkg-config) --libs-only-l libudev)',
837 ], 839 ],
838 }, 840 },
839 }], 841 }],
840 ], 842 ],
841 }, 843 },
842 ], 844 ],
843 } 845 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698