OLD | NEW |
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 'base/media_win.cc', | 53 'base/media_win.cc', |
54 'base/media.h', | 54 'base/media.h', |
55 'base/media_format.cc', | 55 'base/media_format.cc', |
56 'base/media_format.h', | 56 'base/media_format.h', |
57 'base/mock_filter_host.h', | 57 'base/mock_filter_host.h', |
58 'base/mock_media_filters.h', | 58 'base/mock_media_filters.h', |
59 'base/mock_pipeline.h', | 59 'base/mock_pipeline.h', |
60 'base/pipeline.h', | 60 'base/pipeline.h', |
61 'base/pipeline_impl.cc', | 61 'base/pipeline_impl.cc', |
62 'base/pipeline_impl.h', | 62 'base/pipeline_impl.h', |
| 63 'base/seekable_buffer.cc', |
| 64 'base/seekable_buffer.h', |
63 'base/synchronizer.cc', | 65 'base/synchronizer.cc', |
64 'base/synchronizer.h', | 66 'base/synchronizer.h', |
65 'base/video_frame_impl.cc', | 67 'base/video_frame_impl.cc', |
66 'base/video_frame_impl.h', | 68 'base/video_frame_impl.h', |
67 'base/yuv_convert.cc', | 69 'base/yuv_convert.cc', |
68 'base/yuv_convert.h', | 70 'base/yuv_convert.h', |
69 'base/yuv_row_win.cc', | 71 'base/yuv_row_win.cc', |
70 'base/yuv_row_mac.cc', | 72 'base/yuv_row_mac.cc', |
71 'base/yuv_row_linux.cc', | 73 'base/yuv_row_linux.cc', |
72 'base/yuv_row.h', | 74 'base/yuv_row.h', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 '../base/base.gyp:base', | 133 '../base/base.gyp:base', |
132 '../testing/gtest.gyp:gtest', | 134 '../testing/gtest.gyp:gtest', |
133 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 135 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
134 ], | 136 ], |
135 'sources': [ | 137 'sources': [ |
136 'audio/win/audio_output_win_unittest.cc', | 138 'audio/win/audio_output_win_unittest.cc', |
137 'audio/mac/audio_output_mac_unittest.cc', | 139 'audio/mac/audio_output_mac_unittest.cc', |
138 'base/data_buffer_unittest.cc', | 140 'base/data_buffer_unittest.cc', |
139 'base/pipeline_impl_unittest.cc', | 141 'base/pipeline_impl_unittest.cc', |
140 'base/run_all_unittests.cc', | 142 'base/run_all_unittests.cc', |
| 143 'base/seekable_buffer_unittest.cc', |
141 'base/video_frame_impl_unittest.cc', | 144 'base/video_frame_impl_unittest.cc', |
142 'base/yuv_convert_unittest.cc', | 145 'base/yuv_convert_unittest.cc', |
143 'filters/ffmpeg_demuxer_unittest.cc', | 146 'filters/ffmpeg_demuxer_unittest.cc', |
144 'filters/ffmpeg_glue_unittest.cc', | 147 'filters/ffmpeg_glue_unittest.cc', |
145 'filters/file_data_source_unittest.cc', | 148 'filters/file_data_source_unittest.cc', |
146 'filters/video_decoder_unittest.cc', | 149 'filters/video_decoder_unittest.cc', |
147 'filters/video_renderer_unittest.cc', | 150 'filters/video_renderer_unittest.cc', |
148 ], | 151 ], |
149 'conditions': [ | 152 'conditions': [ |
150 ['OS=="linux"', { | 153 ['OS=="linux"', { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'player/stdafx.h', | 216 'player/stdafx.h', |
214 'player/view.h', | 217 'player/view.h', |
215 'player/wtl_renderer.cc', | 218 'player/wtl_renderer.cc', |
216 'player/wtl_renderer.h', | 219 'player/wtl_renderer.h', |
217 ], | 220 ], |
218 }, | 221 }, |
219 ], | 222 ], |
220 }], | 223 }], |
221 ], | 224 ], |
222 } | 225 } |
OLD | NEW |