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

Side by Side Diff: media/media.gyp

Issue 100503006: Cleanup OPUS decoder. Remove extraneous transforms and copies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Trimmings. Created 7 years 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 | « media/filters/opus_audio_decoder.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) 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 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 'dependencies': [ 553 'dependencies': [
554 'media_android_jni_headers', 554 'media_android_jni_headers',
555 'player_android', 555 'player_android',
556 'video_capture_android_jni_headers', 556 'video_capture_android_jni_headers',
557 ], 557 ],
558 'sources': [ 558 'sources': [
559 'base/media.cc', 559 'base/media.cc',
560 'base/media.h', 560 'base/media.h',
561 'base/media_stub.cc', 561 'base/media_stub.cc',
562 ], 562 ],
563 'sources!': [
564 'filters/opus_audio_decoder.cc',
565 'filters/opus_audio_decoder.h',
566 ],
563 'conditions': [ 567 'conditions': [
564 ['android_webview_build==0', { 568 ['android_webview_build==0', {
565 'dependencies': [ 569 'dependencies': [
566 'media_java', 570 'media_java',
567 ], 571 ],
568 }], 572 }],
569 ], 573 ],
570 'defines': [ 574 'defines': [
571 'DISABLE_USER_INPUT_MONITOR', 575 'DISABLE_USER_INPUT_MONITOR',
572 ], 576 ],
(...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after
1636 ], 1640 ],
1637 }], 1641 }],
1638 ], 1642 ],
1639 }], 1643 }],
1640 ], 1644 ],
1641 }, 1645 },
1642 ], 1646 ],
1643 }], 1647 }],
1644 ], 1648 ],
1645 } 1649 }
OLDNEW
« no previous file with comments | « media/filters/opus_audio_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698