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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 'link_settings': { | 169 'link_settings': { |
170 'libraries': [ | 170 'libraries': [ |
171 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', | 171 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', |
172 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', | 172 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', |
173 ], | 173 ], |
174 }, | 174 }, |
175 }], | 175 }], |
176 ], | 176 ], |
177 }, | 177 }, |
178 { | 178 { |
| 179 'target_name': 'ffmpeg_unittests', |
| 180 'type': 'executable', |
| 181 'dependencies': [ |
| 182 'media', |
| 183 '../base/base.gyp:base', |
| 184 '../base/base.gyp:base_i18n', |
| 185 '../base/base.gyp:test_support_perf', |
| 186 '../testing/gtest.gyp:gtest', |
| 187 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 188 ], |
| 189 'sources': [ |
| 190 'ffmpeg/ffmpeg_unittest.cc', |
| 191 ], |
| 192 'conditions': [ |
| 193 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 194 'dependencies': [ |
| 195 # Needed for the following #include chain: |
| 196 # base/run_all_unittests.cc |
| 197 # ../base/test_suite.h |
| 198 # gtk/gtk.h |
| 199 '../build/linux/system.gyp:gtk', |
| 200 ], |
| 201 'conditions': [ |
| 202 ['linux_use_tcmalloc==1', { |
| 203 'dependencies': [ |
| 204 '../base/allocator/allocator.gyp:allocator', |
| 205 ], |
| 206 }], |
| 207 ], |
| 208 }], |
| 209 ], |
| 210 }, |
| 211 { |
179 'target_name': 'media_unittests', | 212 'target_name': 'media_unittests', |
180 'type': 'executable', | 213 'type': 'executable', |
181 'msvs_guid': 'C8C6183C-B03C-11DD-B471-DFD256D89593', | 214 'msvs_guid': 'C8C6183C-B03C-11DD-B471-DFD256D89593', |
182 'dependencies': [ | 215 'dependencies': [ |
183 'media', | 216 'media', |
184 '../base/base.gyp:base', | 217 '../base/base.gyp:base', |
185 '../base/base.gyp:base_i18n', | 218 '../base/base.gyp:base_i18n', |
186 '../testing/gmock.gyp:gmock', | 219 '../testing/gmock.gyp:gmock', |
187 '../testing/gtest.gyp:gtest', | 220 '../testing/gtest.gyp:gtest', |
188 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 221 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 ], | 538 ], |
506 }], | 539 }], |
507 ], | 540 ], |
508 } | 541 } |
509 | 542 |
510 # Local Variables: | 543 # Local Variables: |
511 # tab-width:2 | 544 # tab-width:2 |
512 # indent-tabs-mode:nil | 545 # indent-tabs-mode:nil |
513 # End: | 546 # End: |
514 # vim: set expandtab tabstop=2 shiftwidth=2: | 547 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |