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

Side by Side Diff: media/media.gyp

Issue 8417016: Remove media::VideoDecodeContext as it has no implementation and is unused. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix players Created 9 years, 1 month 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) 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 }, 10 },
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'video/capture/win/sink_input_pin_win.cc', 229 'video/capture/win/sink_input_pin_win.cc',
230 'video/capture/win/sink_input_pin_win.h', 230 'video/capture/win/sink_input_pin_win.h',
231 'video/capture/win/video_capture_device_win.cc', 231 'video/capture/win/video_capture_device_win.cc',
232 'video/capture/win/video_capture_device_win.h', 232 'video/capture/win/video_capture_device_win.h',
233 'video/ffmpeg_video_decode_engine.cc', 233 'video/ffmpeg_video_decode_engine.cc',
234 'video/ffmpeg_video_decode_engine.h', 234 'video/ffmpeg_video_decode_engine.h',
235 'video/picture.cc', 235 'video/picture.cc',
236 'video/picture.h', 236 'video/picture.h',
237 'video/video_decode_accelerator.cc', 237 'video/video_decode_accelerator.cc',
238 'video/video_decode_accelerator.h', 238 'video/video_decode_accelerator.h',
239 'video/video_decode_engine.h', 239 'video/video_decode_engine.h',
scherkus (not reviewing) 2011/10/28 03:51:32 note: video_decode_context.h was never added
240 'webm/webm_constants.h', 240 'webm/webm_constants.h',
241 'webm/webm_cluster_parser.cc', 241 'webm/webm_cluster_parser.cc',
242 'webm/webm_cluster_parser.h', 242 'webm/webm_cluster_parser.h',
243 'webm/webm_info_parser.cc', 243 'webm/webm_info_parser.cc',
244 'webm/webm_info_parser.h', 244 'webm/webm_info_parser.h',
245 'webm/webm_parser.cc', 245 'webm/webm_parser.cc',
246 'webm/webm_parser.h', 246 'webm/webm_parser.h',
247 'webm/webm_tracks_parser.cc', 247 'webm/webm_tracks_parser.cc',
248 'webm/webm_tracks_parser.h', 248 'webm/webm_tracks_parser.h',
249 ], 249 ],
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 ], 644 ],
645 'sources': [ 645 'sources': [
646 'audio/test_audio_input_controller_factory.cc', 646 'audio/test_audio_input_controller_factory.cc',
647 'audio/test_audio_input_controller_factory.h', 647 'audio/test_audio_input_controller_factory.h',
648 'base/mock_callback.cc', 648 'base/mock_callback.cc',
649 'base/mock_callback.h', 649 'base/mock_callback.h',
650 'base/mock_filter_host.cc', 650 'base/mock_filter_host.cc',
651 'base/mock_filter_host.h', 651 'base/mock_filter_host.h',
652 'base/mock_filters.cc', 652 'base/mock_filters.cc',
653 'base/mock_filters.h', 653 'base/mock_filters.h',
654 'video/video_mock_objects.cc',
655 'video/video_mock_objects.h',
656 ], 654 ],
657 }, 655 },
658 { 656 {
659 'target_name': 'scaler_bench', 657 'target_name': 'scaler_bench',
660 'type': 'executable', 658 'type': 'executable',
661 'dependencies': [ 659 'dependencies': [
662 'media', 660 'media',
663 'yuv_convert', 661 'yuv_convert',
664 '../base/base.gyp:base', 662 '../base/base.gyp:base',
665 '../skia/skia.gyp:skia', 663 '../skia/skia.gyp:skia',
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 881 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
884 ], 882 ],
885 'sources': [ 883 'sources': [
886 'tools/media_bench/media_bench.cc', 884 'tools/media_bench/media_bench.cc',
887 ], 885 ],
888 }, 886 },
889 ], 887 ],
890 }] 888 }]
891 ], 889 ],
892 } 890 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698