Chromium Code Reviews| 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("//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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 116 "cdm", | 116 "cdm", |
| 117 "renderer", | 117 "renderer", |
| 118 ] | 118 ] |
| 119 mojo_media_host = "browser" | 119 mojo_media_host = "browser" |
| 120 } else { | 120 } else { |
| 121 mojo_media_services = [ "video_decoder" ] | 121 mojo_media_services = [ "video_decoder" ] |
| 122 mojo_media_host = "gpu" | 122 mojo_media_host = "gpu" |
| 123 } | 123 } |
| 124 } | 124 } |
| 125 } | 125 } |
| 126 | |
| 127 declare_args() { | |
| 128 # flag to enable media remoting feature. | |
|
xhwang
2016/08/25 20:00:15
Could you please provide more context about what "
erickung1
2016/09/01 09:05:05
Sure, the media remoting is the original project w
| |
| 129 media_remoting = true | |
| 130 } | |
| OLD | NEW |