Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: media/media.gyp

Issue 4873002: Benchmark tool for GPU-accelerated video rendering (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | media/tools/shader_bench/cpu_color_painter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 'tools/mfdecoder/mfdecoder.cc', 458 'tools/mfdecoder/mfdecoder.cc',
459 ], 459 ],
460 'msvs_settings': { 460 'msvs_settings': {
461 'VCLinkerTool': { 461 'VCLinkerTool': {
462 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE 462 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
463 }, 463 },
464 }, 464 },
465 }, 465 },
466 ], 466 ],
467 }], 467 }],
468 ['OS!="mac"', {
469 'targets': [
470 {
471 'target_name': 'shader_bench',
472 'type': 'executable',
473 'dependencies': [
474 'media',
475 '../app/app.gyp:app_base',
476 ],
477 'sources': [
478 'tools/shader_bench/shader_bench.cc',
479 'tools/shader_bench/cpu_color_painter.cc',
480 'tools/shader_bench/cpu_color_painter.h',
481 'tools/shader_bench/gpu_color_painter.cc',
482 'tools/shader_bench/gpu_color_painter.h',
483 'tools/shader_bench/gpu_color_painter_exp.cc',
484 'tools/shader_bench/gpu_color_painter_exp.h',
485 'tools/shader_bench/gpu_painter.cc',
486 'tools/shader_bench/gpu_painter.h',
487 'tools/shader_bench/painter.cc',
488 'tools/shader_bench/painter.h',
489 'tools/shader_bench/window.cc',
490 'tools/shader_bench/window.h',
491 ],
492 'conditions': [
493 ['OS=="linux"', {
494 'dependencies': [
495 '../build/linux/system.gyp:gtk',
496 ],
497 'sources': [
498 'tools/shader_bench/window_linux.cc',
499 ],
500 }],
501 ['OS=="win"', {
502 'dependencies': [
503 '../third_party/angle/src/build_angle.gyp:libEGL',
504 '../third_party/angle/src/build_angle.gyp:libGLESv2',
505 ],
506 'sources': [
507 'tools/shader_bench/window_win.cc',
508 ],
509 }],
510 ],
511 },
512 ],
513 }],
468 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 514 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
469 'targets': [ 515 'targets': [
470 { 516 {
471 'target_name': 'omx_test', 517 'target_name': 'omx_test',
472 'type': 'executable', 518 'type': 'executable',
473 'dependencies': [ 519 'dependencies': [
474 'media', 520 'media',
475 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 521 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
476 '../third_party/openmax/openmax.gyp:il', 522 '../third_party/openmax/openmax.gyp:il',
477 ], 523 ],
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 ], 632 ],
587 }], 633 }],
588 ], 634 ],
589 } 635 }
590 636
591 # Local Variables: 637 # Local Variables:
592 # tab-width:2 638 # tab-width:2
593 # indent-tabs-mode:nil 639 # indent-tabs-mode:nil
594 # End: 640 # End:
595 # vim: set expandtab tabstop=2 shiftwidth=2: 641 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | media/tools/shader_bench/cpu_color_painter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698