Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: content/renderer/BUILD.gn

Issue 2389473002: Media Remoting: Add RemotingController. (Closed)
Patch Set: Add building flag. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 "java/gin_java_bridge_dispatcher.h", 502 "java/gin_java_bridge_dispatcher.h",
503 "java/gin_java_bridge_object.cc", 503 "java/gin_java_bridge_object.cc",
504 "java/gin_java_bridge_object.h", 504 "java/gin_java_bridge_object.h",
505 "java/gin_java_bridge_value_converter.cc", 505 "java/gin_java_bridge_value_converter.cc",
506 "java/gin_java_bridge_value_converter.h", 506 "java/gin_java_bridge_value_converter.h",
507 "java/gin_java_function_invocation_helper.cc", 507 "java/gin_java_function_invocation_helper.cc",
508 "java/gin_java_function_invocation_helper.h", 508 "java/gin_java_function_invocation_helper.h",
509 ] 509 ]
510 } 510 }
511 511
512 if (enable_media_remoting) {
513 deps += [ "//media/remoting" ]
514
515 defines += [ "ENABLE_MEDIA_REMOTING" ]
xhwang 2016/10/05 05:27:53 This is the old way. For new code, please use BUIL
xjz 2016/10/05 17:24:23 Done.
516 }
517
512 if (enable_webrtc) { 518 if (enable_webrtc) {
513 # WebRTC plugin-related stuff goes in a different section below. 519 # WebRTC plugin-related stuff goes in a different section below.
514 sources += [ 520 sources += [
515 "media/aec_dump_message_filter.cc", 521 "media/aec_dump_message_filter.cc",
516 "media/aec_dump_message_filter.h", 522 "media/aec_dump_message_filter.h",
517 "media/audio_repetition_detector.cc", 523 "media/audio_repetition_detector.cc",
518 "media/audio_repetition_detector.h", 524 "media/audio_repetition_detector.h",
519 "media/audio_track_recorder.cc", 525 "media/audio_track_recorder.cc",
520 "media/audio_track_recorder.h", 526 "media/audio_track_recorder.h",
521 "media/canvas_capture_handler.cc", 527 "media/canvas_capture_handler.cc",
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 # For the defines in mojo_media_config. 909 # For the defines in mojo_media_config.
904 public_configs = [ "//media/mojo/services:mojo_media_config" ] 910 public_configs = [ "//media/mojo/services:mojo_media_config" ]
905 } 911 }
906 912
907 if (!is_component_build) { 913 if (!is_component_build) {
908 public_deps = [ 914 public_deps = [
909 ":renderer", 915 ":renderer",
910 ] 916 ]
911 } 917 }
912 } 918 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.h » ('j') | content/renderer/render_frame_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698