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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 'dependencies': [ | 351 'dependencies': [ |
352 'media', | 352 'media', |
353 '../base/base.gyp:base', | 353 '../base/base.gyp:base', |
354 '../skia/skia.gyp:skia', | 354 '../skia/skia.gyp:skia', |
355 ], | 355 ], |
356 'sources': [ | 356 'sources': [ |
357 'tools/scaler_bench/scaler_bench.cc', | 357 'tools/scaler_bench/scaler_bench.cc', |
358 ], | 358 ], |
359 }, | 359 }, |
360 { | 360 { |
| 361 'target_name': 'shader_bench', |
| 362 'type': 'executable', |
| 363 'dependencies': [ |
| 364 'media', |
| 365 '../app/app.gyp:app_base', |
| 366 '../gpu/gpu.gyp:*', |
| 367 ], |
| 368 'sources': [ |
| 369 'tools/shader_bench/shader_bench.cc', |
| 370 'tools/shader_bench/cpu_color_painter.cc', |
| 371 'tools/shader_bench/cpu_color_painter.h', |
| 372 'tools/shader_bench/gpu_color_painter.cc', |
| 373 'tools/shader_bench/gpu_color_painter.h', |
| 374 'tools/shader_bench/gpu_color_painter_exp.cc', |
| 375 'tools/shader_bench/gpu_color_painter_exp.h', |
| 376 'tools/shader_bench/gpu_painter.cc', |
| 377 'tools/shader_bench/gpu_painter.h', |
| 378 'tools/shader_bench/painter.cc', |
| 379 'tools/shader_bench/painter.h', |
| 380 'tools/shader_bench/window.cc', |
| 381 'tools/shader_bench/window.h', |
| 382 ], |
| 383 'conditions': [ |
| 384 ['OS=="linux"', { |
| 385 'dependencies': [ |
| 386 '../build/linux/system.gyp:gtk', |
| 387 ], |
| 388 'sources': [ |
| 389 'tools/shader_bench/window_linux.cc', |
| 390 ], |
| 391 }], |
| 392 ['OS=="win"', { |
| 393 'dependencies': [ |
| 394 '../third_party/angle/src/build_angle.gyp:libEGL', |
| 395 '../third_party/angle/src/build_angle.gyp:libGLESv2', |
| 396 ], |
| 397 'sources': [ |
| 398 'tools/shader_bench/window_win.cc', |
| 399 ], |
| 400 }], |
| 401 ] |
| 402 }, |
| 403 { |
361 'target_name': 'ffmpeg_tests', | 404 'target_name': 'ffmpeg_tests', |
362 'type': 'executable', | 405 'type': 'executable', |
363 'dependencies': [ | 406 'dependencies': [ |
364 'media', | 407 'media', |
365 '../base/base.gyp:base', | 408 '../base/base.gyp:base', |
366 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 409 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
367 ], | 410 ], |
368 'sources': [ | 411 'sources': [ |
369 'test/ffmpeg_tests/ffmpeg_tests.cc', | 412 'test/ffmpeg_tests/ffmpeg_tests.cc', |
370 ], | 413 ], |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 ], | 629 ], |
587 }], | 630 }], |
588 ], | 631 ], |
589 } | 632 } |
590 | 633 |
591 # Local Variables: | 634 # Local Variables: |
592 # tab-width:2 | 635 # tab-width:2 |
593 # indent-tabs-mode:nil | 636 # indent-tabs-mode:nil |
594 # End: | 637 # End: |
595 # vim: set expandtab tabstop=2 shiftwidth=2: | 638 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |