| 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 'dependencies': [ | 459 'dependencies': [ |
| 460 'media', | 460 'media', |
| 461 'mft_h264_decoder', | 461 'mft_h264_decoder', |
| 462 '../base/base.gyp:base', | 462 '../base/base.gyp:base', |
| 463 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 463 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 464 ], | 464 ], |
| 465 'include_dirs': [ | 465 'include_dirs': [ |
| 466 '..', | 466 '..', |
| 467 ], | 467 ], |
| 468 'sources': [ | 468 'sources': [ |
| 469 'mf/basic_renderer.cc', | |
| 470 'mf/basic_renderer.h', | |
| 471 'mf/d3d_util.cc', | |
| 472 'mf/d3d_util.h', | |
| 473 'mf/file_reader_util.cc', | 469 'mf/file_reader_util.cc', |
| 474 'mf/file_reader_util.h', | 470 'mf/file_reader_util.h', |
| 475 'mf/mft_h264_decoder_example.cc', | 471 'mf/mft_h264_decoder_example.cc', |
| 476 ], | 472 ], |
| 477 'msvs_settings': { | 473 'msvs_settings': { |
| 478 'VCLinkerTool': { | 474 'VCLinkerTool': { |
| 479 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE | 475 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE |
| 480 }, | 476 }, |
| 481 }, | 477 }, |
| 482 }, | 478 }, |
| 483 { | 479 { |
| 484 'target_name': 'mft_h264_decoder_unittests', | 480 'target_name': 'mft_h264_decoder_unittests', |
| 485 'type': 'executable', | 481 'type': 'executable', |
| 486 'dependencies': [ | 482 'dependencies': [ |
| 487 'media', | 483 'media', |
| 488 'mft_h264_decoder', | 484 'mft_h264_decoder', |
| 489 '../base/base.gyp:base', | 485 '../base/base.gyp:base', |
| 490 '../base/base.gyp:base_i18n', | 486 '../base/base.gyp:base_i18n', |
| 491 '../testing/gtest.gyp:gtest', | 487 '../testing/gtest.gyp:gtest', |
| 492 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 488 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 493 ], | 489 ], |
| 494 'include_dirs': [ | 490 'include_dirs': [ |
| 495 '..', | 491 '..', |
| 496 ], | 492 ], |
| 497 'sources': [ | 493 'sources': [ |
| 498 'mf/d3d_util.cc', | |
| 499 'mf/d3d_util.h', | |
| 500 'mf/file_reader_util.cc', | 494 'mf/file_reader_util.cc', |
| 501 'mf/file_reader_util.h', | 495 'mf/file_reader_util.h', |
| 502 'mf/test/mft_h264_decoder_unittest.cc', | 496 'mf/test/mft_h264_decoder_unittest.cc', |
| 503 'mf/test/run_all_unittests.cc', | 497 'mf/test/run_all_unittests.cc', |
| 504 ], | 498 ], |
| 505 'msvs_settings': { | 499 'msvs_settings': { |
| 506 'VCLinkerTool': { | 500 'VCLinkerTool': { |
| 507 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE | 501 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE |
| 508 }, | 502 }, |
| 509 }, | 503 }, |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 ], | 625 ], |
| 632 }], | 626 }], |
| 633 ], | 627 ], |
| 634 } | 628 } |
| 635 | 629 |
| 636 # Local Variables: | 630 # Local Variables: |
| 637 # tab-width:2 | 631 # tab-width:2 |
| 638 # indent-tabs-mode:nil | 632 # indent-tabs-mode:nil |
| 639 # End: | 633 # End: |
| 640 # vim: set expandtab tabstop=2 shiftwidth=2: | 634 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |