| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 deps += [ | 125 deps += [ |
| 126 "//crypto", | 126 "//crypto", |
| 127 "//third_party/libyuv", | 127 "//third_party/libyuv", |
| 128 "//third_party/webrtc/modules/audio_device", | 128 "//third_party/webrtc/modules/audio_device", |
| 129 "//third_party/webrtc/modules/audio_processing", | 129 "//third_party/webrtc/modules/audio_processing", |
| 130 "//third_party/libjingle:libjingle_webrtc", | 130 "//third_party/libjingle:libjingle_webrtc", |
| 131 "//third_party/libjingle:libpeerconnection", | 131 "//third_party/libjingle:libpeerconnection", |
| 132 ] | 132 ] |
| 133 } else { | 133 } else { |
| 134 sources += [ | 134 sources += [ |
| 135 "media/webrtc_logging.h", |
| 135 "media/webrtc_logging_noop.cc", | 136 "media/webrtc_logging_noop.cc", |
| 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/host", | 146 "//ppapi/host", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |