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

Side by Side Diff: media/media.gyp

Issue 3044019: This tool demonstrates the use of the Media Foundation H.264 decoder as a sta... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 months 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 | « media/base/video_frame.h ('k') | media/mf/README.chromium » ('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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 'tools/mfdecoder/main.cc', 378 'tools/mfdecoder/main.cc',
379 'tools/mfdecoder/mfdecoder.h', 379 'tools/mfdecoder/mfdecoder.h',
380 'tools/mfdecoder/mfdecoder.cc', 380 'tools/mfdecoder/mfdecoder.cc',
381 ], 381 ],
382 'msvs_settings': { 382 'msvs_settings': {
383 'VCLinkerTool': { 383 'VCLinkerTool': {
384 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE 384 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
385 }, 385 },
386 }, 386 },
387 }, 387 },
388 {
389 'target_name': 'mft_h264_decoder',
390 'type': 'executable',
391 'dependencies': [
392 'media',
393 '../base/base.gyp:base',
394 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
395 ],
396 'include_dirs': [
397 '..',
398 ],
399 'sources': [
400 'mf/main.cc',
401 'mf/mft_h264_decoder.cc',
402 'mf/mft_h264_decoder.h',
403 'mf/file_reader_util.cc',
404 'mf/file_reader_util.h',
405 ],
406 'msvs_settings': {
407 'VCLinkerTool': {
408 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
409 },
410 },
411 },
388 ], 412 ],
389 }], 413 }],
390 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 414 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
391 'targets': [ 415 'targets': [
392 { 416 {
393 'target_name': 'omx_test', 417 'target_name': 'omx_test',
394 'type': 'executable', 418 'type': 'executable',
395 'dependencies': [ 419 'dependencies': [
396 'media', 420 'media',
397 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 421 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 ], 531 ],
508 }], 532 }],
509 ], 533 ],
510 } 534 }
511 535
512 # Local Variables: 536 # Local Variables:
513 # tab-width:2 537 # tab-width:2
514 # indent-tabs-mode:nil 538 # indent-tabs-mode:nil
515 # End: 539 # End:
516 # vim: set expandtab tabstop=2 shiftwidth=2: 540 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « media/base/video_frame.h ('k') | media/mf/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698