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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/renderer/renderer.gni") | 7 import("//content/renderer/renderer.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("renderer") { | 10 source_set("renderer") { |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 } | 180 } |
181 | 181 |
182 if (enable_browser_cdms) { | 182 if (enable_browser_cdms) { |
183 sources += [ | 183 sources += [ |
184 "media/crypto/proxy_media_keys.cc", | 184 "media/crypto/proxy_media_keys.cc", |
185 "media/crypto/proxy_media_keys.h", | 185 "media/crypto/proxy_media_keys.h", |
186 "media/crypto/renderer_cdm_manager.cc", | 186 "media/crypto/renderer_cdm_manager.cc", |
187 "media/crypto/renderer_cdm_manager.h", | 187 "media/crypto/renderer_cdm_manager.h", |
188 ] | 188 ] |
189 } | 189 } |
| 190 |
| 191 if (enable_media_mojo_renderer) { |
| 192 sources += [ |
| 193 "media/media_renderer_service_provider.cc", |
| 194 "media/media_renderer_service_provider.h", |
| 195 ] |
| 196 deps += [ "//media/mojo/services:renderer_proxy" ] |
| 197 } |
190 } | 198 } |
OLD | NEW |