| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//ppapi/features/features.gni") | 10 import("//ppapi/features/features.gni") |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 ] | 533 ] |
| 534 } | 534 } |
| 535 | 535 |
| 536 if (enable_media_remoting) { | 536 if (enable_media_remoting) { |
| 537 deps += [ "//media/remoting" ] | 537 deps += [ "//media/remoting" ] |
| 538 } | 538 } |
| 539 | 539 |
| 540 if (enable_webrtc) { | 540 if (enable_webrtc) { |
| 541 # WebRTC plugin-related stuff goes in a different section below. | 541 # WebRTC plugin-related stuff goes in a different section below. |
| 542 sources += [ | 542 sources += [ |
| 543 "image_capture/image_capture_frame_grabber.cc", |
| 544 "image_capture/image_capture_frame_grabber.h", |
| 543 "media/aec_dump_message_filter.cc", | 545 "media/aec_dump_message_filter.cc", |
| 544 "media/aec_dump_message_filter.h", | 546 "media/aec_dump_message_filter.h", |
| 545 "media/audio_repetition_detector.cc", | 547 "media/audio_repetition_detector.cc", |
| 546 "media/audio_repetition_detector.h", | 548 "media/audio_repetition_detector.h", |
| 547 "media/external_media_stream_audio_source.cc", | 549 "media/external_media_stream_audio_source.cc", |
| 548 "media/external_media_stream_audio_source.h", | 550 "media/external_media_stream_audio_source.h", |
| 549 "media/gpu/rtc_video_decoder.cc", | 551 "media/gpu/rtc_video_decoder.cc", |
| 550 "media/gpu/rtc_video_decoder.h", | 552 "media/gpu/rtc_video_decoder.h", |
| 551 "media/gpu/rtc_video_decoder_factory.cc", | 553 "media/gpu/rtc_video_decoder_factory.cc", |
| 552 "media/gpu/rtc_video_decoder_factory.h", | 554 "media/gpu/rtc_video_decoder_factory.h", |
| 553 "media/gpu/rtc_video_encoder.cc", | 555 "media/gpu/rtc_video_encoder.cc", |
| 554 "media/gpu/rtc_video_encoder.h", | 556 "media/gpu/rtc_video_encoder.h", |
| 555 "media/gpu/rtc_video_encoder_factory.cc", | 557 "media/gpu/rtc_video_encoder_factory.cc", |
| 556 "media/gpu/rtc_video_encoder_factory.h", | 558 "media/gpu/rtc_video_encoder_factory.h", |
| 557 "media/image_capture_frame_grabber.cc", | |
| 558 "media/image_capture_frame_grabber.h", | |
| 559 "media/local_media_stream_audio_source.cc", | 559 "media/local_media_stream_audio_source.cc", |
| 560 "media/local_media_stream_audio_source.h", | 560 "media/local_media_stream_audio_source.h", |
| 561 "media/media_devices_event_dispatcher.cc", | 561 "media/media_devices_event_dispatcher.cc", |
| 562 "media/media_devices_event_dispatcher.h", | 562 "media/media_devices_event_dispatcher.h", |
| 563 "media/media_devices_listener_impl.cc", | 563 "media/media_devices_listener_impl.cc", |
| 564 "media/media_devices_listener_impl.h", | 564 "media/media_devices_listener_impl.h", |
| 565 "media/media_stream.cc", | 565 "media/media_stream.cc", |
| 566 "media/media_stream.h", | 566 "media/media_stream.h", |
| 567 "media/media_stream_audio_deliverer.h", | 567 "media/media_stream_audio_deliverer.h", |
| 568 "media/media_stream_audio_level_calculator.cc", | 568 "media/media_stream_audio_level_calculator.cc", |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 # For the defines in mojo_media_config. | 943 # For the defines in mojo_media_config. |
| 944 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 944 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 945 } | 945 } |
| 946 | 946 |
| 947 if (!is_component_build) { | 947 if (!is_component_build) { |
| 948 public_deps = [ | 948 public_deps = [ |
| 949 ":renderer", | 949 ":renderer", |
| 950 ] | 950 ] |
| 951 } | 951 } |
| 952 } | 952 } |
| OLD | NEW |