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

Side by Side Diff: media/media.gyp

Issue 155469: Splitting media filter's Initialize() into Create() + callback and Seek() + callback. (Closed)
Patch Set: Fixed valgrind errors Created 11 years, 5 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/video_renderer_base_unittest.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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 ], 148 ],
149 'sources': [ 149 'sources': [
150 'audio/win/audio_output_win_unittest.cc', 150 'audio/win/audio_output_win_unittest.cc',
151 'audio/mac/audio_output_mac_unittest.cc', 151 'audio/mac/audio_output_mac_unittest.cc',
152 'audio/simple_sources_unittest.cc', 152 'audio/simple_sources_unittest.cc',
153 'base/buffer_queue_unittest.cc', 153 'base/buffer_queue_unittest.cc',
154 'base/data_buffer_unittest.cc', 154 'base/data_buffer_unittest.cc',
155 'base/mock_ffmpeg.cc', 155 'base/mock_ffmpeg.cc',
156 'base/mock_ffmpeg.h', 156 'base/mock_ffmpeg.h',
157 'base/mock_filter_host.h', 157 'base/mock_filter_host.h',
158 'base/mock_filters.cc',
158 'base/mock_filters.h', 159 'base/mock_filters.h',
159 'base/mock_reader.h', 160 'base/mock_reader.h',
160 'base/pipeline_impl_unittest.cc', 161 'base/pipeline_impl_unittest.cc',
161 'base/run_all_unittests.cc', 162 'base/run_all_unittests.cc',
162 'base/seekable_buffer_unittest.cc', 163 'base/seekable_buffer_unittest.cc',
163 'base/video_frame_impl_unittest.cc', 164 'base/video_frame_impl_unittest.cc',
164 'base/yuv_convert_unittest.cc', 165 'base/yuv_convert_unittest.cc',
166 'filters/audio_renderer_base_unittest.cc',
165 'filters/ffmpeg_demuxer_unittest.cc', 167 'filters/ffmpeg_demuxer_unittest.cc',
166 'filters/ffmpeg_glue_unittest.cc', 168 'filters/ffmpeg_glue_unittest.cc',
167 'filters/ffmpeg_video_decoder_unittest.cc', 169 'filters/ffmpeg_video_decoder_unittest.cc',
168 'filters/file_data_source_unittest.cc', 170 'filters/file_data_source_unittest.cc',
171 'filters/video_renderer_base_unittest.cc',
169 ], 172 ],
170 'conditions': [ 173 'conditions': [
171 ['OS=="linux"', { 174 ['OS=="linux"', {
172 'dependencies': [ 175 'dependencies': [
173 # Needed for the following #include chain: 176 # Needed for the following #include chain:
174 # base/run_all_unittests.cc 177 # base/run_all_unittests.cc
175 # ../base/test_suite.h 178 # ../base/test_suite.h
176 # gtk/gtk.h 179 # gtk/gtk.h
177 '../build/linux/system.gyp:gtk', 180 '../build/linux/system.gyp:gtk',
178 ], 181 ],
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'msvs_settings': { 237 'msvs_settings': {
235 'VCLinkerTool': { 238 'VCLinkerTool': {
236 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 239 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
237 }, 240 },
238 }, 241 },
239 }, 242 },
240 ], 243 ],
241 }], 244 }],
242 ], 245 ],
243 } 246 }
OLDNEW
« no previous file with comments | « media/filters/video_renderer_base_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698