OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 'omx/omx_codec_unittest.cc', | 392 'omx/omx_codec_unittest.cc', |
393 ], | 393 ], |
394 'conditions': [ | 394 'conditions': [ |
395 ['linux_use_tcmalloc==1', { | 395 ['linux_use_tcmalloc==1', { |
396 'dependencies': [ | 396 'dependencies': [ |
397 '../base/allocator/allocator.gyp:allocator', | 397 '../base/allocator/allocator.gyp:allocator', |
398 ], | 398 ], |
399 }], | 399 }], |
400 ], | 400 ], |
401 }], | 401 }], |
402 # media_unittests is failing like crazy on Windows. So disable all test | |
403 # cases. See bug: http://crbug.com/72790 | |
404 ['OS=="win"', { | |
405 'sources!': [ | |
406 'audio/audio_input_controller_unittest.cc', | |
407 'audio/audio_input_unittest.cc', | |
408 'audio/audio_output_controller_unittest.cc', | |
409 'audio/audio_output_proxy_unittest.cc', | |
410 'audio/audio_parameters_unittest.cc', | |
411 'audio/audio_util_unittest.cc', | |
412 'audio/fake_audio_input_stream_unittest.cc', | |
413 'audio/linux/alsa_output_unittest.cc', | |
414 'audio/mac/audio_output_mac_unittest.cc', | |
415 'audio/simple_sources_unittest.cc', | |
416 'audio/win/audio_output_win_unittest.cc', | |
417 'base/composite_filter_unittest.cc', | |
418 'base/clock_impl_unittest.cc', | |
419 'base/data_buffer_unittest.cc', | |
420 'base/djb2_unittest.cc', | |
421 'base/filter_collection_unittest.cc', | |
422 'base/h264_bitstream_converter_unittest.cc', | |
423 'base/mock_ffmpeg.cc', | |
424 'base/mock_ffmpeg.h', | |
425 'base/mock_reader.h', | |
426 'base/mock_task.cc', | |
427 'base/mock_task.h', | |
428 'base/pipeline_impl_unittest.cc', | |
429 'base/pts_heap_unittest.cc', | |
430 'base/seekable_buffer_unittest.cc', | |
431 'base/state_matrix_unittest.cc', | |
432 'base/video_frame_unittest.cc', | |
433 'base/yuv_convert_unittest.cc', | |
434 'filters/audio_renderer_algorithm_ola_unittest.cc', | |
435 'filters/audio_renderer_base_unittest.cc', | |
436 'filters/bitstream_converter_unittest.cc', | |
437 'filters/decoder_base_unittest.cc', | |
438 'filters/ffmpeg_demuxer_unittest.cc', | |
439 'filters/ffmpeg_glue_unittest.cc', | |
440 'filters/ffmpeg_h264_bitstream_converter_unittest.cc', | |
441 'filters/ffmpeg_video_decoder_unittest.cc', | |
442 'filters/file_data_source_unittest.cc', | |
443 'filters/video_renderer_base_unittest.cc', | |
444 'omx/mock_omx.cc', | |
445 'omx/mock_omx.h', | |
446 'video/ffmpeg_video_decode_engine_unittest.cc', | |
447 ], | |
448 }], | |
449 ], | 402 ], |
450 }, | 403 }, |
451 { | 404 { |
452 'target_name': 'media_test_support', | 405 'target_name': 'media_test_support', |
453 'type': '<(library)', | 406 'type': '<(library)', |
454 'dependencies': [ | 407 'dependencies': [ |
455 'media', | 408 'media', |
456 '../base/base.gyp:base', | 409 '../base/base.gyp:base', |
457 '../testing/gmock.gyp:gmock', | 410 '../testing/gmock.gyp:gmock', |
458 '../testing/gtest.gyp:gtest', | 411 '../testing/gtest.gyp:gtest', |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 ], | 723 ], |
771 }], | 724 }], |
772 ], | 725 ], |
773 } | 726 } |
774 | 727 |
775 # Local Variables: | 728 # Local Variables: |
776 # tab-width:2 | 729 # tab-width:2 |
777 # indent-tabs-mode:nil | 730 # indent-tabs-mode:nil |
778 # End: | 731 # End: |
779 # vim: set expandtab tabstop=2 shiftwidth=2: | 732 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |