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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 'dependencies': [ | 245 'dependencies': [ |
246 'media', | 246 'media', |
247 '../base/base.gyp:base', | 247 '../base/base.gyp:base', |
248 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 248 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
249 ], | 249 ], |
250 'sources': [ | 250 'sources': [ |
251 'tools/media_bench/media_bench.cc', | 251 'tools/media_bench/media_bench.cc', |
252 ], | 252 ], |
253 }, | 253 }, |
254 { | 254 { |
| 255 'target_name': 'scaler_bench', |
| 256 'type': 'executable', |
| 257 'dependencies': [ |
| 258 'media', |
| 259 '../base/base.gyp:base', |
| 260 '../skia/skia.gyp:skia', |
| 261 ], |
| 262 'sources': [ |
| 263 'tools/scaler_bench/scaler_bench.cc', |
| 264 ], |
| 265 }, |
| 266 { |
255 'target_name': 'ffmpeg_tests', | 267 'target_name': 'ffmpeg_tests', |
256 'type': 'executable', | 268 'type': 'executable', |
257 'dependencies': [ | 269 'dependencies': [ |
258 'media', | 270 'media', |
259 '../base/base.gyp:base', | 271 '../base/base.gyp:base', |
260 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 272 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
261 ], | 273 ], |
262 'sources': [ | 274 'sources': [ |
263 'test/ffmpeg_tests/ffmpeg_tests.cc', | 275 'test/ffmpeg_tests/ffmpeg_tests.cc', |
264 ], | 276 ], |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 ], | 451 ], |
440 }], | 452 }], |
441 ], | 453 ], |
442 } | 454 } |
443 | 455 |
444 # Local Variables: | 456 # Local Variables: |
445 # tab-width:2 | 457 # tab-width:2 |
446 # indent-tabs-mode:nil | 458 # indent-tabs-mode:nil |
447 # End: | 459 # End: |
448 # vim: set expandtab tabstop=2 shiftwidth=2: | 460 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |