| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "//mojo/application/public/interfaces", | 46 "//mojo/application/public/interfaces", |
| 47 "//mojo/environment:chromium", | 47 "//mojo/environment:chromium", |
| 48 "//mojo/common:url_type_converters", | 48 "//mojo/common:url_type_converters", |
| 49 "//mojo/converters/geometry", | 49 "//mojo/converters/geometry", |
| 50 "//net", | 50 "//net", |
| 51 "//skia", | 51 "//skia", |
| 52 "//skia/public", | 52 "//skia/public", |
| 53 "//storage/common", | 53 "//storage/common", |
| 54 "//third_party/icu", | 54 "//third_party/icu", |
| 55 "//third_party/libjingle", | 55 "//third_party/libjingle", |
| 56 "//third_party/libyuv", |
| 56 "//third_party/mojo/src/mojo/edk/js", | 57 "//third_party/mojo/src/mojo/edk/js", |
| 57 "//third_party/mojo/src/mojo/public/cpp/bindings", | 58 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 58 "//third_party/mojo/src/mojo/public/js", | 59 "//third_party/mojo/src/mojo/public/js", |
| 59 "//third_party/npapi", | 60 "//third_party/npapi", |
| 60 "//third_party/WebKit/public:blink", | 61 "//third_party/WebKit/public:blink", |
| 61 "//third_party/widevine/cdm:version_h", | 62 "//third_party/widevine/cdm:version_h", |
| 62 "//ui/accessibility", | 63 "//ui/accessibility", |
| 63 "//ui/base", | 64 "//ui/base", |
| 64 "//ui/events:events_base", | 65 "//ui/events:events_base", |
| 65 "//ui/events:dom_keycode_converter", | 66 "//ui/events:dom_keycode_converter", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 ] | 139 ] |
| 139 } | 140 } |
| 140 | 141 |
| 141 if (enable_webrtc) { | 142 if (enable_webrtc) { |
| 142 sources += rebase_path( | 143 sources += rebase_path( |
| 143 content_renderer_gypi_values.private_renderer_webrtc_sources, | 144 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 144 ".", | 145 ".", |
| 145 "//content") | 146 "//content") |
| 146 deps += [ | 147 deps += [ |
| 147 "//crypto", | 148 "//crypto", |
| 148 "//third_party/libyuv", | |
| 149 "//third_party/webrtc/modules/audio_device", | 149 "//third_party/webrtc/modules/audio_device", |
| 150 "//third_party/webrtc/modules/audio_processing", | 150 "//third_party/webrtc/modules/audio_processing", |
| 151 "//third_party/libjingle:libjingle_webrtc", | 151 "//third_party/libjingle:libjingle_webrtc", |
| 152 "//third_party/libjingle:libpeerconnection", | 152 "//third_party/libjingle:libpeerconnection", |
| 153 "//third_party/libjingle:libstunprober", | 153 "//third_party/libjingle:libstunprober", |
| 154 ] | 154 ] |
| 155 } else { | 155 } else { |
| 156 sources += [ | 156 sources += [ |
| 157 "media/webrtc_logging.h", | 157 "media/webrtc_logging.h", |
| 158 "media/webrtc_logging_noop.cc", | 158 "media/webrtc_logging_noop.cc", |
| 159 ] | 159 ] |
| 160 } | 160 } |
| 161 | 161 |
| 162 if (enable_plugins) { | 162 if (enable_plugins) { |
| 163 sources += rebase_path( | 163 sources += rebase_path( |
| 164 content_renderer_gypi_values.private_renderer_plugin_sources, | 164 content_renderer_gypi_values.private_renderer_plugin_sources, |
| 165 ".", | 165 ".", |
| 166 "//content") | 166 "//content") |
| 167 deps += [ | 167 deps += [ |
| 168 "//ppapi/host", | 168 "//ppapi/host", |
| 169 "//ppapi/proxy", | 169 "//ppapi/proxy", |
| 170 "//ppapi/shared_impl", | 170 "//ppapi/shared_impl", |
| 171 "//third_party/libvpx_new", | 171 "//third_party/libvpx_new", |
| 172 "//third_party/libyuv", | |
| 173 ] | 172 ] |
| 174 } | 173 } |
| 175 | 174 |
| 176 if (enable_plugins && enable_webrtc) { | 175 if (enable_plugins && enable_webrtc) { |
| 177 sources += rebase_path( | 176 sources += rebase_path( |
| 178 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 177 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
| 179 ".", | 178 ".", |
| 180 "//content") | 179 "//content") |
| 181 } | 180 } |
| 182 | 181 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 209 | 208 |
| 210 if (enable_webvr) { | 209 if (enable_webvr) { |
| 211 sources += [ | 210 sources += [ |
| 212 "vr/vr_dispatcher.cc", | 211 "vr/vr_dispatcher.cc", |
| 213 "vr/vr_dispatcher.h", | 212 "vr/vr_dispatcher.h", |
| 214 "vr/vr_type_converters.cc", | 213 "vr/vr_type_converters.cc", |
| 215 "vr/vr_type_converters.h", | 214 "vr/vr_type_converters.h", |
| 216 ] | 215 ] |
| 217 } | 216 } |
| 218 } | 217 } |
| OLD | NEW |