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

Side by Side Diff: media/media_options.gni

Issue 2067073002: media: Run mojo media application in GPU process on desktop by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: media: Run mojo media application in GPU process on desktop by default Created 4 years, 6 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
« no previous file with comments | « no previous file | media/mojo/services/service_factory_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | media/mojo/services/service_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698