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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 'dependencies': [ | 341 'dependencies': [ |
342 'media', | 342 'media', |
343 '../base/base.gyp:base', | 343 '../base/base.gyp:base', |
344 '../skia/skia.gyp:skia', | 344 '../skia/skia.gyp:skia', |
345 ], | 345 ], |
346 'sources': [ | 346 'sources': [ |
347 'tools/scaler_bench/scaler_bench.cc', | 347 'tools/scaler_bench/scaler_bench.cc', |
348 ], | 348 ], |
349 }, | 349 }, |
350 { | 350 { |
| 351 'target_name': 'shader_bench', |
| 352 'type': 'executable', |
| 353 'dependencies': [ |
| 354 'media', |
| 355 '../app/app.gyp:app_base', |
| 356 '../gpu/gpu.gyp:*', |
| 357 ], |
| 358 'sources': [ |
| 359 'tools/shader_bench/shader_bench.cc', |
| 360 'tools/shader_bench/gl_painter.cc', |
| 361 'tools/shader_bench/gl_painter.h', |
| 362 'tools/shader_bench/painter.cc', |
| 363 'tools/shader_bench/painter.h', |
| 364 'tools/shader_bench/window.cc', |
| 365 'tools/shader_bench/window.h', |
| 366 ], |
| 367 'conditions': [ |
| 368 ['OS=="linux"', { |
| 369 'dependencies': [ |
| 370 '../build/linux/system.gyp:gtk', |
| 371 ], |
| 372 'sources': [ |
| 373 'tools/shader_bench/window_linux.cc', |
| 374 ], |
| 375 }], |
| 376 ['OS=="win"', { |
| 377 'dependencies': [ |
| 378 '../third_party/angle/src/build_angle.gyp:libEGL', |
| 379 '../third_party/angle/src/build_angle.gyp:libGLESv2', |
| 380 ], |
| 381 'sources': [ |
| 382 'tools/shader_bench/window_win.cc', |
| 383 ], |
| 384 }], |
| 385 ] |
| 386 }, |
| 387 { |
351 'target_name': 'ffmpeg_tests', | 388 'target_name': 'ffmpeg_tests', |
352 'type': 'executable', | 389 'type': 'executable', |
353 'dependencies': [ | 390 'dependencies': [ |
354 'media', | 391 'media', |
355 '../base/base.gyp:base', | 392 '../base/base.gyp:base', |
356 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 393 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
357 ], | 394 ], |
358 'sources': [ | 395 'sources': [ |
359 'test/ffmpeg_tests/ffmpeg_tests.cc', | 396 'test/ffmpeg_tests/ffmpeg_tests.cc', |
360 ], | 397 ], |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 ], | 613 ], |
577 }], | 614 }], |
578 ], | 615 ], |
579 } | 616 } |
580 | 617 |
581 # Local Variables: | 618 # Local Variables: |
582 # tab-width:2 | 619 # tab-width:2 |
583 # indent-tabs-mode:nil | 620 # indent-tabs-mode:nil |
584 # End: | 621 # End: |
585 # vim: set expandtab tabstop=2 shiftwidth=2: | 622 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |