OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'player_x11_renderer%': 'x11', | 8 'player_x11_renderer%': 'x11', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 }], | 175 }], |
176 ], | 176 ], |
177 }, | 177 }, |
178 { | 178 { |
179 'target_name': 'ffmpeg_unittests', | 179 'target_name': 'ffmpeg_unittests', |
180 'type': 'executable', | 180 'type': 'executable', |
181 'dependencies': [ | 181 'dependencies': [ |
182 'media', | 182 'media', |
183 '../base/base.gyp:base', | 183 '../base/base.gyp:base', |
184 '../base/base.gyp:base_i18n', | 184 '../base/base.gyp:base_i18n', |
| 185 '../base/base.gyp:test_support_base', |
185 '../base/base.gyp:test_support_perf', | 186 '../base/base.gyp:test_support_perf', |
186 '../testing/gtest.gyp:gtest', | 187 '../testing/gtest.gyp:gtest', |
187 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 188 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
188 ], | 189 ], |
189 'sources': [ | 190 'sources': [ |
190 'ffmpeg/ffmpeg_unittest.cc', | 191 'ffmpeg/ffmpeg_unittest.cc', |
191 ], | 192 ], |
192 'conditions': [ | 193 'conditions': [ |
193 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 194 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
194 'dependencies': [ | 195 'dependencies': [ |
(...skipping 14 matching lines...) Expand all Loading... |
209 ], | 210 ], |
210 }, | 211 }, |
211 { | 212 { |
212 'target_name': 'media_unittests', | 213 'target_name': 'media_unittests', |
213 'type': 'executable', | 214 'type': 'executable', |
214 'msvs_guid': 'C8C6183C-B03C-11DD-B471-DFD256D89593', | 215 'msvs_guid': 'C8C6183C-B03C-11DD-B471-DFD256D89593', |
215 'dependencies': [ | 216 'dependencies': [ |
216 'media', | 217 'media', |
217 '../base/base.gyp:base', | 218 '../base/base.gyp:base', |
218 '../base/base.gyp:base_i18n', | 219 '../base/base.gyp:base_i18n', |
| 220 '../base/base.gyp:test_support_base', |
219 '../testing/gmock.gyp:gmock', | 221 '../testing/gmock.gyp:gmock', |
220 '../testing/gtest.gyp:gtest', | 222 '../testing/gtest.gyp:gtest', |
221 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 223 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
222 '../third_party/openmax/openmax.gyp:il', | 224 '../third_party/openmax/openmax.gyp:il', |
223 ], | 225 ], |
224 'sources!': [ | 226 'sources!': [ |
225 '../third_party/openmax/omx_stub.cc', | 227 '../third_party/openmax/omx_stub.cc', |
226 ], | 228 ], |
227 'sources': [ | 229 'sources': [ |
228 'audio/audio_input_controller_unittest.cc', | 230 'audio/audio_input_controller_unittest.cc', |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 ], | 564 ], |
563 }], | 565 }], |
564 ], | 566 ], |
565 } | 567 } |
566 | 568 |
567 # Local Variables: | 569 # Local Variables: |
568 # tab-width:2 | 570 # tab-width:2 |
569 # indent-tabs-mode:nil | 571 # indent-tabs-mode:nil |
570 # End: | 572 # End: |
571 # vim: set expandtab tabstop=2 shiftwidth=2: | 573 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |