| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 "filters/blocking_url_protocol_unittest.cc", | 568 "filters/blocking_url_protocol_unittest.cc", |
| 569 "filters/ffmpeg_demuxer_unittest.cc", | 569 "filters/ffmpeg_demuxer_unittest.cc", |
| 570 "filters/ffmpeg_glue_unittest.cc", | 570 "filters/ffmpeg_glue_unittest.cc", |
| 571 "filters/ffmpeg_video_decoder_unittest.cc", | 571 "filters/ffmpeg_video_decoder_unittest.cc", |
| 572 "filters/in_memory_url_protocol_unittest.cc", | 572 "filters/in_memory_url_protocol_unittest.cc", |
| 573 "filters/pipeline_integration_test.cc", | 573 "filters/pipeline_integration_test.cc", |
| 574 "filters/pipeline_integration_test_base.cc", | 574 "filters/pipeline_integration_test_base.cc", |
| 575 ] | 575 ] |
| 576 } | 576 } |
| 577 | 577 |
| 578 if (cpu_arch != "arm" && is_chromeos && use_x11) { | 578 if (cpu_arch != "arm" && is_chromeos) { |
| 579 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] | 579 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] |
| 580 } | 580 } |
| 581 | 581 |
| 582 if (proprietary_codecs) { | 582 if (proprietary_codecs) { |
| 583 sources += [ | 583 sources += [ |
| 584 "filters/ffmpeg_aac_bitstream_converter_unittest.cc", | 584 "filters/ffmpeg_aac_bitstream_converter_unittest.cc", |
| 585 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", | 585 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", |
| 586 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", | 586 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", |
| 587 "formats/common/stream_parser_test_base.cc", | 587 "formats/common/stream_parser_test_base.cc", |
| 588 "formats/common/stream_parser_test_base.h", | 588 "formats/common/stream_parser_test_base.h", |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 deps = [ | 779 deps = [ |
| 780 ":media", | 780 ":media", |
| 781 ":shared_memory_support", | 781 ":shared_memory_support", |
| 782 "//base", | 782 "//base", |
| 783 "//ui/gl", | 783 "//ui/gl", |
| 784 "//ui/gfx", | 784 "//ui/gfx", |
| 785 "//ui/gfx/geometry", | 785 "//ui/gfx/geometry", |
| 786 ] | 786 ] |
| 787 } | 787 } |
| 788 } | 788 } |
| OLD | NEW |