| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 'filters/decoder_base_unittest.cc', | 404 'filters/decoder_base_unittest.cc', |
| 405 'filters/ffmpeg_demuxer_unittest.cc', | 405 'filters/ffmpeg_demuxer_unittest.cc', |
| 406 'filters/ffmpeg_glue_unittest.cc', | 406 'filters/ffmpeg_glue_unittest.cc', |
| 407 'filters/ffmpeg_h264_bitstream_converter_unittest.cc', | 407 'filters/ffmpeg_h264_bitstream_converter_unittest.cc', |
| 408 'filters/ffmpeg_video_decoder_unittest.cc', | 408 'filters/ffmpeg_video_decoder_unittest.cc', |
| 409 'filters/file_data_source_unittest.cc', | 409 'filters/file_data_source_unittest.cc', |
| 410 'filters/rtc_video_decoder_unittest.cc', | 410 'filters/rtc_video_decoder_unittest.cc', |
| 411 'filters/video_renderer_base_unittest.cc', | 411 'filters/video_renderer_base_unittest.cc', |
| 412 'video/ffmpeg_video_decode_engine_unittest.cc', | 412 'video/ffmpeg_video_decode_engine_unittest.cc', |
| 413 ], | 413 ], |
| 414 'conditions': [ |
| 415 ['linux_use_tcmalloc==1', { |
| 416 'dependencies': [ |
| 417 '../base/allocator/allocator.gyp:allocator', |
| 418 ], |
| 419 }], |
| 420 ], |
| 414 }, | 421 }, |
| 415 { | 422 { |
| 416 'target_name': 'media_test_support', | 423 'target_name': 'media_test_support', |
| 417 'type': 'static_library', | 424 'type': 'static_library', |
| 418 'dependencies': [ | 425 'dependencies': [ |
| 419 'media', | 426 'media', |
| 420 '../base/base.gyp:base', | 427 '../base/base.gyp:base', |
| 421 '../testing/gmock.gyp:gmock', | 428 '../testing/gmock.gyp:gmock', |
| 422 '../testing/gtest.gyp:gtest', | 429 '../testing/gtest.gyp:gtest', |
| 423 ], | 430 ], |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 ], | 700 ], |
| 694 }], | 701 }], |
| 695 ], | 702 ], |
| 696 } | 703 } |
| 697 | 704 |
| 698 # Local Variables: | 705 # Local Variables: |
| 699 # tab-width:2 | 706 # tab-width:2 |
| 700 # indent-tabs-mode:nil | 707 # indent-tabs-mode:nil |
| 701 # End: | 708 # End: |
| 702 # vim: set expandtab tabstop=2 shiftwidth=2: | 709 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |