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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "--typename=MediaOzonePlatform", | 79 "--typename=MediaOzonePlatform", |
80 "--include=\"media/ozone/media_ozone_platform.h\"", | 80 "--include=\"media/ozone/media_ozone_platform.h\"", |
81 ] | 81 ] |
82 } | 82 } |
83 } | 83 } |
84 | 84 |
85 component("media") { | 85 component("media") { |
86 sources = [ | 86 sources = [ |
87 "blink/skcanvas_video_renderer.cc", | 87 "blink/skcanvas_video_renderer.cc", |
88 "blink/skcanvas_video_renderer.h", | 88 "blink/skcanvas_video_renderer.h", |
| 89 "capture/animated_content_sampler.cc", |
| 90 "capture/animated_content_sampler.h", |
| 91 "capture/capture_resolution_chooser.cc", |
| 92 "capture/capture_resolution_chooser.h", |
| 93 "capture/media_video_capture_device_core.cc", |
| 94 "capture/media_video_capture_device_core.h", |
| 95 "capture/smooth_event_sampler.cc", |
| 96 "capture/smooth_event_sampler.h", |
| 97 "capture/video_capture_oracle.cc", |
| 98 "capture/video_capture_oracle.h", |
89 "cdm/aes_decryptor.cc", | 99 "cdm/aes_decryptor.cc", |
90 "cdm/aes_decryptor.h", | 100 "cdm/aes_decryptor.h", |
91 "cdm/cenc_utils.cc", | 101 "cdm/cenc_utils.cc", |
92 "cdm/cenc_utils.h", | 102 "cdm/cenc_utils.h", |
93 "cdm/default_cdm_factory.cc", | 103 "cdm/default_cdm_factory.cc", |
94 "cdm/default_cdm_factory.h", | 104 "cdm/default_cdm_factory.h", |
95 "cdm/json_web_key.cc", | 105 "cdm/json_web_key.cc", |
96 "cdm/json_web_key.h", | 106 "cdm/json_web_key.h", |
97 "cdm/key_system_names.cc", | 107 "cdm/key_system_names.cc", |
98 "cdm/key_system_names.h", | 108 "cdm/key_system_names.h", |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 "//media/base:base_for_cast_ios", | 502 "//media/base:base_for_cast_ios", |
493 "//media/base/mac", | 503 "//media/base/mac", |
494 "//ui/gfx/geometry", | 504 "//ui/gfx/geometry", |
495 ] | 505 ] |
496 } | 506 } |
497 } | 507 } |
498 | 508 |
499 test("media_unittests") { | 509 test("media_unittests") { |
500 sources = [ | 510 sources = [ |
501 "blink/skcanvas_video_renderer_unittest.cc", | 511 "blink/skcanvas_video_renderer_unittest.cc", |
| 512 "capture/animated_content_sampler_unittest.cc", |
| 513 "capture/capture_resolution_chooser_unittest.cc", |
| 514 "capture/smooth_event_sampler_unittest.cc", |
| 515 "capture/video_capture_oracle_unittest.cc", |
502 "cdm/aes_decryptor_unittest.cc", | 516 "cdm/aes_decryptor_unittest.cc", |
503 "cdm/cenc_utils_unittest.cc", | 517 "cdm/cenc_utils_unittest.cc", |
504 "cdm/json_web_key_unittest.cc", | 518 "cdm/json_web_key_unittest.cc", |
505 "filters/audio_clock_unittest.cc", | 519 "filters/audio_clock_unittest.cc", |
506 "filters/audio_decoder_selector_unittest.cc", | 520 "filters/audio_decoder_selector_unittest.cc", |
507 "filters/audio_renderer_algorithm_unittest.cc", | 521 "filters/audio_renderer_algorithm_unittest.cc", |
508 "filters/chunk_demuxer_unittest.cc", | 522 "filters/chunk_demuxer_unittest.cc", |
509 "filters/decrypting_audio_decoder_unittest.cc", | 523 "filters/decrypting_audio_decoder_unittest.cc", |
510 "filters/decrypting_demuxer_stream_unittest.cc", | 524 "filters/decrypting_demuxer_stream_unittest.cc", |
511 "filters/decrypting_video_decoder_unittest.cc", | 525 "filters/decrypting_video_decoder_unittest.cc", |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 "//media/base:test_support", | 750 "//media/base:test_support", |
737 "//media/test:pipeline_integration_tests", | 751 "//media/test:pipeline_integration_tests", |
738 "//testing/gmock", | 752 "//testing/gmock", |
739 "//testing/gtest", | 753 "//testing/gtest", |
740 "//third_party/ffmpeg", | 754 "//third_party/ffmpeg", |
741 "//ui/gfx/geometry", | 755 "//ui/gfx/geometry", |
742 "//ui/gfx:test_support", | 756 "//ui/gfx:test_support", |
743 ] | 757 ] |
744 } | 758 } |
745 } | 759 } |
OLD | NEW |