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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'base/mock_reader.h', | 160 'base/mock_reader.h', |
161 'base/pipeline_impl_unittest.cc', | 161 'base/pipeline_impl_unittest.cc', |
162 'base/run_all_unittests.cc', | 162 'base/run_all_unittests.cc', |
163 'base/seekable_buffer_unittest.cc', | 163 'base/seekable_buffer_unittest.cc', |
164 'base/video_frame_impl_unittest.cc', | 164 'base/video_frame_impl_unittest.cc', |
165 'base/yuv_convert_unittest.cc', | 165 'base/yuv_convert_unittest.cc', |
166 'filters/ffmpeg_demuxer_unittest.cc', | 166 'filters/ffmpeg_demuxer_unittest.cc', |
167 'filters/ffmpeg_glue_unittest.cc', | 167 'filters/ffmpeg_glue_unittest.cc', |
168 'filters/ffmpeg_video_decoder_unittest.cc', | 168 'filters/ffmpeg_video_decoder_unittest.cc', |
169 'filters/file_data_source_unittest.cc', | 169 'filters/file_data_source_unittest.cc', |
170 'filters/video_decoder_unittest.cc', | |
171 ], | 170 ], |
172 'conditions': [ | 171 'conditions': [ |
173 ['OS=="linux"', { | 172 ['OS=="linux"', { |
174 'dependencies': [ | 173 'dependencies': [ |
175 # Needed for the following #include chain: | 174 # Needed for the following #include chain: |
176 # base/run_all_unittests.cc | 175 # base/run_all_unittests.cc |
177 # ../base/test_suite.h | 176 # ../base/test_suite.h |
178 # gtk/gtk.h | 177 # gtk/gtk.h |
179 '../build/linux/system.gyp:gtk', | 178 '../build/linux/system.gyp:gtk', |
180 ], | 179 ], |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 'msvs_settings': { | 235 'msvs_settings': { |
237 'VCLinkerTool': { | 236 'VCLinkerTool': { |
238 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 237 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
239 }, | 238 }, |
240 }, | 239 }, |
241 }, | 240 }, |
242 ], | 241 ], |
243 }], | 242 }], |
244 ], | 243 ], |
245 } | 244 } |
OLD | NEW |