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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 6111009: Add the option of compressing speech input audio using FLAC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 11 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 | « chrome/browser/speech/speech_recognizer_unittest.cc ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA',
(...skipping 15 matching lines...) Expand all
26 'theme_resources', 26 'theme_resources',
27 'userfeedback_proto', 27 'userfeedback_proto',
28 '../app/app.gyp:app_resources', 28 '../app/app.gyp:app_resources',
29 '../app/app.gyp:app_strings', 29 '../app/app.gyp:app_strings',
30 '../media/media.gyp:media', 30 '../media/media.gyp:media',
31 '../ppapi/ppapi.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin 31 '../ppapi/ppapi.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin
32 '../printing/printing.gyp:printing', 32 '../printing/printing.gyp:printing',
33 '../skia/skia.gyp:skia', 33 '../skia/skia.gyp:skia',
34 '../third_party/bzip2/bzip2.gyp:bzip2', 34 '../third_party/bzip2/bzip2.gyp:bzip2',
35 '../third_party/expat/expat.gyp:expat', 35 '../third_party/expat/expat.gyp:expat',
36 '../third_party/flac/flac.gyp:libflac',
36 '../third_party/icu/icu.gyp:icui18n', 37 '../third_party/icu/icu.gyp:icui18n',
37 '../third_party/icu/icu.gyp:icuuc', 38 '../third_party/icu/icu.gyp:icuuc',
38 '../third_party/libjingle/libjingle.gyp:libjingle', 39 '../third_party/libjingle/libjingle.gyp:libjingle',
39 '../third_party/libxml/libxml.gyp:libxml', 40 '../third_party/libxml/libxml.gyp:libxml',
40 '../third_party/npapi/npapi.gyp:npapi', 41 '../third_party/npapi/npapi.gyp:npapi',
41 '../third_party/hunspell/hunspell.gyp:hunspell', 42 '../third_party/hunspell/hunspell.gyp:hunspell',
42 '../third_party/speex/speex.gyp:libspeex', 43 '../third_party/speex/speex.gyp:libspeex',
43 '../webkit/support/webkit_support.gyp:appcache', 44 '../webkit/support/webkit_support.gyp:appcache',
44 '../webkit/support/webkit_support.gyp:blob', 45 '../webkit/support/webkit_support.gyp:blob',
45 '../webkit/support/webkit_support.gyp:database', 46 '../webkit/support/webkit_support.gyp:database',
(...skipping 2298 matching lines...) Expand 10 before | Expand all | Expand 10 after
2344 'browser/shell_dialogs.h', 2345 'browser/shell_dialogs.h',
2345 'browser/shell_integration.cc', 2346 'browser/shell_integration.cc',
2346 'browser/shell_integration.h', 2347 'browser/shell_integration.h',
2347 'browser/shell_integration_mac.mm', 2348 'browser/shell_integration_mac.mm',
2348 'browser/shell_integration_linux.cc', 2349 'browser/shell_integration_linux.cc',
2349 'browser/shell_integration_win.cc', 2350 'browser/shell_integration_win.cc',
2350 'browser/sidebar/sidebar_container.cc', 2351 'browser/sidebar/sidebar_container.cc',
2351 'browser/sidebar/sidebar_container.h', 2352 'browser/sidebar/sidebar_container.h',
2352 'browser/sidebar/sidebar_manager.cc', 2353 'browser/sidebar/sidebar_manager.cc',
2353 'browser/sidebar/sidebar_manager.h', 2354 'browser/sidebar/sidebar_manager.h',
2355 'browser/speech/audio_encoder.cc',
2356 'browser/speech/audio_encoder.h',
2354 'browser/speech/endpointer/endpointer.cc', 2357 'browser/speech/endpointer/endpointer.cc',
2355 'browser/speech/endpointer/endpointer.h', 2358 'browser/speech/endpointer/endpointer.h',
2356 'browser/speech/endpointer/energy_endpointer.cc', 2359 'browser/speech/endpointer/energy_endpointer.cc',
2357 'browser/speech/endpointer/energy_endpointer.h', 2360 'browser/speech/endpointer/energy_endpointer.h',
2358 'browser/speech/endpointer/energy_endpointer_params.cc', 2361 'browser/speech/endpointer/energy_endpointer_params.cc',
2359 'browser/speech/endpointer/energy_endpointer_params.h', 2362 'browser/speech/endpointer/energy_endpointer_params.h',
2360 'browser/speech/speech_input_bubble.h', 2363 'browser/speech/speech_input_bubble.h',
2361 'browser/speech/speech_input_bubble.cc', 2364 'browser/speech/speech_input_bubble.cc',
2362 'browser/speech/speech_input_bubble_gtk.cc', 2365 'browser/speech/speech_input_bubble_gtk.cc',
2363 'browser/speech/speech_input_bubble_mac.mm', 2366 'browser/speech/speech_input_bubble_mac.mm',
(...skipping 2183 matching lines...) Expand 10 before | Expand all | Expand 10 after
4547 ], 4550 ],
4548 }, 4551 },
4549 ], 4552 ],
4550 } 4553 }
4551 4554
4552 # Local Variables: 4555 # Local Variables:
4553 # tab-width:2 4556 # tab-width:2
4554 # indent-tabs-mode:nil 4557 # indent-tabs-mode:nil
4555 # End: 4558 # End:
4556 # vim: set expandtab tabstop=2 shiftwidth=2: 4559 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/speech/speech_recognizer_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698