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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 "//media/base/android:video_capture_jni_headers", | 360 "//media/base/android:video_capture_jni_headers", |
361 ] | 361 ] |
362 allow_circular_includes_from = [ "//media/base/android" ] | 362 allow_circular_includes_from = [ "//media/base/android" ] |
363 } else { | 363 } else { |
364 sources += [ | 364 sources += [ |
365 "filters/opus_audio_decoder.cc", | 365 "filters/opus_audio_decoder.cc", |
366 "filters/opus_audio_decoder.h", | 366 "filters/opus_audio_decoder.h", |
367 ] | 367 ] |
368 } | 368 } |
369 | 369 |
370 if (current_cpu != "arm" && is_chromeos) { | 370 if (current_cpu != "arm" && is_chromeos_ui) { |
371 sources += [ | 371 sources += [ |
372 "filters/h264_bitstream_buffer.cc", | 372 "filters/h264_bitstream_buffer.cc", |
373 "filters/h264_bitstream_buffer.h", | 373 "filters/h264_bitstream_buffer.h", |
374 ] | 374 ] |
375 } | 375 } |
376 | 376 |
377 # A simple WebM encoder for animated avatars on ChromeOS. | 377 # A simple WebM encoder for animated avatars on ChromeOS. |
378 | 378 |
379 if (use_ozone) { | 379 if (use_ozone) { |
380 # Used for the generated listing header (ui/ozone/platform_list.h) | 380 # Used for the generated listing header (ui/ozone/platform_list.h) |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 "filters/audio_decoder_unittest.cc", | 635 "filters/audio_decoder_unittest.cc", |
636 "filters/audio_file_reader_unittest.cc", | 636 "filters/audio_file_reader_unittest.cc", |
637 "filters/blocking_url_protocol_unittest.cc", | 637 "filters/blocking_url_protocol_unittest.cc", |
638 "filters/ffmpeg_demuxer_unittest.cc", | 638 "filters/ffmpeg_demuxer_unittest.cc", |
639 "filters/ffmpeg_glue_unittest.cc", | 639 "filters/ffmpeg_glue_unittest.cc", |
640 "filters/ffmpeg_video_decoder_unittest.cc", | 640 "filters/ffmpeg_video_decoder_unittest.cc", |
641 "filters/in_memory_url_protocol_unittest.cc", | 641 "filters/in_memory_url_protocol_unittest.cc", |
642 ] | 642 ] |
643 } | 643 } |
644 | 644 |
645 if (current_cpu != "arm" && is_chromeos) { | 645 if (current_cpu != "arm" && is_chromeos_ui) { |
646 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] | 646 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] |
647 } | 647 } |
648 | 648 |
649 if (proprietary_codecs) { | 649 if (proprietary_codecs) { |
650 sources += [ | 650 sources += [ |
651 "cdm/cenc_utils_unittest.cc", | 651 "cdm/cenc_utils_unittest.cc", |
652 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", | 652 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", |
653 "formats/common/stream_parser_test_base.cc", | 653 "formats/common/stream_parser_test_base.cc", |
654 "formats/common/stream_parser_test_base.h", | 654 "formats/common/stream_parser_test_base.h", |
655 "formats/mp2t/es_adapter_video_unittest.cc", | 655 "formats/mp2t/es_adapter_video_unittest.cc", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 "//media/base:test_support", | 797 "//media/base:test_support", |
798 "//media/test:pipeline_integration_tests", | 798 "//media/test:pipeline_integration_tests", |
799 "//testing/gmock", | 799 "//testing/gmock", |
800 "//testing/gtest", | 800 "//testing/gtest", |
801 "//third_party/ffmpeg", | 801 "//third_party/ffmpeg", |
802 "//ui/gfx/geometry", | 802 "//ui/gfx/geometry", |
803 "//ui/gfx:test_support", | 803 "//ui/gfx:test_support", |
804 ] | 804 ] |
805 } | 805 } |
806 } | 806 } |
OLD | NEW |