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

Side by Side Diff: media/media.gyp

Issue 1685483002: Add stub MediaCodecAudioDecoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments, one question Created 4 years, 10 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 | « media/filters/android/media_codec_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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 'base/audio_video_metadata_extractor.h', 757 'base/audio_video_metadata_extractor.h',
758 'base/media_file_checker.cc', 758 'base/media_file_checker.cc',
759 'base/media_file_checker.h', 759 'base/media_file_checker.h',
760 'filters/decrypting_audio_decoder.cc', 760 'filters/decrypting_audio_decoder.cc',
761 'filters/decrypting_audio_decoder.h', 761 'filters/decrypting_audio_decoder.h',
762 'filters/decrypting_video_decoder.cc', 762 'filters/decrypting_video_decoder.cc',
763 'filters/decrypting_video_decoder.h', 763 'filters/decrypting_video_decoder.h',
764 'filters/ffmpeg_video_decoder.cc', 764 'filters/ffmpeg_video_decoder.cc',
765 'filters/ffmpeg_video_decoder.h', 765 'filters/ffmpeg_video_decoder.h',
766 ], 766 ],
767 'sources': [
768 'filters/android/media_codec_audio_decoder.cc',
769 'filters/android/media_codec_audio_decoder.h',
770 ],
767 'defines': [ 771 'defines': [
768 'DISABLE_USER_INPUT_MONITOR', 772 'DISABLE_USER_INPUT_MONITOR',
769 ], 773 ],
770 'conditions': [ 774 'conditions': [
771 ['media_use_ffmpeg == 1', { 775 ['media_use_ffmpeg == 1', {
772 'defines': [ 776 'defines': [
773 # On Android, FFmpeg is built without video decoders. We only 777 # On Android, FFmpeg is built without video decoders. We only
774 # support hardware video decoding. 778 # support hardware video decoding.
775 'DISABLE_FFMPEG_VIDEO_DECODERS', 779 'DISABLE_FFMPEG_VIDEO_DECODERS',
776 ], 780 ],
(...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after
2143 'dependencies': [ 2147 'dependencies': [
2144 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2148 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2145 ], 2149 ],
2146 }], 2150 }],
2147 ], 2151 ],
2148 }, 2152 },
2149 ], 2153 ],
2150 }], 2154 }],
2151 ], 2155 ],
2152 } 2156 }
OLDNEW
« no previous file with comments | « media/filters/android/media_codec_audio_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698