| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'base/synchronizer.cc', | 63 'base/synchronizer.cc', |
| 64 'base/synchronizer.h', | 64 'base/synchronizer.h', |
| 65 'base/video_frame_impl.cc', | 65 'base/video_frame_impl.cc', |
| 66 'base/video_frame_impl.h', | 66 'base/video_frame_impl.h', |
| 67 'base/yuv_convert.cc', | 67 'base/yuv_convert.cc', |
| 68 'base/yuv_convert.h', | 68 'base/yuv_convert.h', |
| 69 'base/yuv_row_win.cc', | 69 'base/yuv_row_win.cc', |
| 70 'base/yuv_row_mac.cc', | 70 'base/yuv_row_mac.cc', |
| 71 'base/yuv_row_linux.cc', | 71 'base/yuv_row_linux.cc', |
| 72 'base/yuv_row.h', | 72 'base/yuv_row.h', |
| 73 'base/yuv_scale.cc', | |
| 74 'base/yuv_scale.h', | |
| 75 'filters/audio_renderer_base.cc', | 73 'filters/audio_renderer_base.cc', |
| 76 'filters/audio_renderer_base.h', | 74 'filters/audio_renderer_base.h', |
| 77 'filters/audio_renderer_impl.cc', | 75 'filters/audio_renderer_impl.cc', |
| 78 'filters/audio_renderer_impl.h', | 76 'filters/audio_renderer_impl.h', |
| 79 'filters/decoder_base.h', | 77 'filters/decoder_base.h', |
| 80 'filters/ffmpeg_audio_decoder.cc', | 78 'filters/ffmpeg_audio_decoder.cc', |
| 81 'filters/ffmpeg_audio_decoder.h', | 79 'filters/ffmpeg_audio_decoder.h', |
| 82 'filters/ffmpeg_common.cc', | 80 'filters/ffmpeg_common.cc', |
| 83 'filters/ffmpeg_common.h', | 81 'filters/ffmpeg_common.h', |
| 84 'filters/ffmpeg_demuxer.cc', | 82 'filters/ffmpeg_demuxer.cc', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 133 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 136 ], | 134 ], |
| 137 'sources': [ | 135 'sources': [ |
| 138 'audio/win/audio_output_win_unittest.cc', | 136 'audio/win/audio_output_win_unittest.cc', |
| 139 'audio/mac/audio_output_mac_unittest.cc', | 137 'audio/mac/audio_output_mac_unittest.cc', |
| 140 'base/data_buffer_unittest.cc', | 138 'base/data_buffer_unittest.cc', |
| 141 'base/pipeline_impl_unittest.cc', | 139 'base/pipeline_impl_unittest.cc', |
| 142 'base/run_all_unittests.cc', | 140 'base/run_all_unittests.cc', |
| 143 'base/video_frame_impl_unittest.cc', | 141 'base/video_frame_impl_unittest.cc', |
| 144 'base/yuv_convert_unittest.cc', | 142 'base/yuv_convert_unittest.cc', |
| 145 'base/yuv_scale_unittest.cc', | |
| 146 'filters/ffmpeg_demuxer_unittest.cc', | 143 'filters/ffmpeg_demuxer_unittest.cc', |
| 147 'filters/ffmpeg_glue_unittest.cc', | 144 'filters/ffmpeg_glue_unittest.cc', |
| 148 'filters/file_data_source_unittest.cc', | 145 'filters/file_data_source_unittest.cc', |
| 149 'filters/video_decoder_unittest.cc', | 146 'filters/video_decoder_unittest.cc', |
| 150 'filters/video_renderer_unittest.cc', | 147 'filters/video_renderer_unittest.cc', |
| 151 ], | 148 ], |
| 152 'conditions': [ | 149 'conditions': [ |
| 153 ['OS=="linux"', { | 150 ['OS=="linux"', { |
| 154 'dependencies': [ | 151 'dependencies': [ |
| 155 # Needed for the following #include chain: | 152 # Needed for the following #include chain: |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 'player/stdafx.h', | 213 'player/stdafx.h', |
| 217 'player/view.h', | 214 'player/view.h', |
| 218 'player/wtl_renderer.cc', | 215 'player/wtl_renderer.cc', |
| 219 'player/wtl_renderer.h', | 216 'player/wtl_renderer.h', |
| 220 ], | 217 ], |
| 221 }, | 218 }, |
| 222 ], | 219 ], |
| 223 }], | 220 }], |
| 224 ], | 221 ], |
| 225 } | 222 } |
| OLD | NEW |