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