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

Side by Side Diff: media/media.gyp

Issue 8775035: Add support for incremental cluster parsing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replace old list parsing with WebMListParser & implement incremental cluster parsing with that. Created 9 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
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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 'filters/ffmpeg_audio_decoder_unittest.cc', 614 'filters/ffmpeg_audio_decoder_unittest.cc',
615 'filters/ffmpeg_demuxer_unittest.cc', 615 'filters/ffmpeg_demuxer_unittest.cc',
616 'filters/ffmpeg_glue_unittest.cc', 616 'filters/ffmpeg_glue_unittest.cc',
617 'filters/ffmpeg_h264_bitstream_converter_unittest.cc', 617 'filters/ffmpeg_h264_bitstream_converter_unittest.cc',
618 'filters/ffmpeg_video_decoder_unittest.cc', 618 'filters/ffmpeg_video_decoder_unittest.cc',
619 'filters/file_data_source_unittest.cc', 619 'filters/file_data_source_unittest.cc',
620 'filters/video_renderer_base_unittest.cc', 620 'filters/video_renderer_base_unittest.cc',
621 'video/capture/video_capture_device_unittest.cc', 621 'video/capture/video_capture_device_unittest.cc',
622 'webm/cluster_builder.cc', 622 'webm/cluster_builder.cc',
623 'webm/cluster_builder.h', 623 'webm/cluster_builder.h',
624 'webm/webm_parser_unittest.cc',
624 ], 625 ],
625 'conditions': [ 626 'conditions': [
626 ['os_posix==1 and OS!="mac"', { 627 ['os_posix==1 and OS!="mac"', {
627 'conditions': [ 628 'conditions': [
628 ['linux_use_tcmalloc==1', { 629 ['linux_use_tcmalloc==1', {
629 'dependencies': [ 630 'dependencies': [
630 '../base/allocator/allocator.gyp:allocator', 631 '../base/allocator/allocator.gyp:allocator',
631 ], 632 ],
632 }], 633 }],
633 ], 634 ],
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 907 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
907 ], 908 ],
908 'sources': [ 909 'sources': [
909 'tools/media_bench/media_bench.cc', 910 'tools/media_bench/media_bench.cc',
910 ], 911 ],
911 }, 912 },
912 ], 913 ],
913 }] 914 }]
914 ], 915 ],
915 } 916 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698