| 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 "filters/audio_decoder_unittest.cc", | 569 "filters/audio_decoder_unittest.cc", |
| 570 "filters/audio_file_reader_unittest.cc", | 570 "filters/audio_file_reader_unittest.cc", |
| 571 "filters/blocking_url_protocol_unittest.cc", | 571 "filters/blocking_url_protocol_unittest.cc", |
| 572 "filters/ffmpeg_demuxer_unittest.cc", | 572 "filters/ffmpeg_demuxer_unittest.cc", |
| 573 "filters/ffmpeg_glue_unittest.cc", | 573 "filters/ffmpeg_glue_unittest.cc", |
| 574 "filters/ffmpeg_video_decoder_unittest.cc", | 574 "filters/ffmpeg_video_decoder_unittest.cc", |
| 575 "filters/in_memory_url_protocol_unittest.cc", | 575 "filters/in_memory_url_protocol_unittest.cc", |
| 576 ] | 576 ] |
| 577 } | 577 } |
| 578 | 578 |
| 579 if (cpu_arch != "arm" && is_chromeos) { | 579 if (cpu_arch != "arm" && is_chromeos && use_x11) { |
| 580 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] | 580 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] |
| 581 } | 581 } |
| 582 | 582 |
| 583 if (proprietary_codecs) { | 583 if (proprietary_codecs) { |
| 584 sources += [ | 584 sources += [ |
| 585 "filters/ffmpeg_aac_bitstream_converter_unittest.cc", | 585 "filters/ffmpeg_aac_bitstream_converter_unittest.cc", |
| 586 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", | 586 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", |
| 587 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", | 587 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", |
| 588 "formats/common/stream_parser_test_base.cc", | 588 "formats/common/stream_parser_test_base.cc", |
| 589 "formats/common/stream_parser_test_base.h", | 589 "formats/common/stream_parser_test_base.h", |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 deps = [ | 748 deps = [ |
| 749 ":media", | 749 ":media", |
| 750 ":shared_memory_support", | 750 ":shared_memory_support", |
| 751 "//base", | 751 "//base", |
| 752 "//ui/gl", | 752 "//ui/gl", |
| 753 "//ui/gfx", | 753 "//ui/gfx", |
| 754 "//ui/gfx/geometry", | 754 "//ui/gfx/geometry", |
| 755 ] | 755 ] |
| 756 } | 756 } |
| 757 } | 757 } |
| OLD | NEW |