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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 "media/webrtc_logging_noop.cc", | 139 "media/webrtc_logging_noop.cc", |
140 ] | 140 ] |
141 } | 141 } |
142 | 142 |
143 if (enable_plugins) { | 143 if (enable_plugins) { |
144 sources += rebase_path( | 144 sources += rebase_path( |
145 content_renderer_gypi_values.private_renderer_plugin_sources, | 145 content_renderer_gypi_values.private_renderer_plugin_sources, |
146 ".", | 146 ".", |
147 "//content") | 147 "//content") |
148 deps += [ | 148 deps += [ |
| 149 "//media/cast:sender", |
149 "//ppapi/host", | 150 "//ppapi/host", |
150 "//ppapi/proxy", | 151 "//ppapi/proxy", |
151 "//ppapi/shared_impl", | 152 "//ppapi/shared_impl", |
152 "//third_party/libyuv", | 153 "//third_party/libyuv", |
153 ] | 154 ] |
154 } else { | 155 } else { |
155 # These files are in the WebRTC list, but also require plugins. | 156 # These files are in the WebRTC list, but also require plugins. |
156 if (enable_webrtc) { | 157 if (enable_webrtc) { |
157 sources -= [ | 158 sources -= [ |
158 "media/webrtc/video_destination_handler.cc", | 159 "media/webrtc/video_destination_handler.cc", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 } | 193 } |
193 | 194 |
194 if (enable_media_mojo_renderer) { | 195 if (enable_media_mojo_renderer) { |
195 sources += [ | 196 sources += [ |
196 "media/media_renderer_service_provider.cc", | 197 "media/media_renderer_service_provider.cc", |
197 "media/media_renderer_service_provider.h", | 198 "media/media_renderer_service_provider.h", |
198 ] | 199 ] |
199 deps += [ "//media/mojo/services:renderer_proxy" ] | 200 deps += [ "//media/mojo/services:renderer_proxy" ] |
200 } | 201 } |
201 } | 202 } |
OLD | NEW |