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

Side by Side Diff: media/media_options.gni

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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 8
9 declare_args() { 9 declare_args() {
10 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of 10 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "cdm", 112 "cdm",
113 "renderer", 113 "renderer",
114 ] 114 ]
115 mojo_media_host = "browser" 115 mojo_media_host = "browser"
116 } else { 116 } else {
117 mojo_media_services = [ "video_decoder" ] 117 mojo_media_services = [ "video_decoder" ]
118 mojo_media_host = "gpu" 118 mojo_media_host = "gpu"
119 } 119 }
120 } 120 }
121 } 121 }
122
123 declare_args() {
124 enable_media_remoting = !is_chromecast && !is_ios && !is_android
xhwang 2016/10/05 05:27:53 Please add documentation about what this is.
xjz 2016/10/05 17:24:23 Done.
125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698