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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 sources += rebase_path( | 146 sources += rebase_path( |
147 content_renderer_gypi_values.private_renderer_plugin_sources, | 147 content_renderer_gypi_values.private_renderer_plugin_sources, |
148 ".", | 148 ".", |
149 "//content") | 149 "//content") |
150 deps += [ | 150 deps += [ |
151 "//ppapi/host", | 151 "//ppapi/host", |
152 "//ppapi/proxy", | 152 "//ppapi/proxy", |
153 "//ppapi/shared_impl", | 153 "//ppapi/shared_impl", |
154 "//third_party/libvpx", | 154 "//third_party/libvpx", |
155 "//third_party/libyuv", | 155 "//third_party/libyuv", |
| 156 "//third_party/opus", |
| 157 "//third_party/speex", |
156 ] | 158 ] |
157 } else { | 159 } else { |
158 # These files are in the WebRTC list, but also require plugins. | 160 # These files are in the WebRTC list, but also require plugins. |
159 if (enable_webrtc) { | 161 if (enable_webrtc) { |
160 sources -= [ | 162 sources -= [ |
161 "media/webrtc/video_destination_handler.cc", | 163 "media/webrtc/video_destination_handler.cc", |
162 "media/webrtc/video_destination_handler.h", | 164 "media/webrtc/video_destination_handler.h", |
163 ] | 165 ] |
164 } | 166 } |
165 } | 167 } |
(...skipping 29 matching lines...) Expand all Loading... |
195 } | 197 } |
196 | 198 |
197 if (enable_media_mojo_renderer) { | 199 if (enable_media_mojo_renderer) { |
198 sources += [ | 200 sources += [ |
199 "media/media_renderer_service_provider.cc", | 201 "media/media_renderer_service_provider.cc", |
200 "media/media_renderer_service_provider.h", | 202 "media/media_renderer_service_provider.h", |
201 ] | 203 ] |
202 deps += [ "//media/mojo/services:renderer_proxy" ] | 204 deps += [ "//media/mojo/services:renderer_proxy" ] |
203 } | 205 } |
204 } | 206 } |
OLD | NEW |