| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "audio_decoder", | 109 "audio_decoder", |
| 110 ] | 110 ] |
| 111 mojo_media_host = "gpu" | 111 mojo_media_host = "gpu" |
| 112 } else if (is_chromecast) { | 112 } else if (is_chromecast) { |
| 113 mojo_media_services = [ | 113 mojo_media_services = [ |
| 114 "cdm", | 114 "cdm", |
| 115 "renderer", | 115 "renderer", |
| 116 ] | 116 ] |
| 117 mojo_media_host = "browser" | 117 mojo_media_host = "browser" |
| 118 } else { | 118 } else { |
| 119 mojo_media_services = [ "cdm" ] | 119 mojo_media_services = [ "video_decoder" ] |
| 120 mojo_media_host = "utility" | 120 mojo_media_host = "gpu" |
| 121 } | 121 } |
| 122 } | 122 } |
| 123 } | 123 } |
| OLD | NEW |