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