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