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

Side by Side Diff: media/media.gyp

Issue 8936014: Removing DataSource from Filter hierarchy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build busters 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'base/channel_layout.cc', 108 'base/channel_layout.cc',
109 'base/channel_layout.h', 109 'base/channel_layout.h',
110 'base/clock.cc', 110 'base/clock.cc',
111 'base/clock.h', 111 'base/clock.h',
112 'base/composite_data_source_factory.cc', 112 'base/composite_data_source_factory.cc',
113 'base/composite_data_source_factory.h', 113 'base/composite_data_source_factory.h',
114 'base/composite_filter.cc', 114 'base/composite_filter.cc',
115 'base/composite_filter.h', 115 'base/composite_filter.h',
116 'base/data_buffer.cc', 116 'base/data_buffer.cc',
117 'base/data_buffer.h', 117 'base/data_buffer.h',
118 'base/data_source.cc',
119 'base/data_source.h',
118 'base/demuxer.cc', 120 'base/demuxer.cc',
119 'base/demuxer.h', 121 'base/demuxer.h',
120 'base/demuxer_stream.cc', 122 'base/demuxer_stream.cc',
121 'base/demuxer_stream.h', 123 'base/demuxer_stream.h',
122 'base/djb2.cc', 124 'base/djb2.cc',
123 'base/djb2.h', 125 'base/djb2.h',
124 'base/download_rate_monitor.cc', 126 'base/download_rate_monitor.cc',
125 'base/download_rate_monitor.h', 127 'base/download_rate_monitor.h',
126 'base/filter_collection.cc', 128 'base/filter_collection.cc',
127 'base/filter_collection.h', 129 'base/filter_collection.h',
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 'media', 670 'media',
669 '../base/base.gyp:base', 671 '../base/base.gyp:base',
670 '../testing/gmock.gyp:gmock', 672 '../testing/gmock.gyp:gmock',
671 '../testing/gtest.gyp:gtest', 673 '../testing/gtest.gyp:gtest',
672 ], 674 ],
673 'sources': [ 675 'sources': [
674 'audio/test_audio_input_controller_factory.cc', 676 'audio/test_audio_input_controller_factory.cc',
675 'audio/test_audio_input_controller_factory.h', 677 'audio/test_audio_input_controller_factory.h',
676 'base/mock_callback.cc', 678 'base/mock_callback.cc',
677 'base/mock_callback.h', 679 'base/mock_callback.h',
680 'base/mock_data_source_host.cc',
681 'base/mock_ddata_source_host.h',
682 'base/mock_demuxer_host.cc',
683 'base/mock_demuxer_host.h',
678 'base/mock_filter_host.cc', 684 'base/mock_filter_host.cc',
679 'base/mock_filter_host.h', 685 'base/mock_filter_host.h',
680 'base/mock_filters.cc', 686 'base/mock_filters.cc',
681 'base/mock_filters.h', 687 'base/mock_filters.h',
682 ], 688 ],
683 }, 689 },
684 { 690 {
685 'target_name': 'scaler_bench', 691 'target_name': 'scaler_bench',
686 'type': 'executable', 692 'type': 'executable',
687 'dependencies': [ 693 'dependencies': [
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 915 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
910 ], 916 ],
911 'sources': [ 917 'sources': [
912 'tools/media_bench/media_bench.cc', 918 'tools/media_bench/media_bench.cc',
913 ], 919 ],
914 }, 920 },
915 ], 921 ],
916 }] 922 }]
917 ], 923 ],
918 } 924 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698