| 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 "filters/blocking_url_protocol_unittest.cc", | 559 "filters/blocking_url_protocol_unittest.cc", |
| 560 "filters/ffmpeg_demuxer_unittest.cc", | 560 "filters/ffmpeg_demuxer_unittest.cc", |
| 561 "filters/ffmpeg_glue_unittest.cc", | 561 "filters/ffmpeg_glue_unittest.cc", |
| 562 "filters/ffmpeg_video_decoder_unittest.cc", | 562 "filters/ffmpeg_video_decoder_unittest.cc", |
| 563 "filters/in_memory_url_protocol_unittest.cc", | 563 "filters/in_memory_url_protocol_unittest.cc", |
| 564 "filters/pipeline_integration_test.cc", | 564 "filters/pipeline_integration_test.cc", |
| 565 "filters/pipeline_integration_test_base.cc", | 565 "filters/pipeline_integration_test_base.cc", |
| 566 ] | 566 ] |
| 567 } | 567 } |
| 568 | 568 |
| 569 if (cpu_arch != "arm" && is_chromeos && use_x11) { | 569 if (cpu_arch != "arm" && is_chromeos) { |
| 570 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] | 570 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] |
| 571 } | 571 } |
| 572 | 572 |
| 573 if (proprietary_codecs) { | 573 if (proprietary_codecs) { |
| 574 sources += [ | 574 sources += [ |
| 575 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", | 575 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", |
| 576 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", | 576 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", |
| 577 "formats/common/stream_parser_test_base.cc", | 577 "formats/common/stream_parser_test_base.cc", |
| 578 "formats/common/stream_parser_test_base.h", | 578 "formats/common/stream_parser_test_base.h", |
| 579 "formats/mp2t/es_adapter_video_unittest.cc", | 579 "formats/mp2t/es_adapter_video_unittest.cc", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 deps = [ | 766 deps = [ |
| 767 ":media", | 767 ":media", |
| 768 ":shared_memory_support", | 768 ":shared_memory_support", |
| 769 "//base", | 769 "//base", |
| 770 "//ui/gl", | 770 "//ui/gl", |
| 771 "//ui/gfx", | 771 "//ui/gfx", |
| 772 "//ui/gfx/geometry", | 772 "//ui/gfx/geometry", |
| 773 ] | 773 ] |
| 774 } | 774 } |
| 775 } | 775 } |
| OLD | NEW |