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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
8 import("//third_party/webrtc/build/webrtc.gni") | 8 import("//third_party/webrtc/build/webrtc.gni") |
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
10 | 10 |
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 "java/gin_java_bridge_dispatcher.h", | 499 "java/gin_java_bridge_dispatcher.h", |
500 "java/gin_java_bridge_object.cc", | 500 "java/gin_java_bridge_object.cc", |
501 "java/gin_java_bridge_object.h", | 501 "java/gin_java_bridge_object.h", |
502 "java/gin_java_bridge_value_converter.cc", | 502 "java/gin_java_bridge_value_converter.cc", |
503 "java/gin_java_bridge_value_converter.h", | 503 "java/gin_java_bridge_value_converter.h", |
504 "java/gin_java_function_invocation_helper.cc", | 504 "java/gin_java_function_invocation_helper.cc", |
505 "java/gin_java_function_invocation_helper.h", | 505 "java/gin_java_function_invocation_helper.h", |
506 ] | 506 ] |
507 } | 507 } |
508 | 508 |
| 509 if (enable_media_remoting) { |
| 510 deps += [ "//media/remoting" ] |
| 511 } |
| 512 |
509 if (enable_webrtc) { | 513 if (enable_webrtc) { |
510 # WebRTC plugin-related stuff goes in a different section below. | 514 # WebRTC plugin-related stuff goes in a different section below. |
511 sources += [ | 515 sources += [ |
512 "media/aec_dump_message_filter.cc", | 516 "media/aec_dump_message_filter.cc", |
513 "media/aec_dump_message_filter.h", | 517 "media/aec_dump_message_filter.h", |
514 "media/audio_repetition_detector.cc", | 518 "media/audio_repetition_detector.cc", |
515 "media/audio_repetition_detector.h", | 519 "media/audio_repetition_detector.h", |
516 "media/audio_track_recorder.cc", | 520 "media/audio_track_recorder.cc", |
517 "media/audio_track_recorder.h", | 521 "media/audio_track_recorder.h", |
518 "media/canvas_capture_handler.cc", | 522 "media/canvas_capture_handler.cc", |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 # For the defines in mojo_media_config. | 904 # For the defines in mojo_media_config. |
901 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 905 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
902 } | 906 } |
903 | 907 |
904 if (!is_component_build) { | 908 if (!is_component_build) { |
905 public_deps = [ | 909 public_deps = [ |
906 ":renderer", | 910 ":renderer", |
907 ] | 911 ] |
908 } | 912 } |
909 } | 913 } |
OLD | NEW |