| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 171 "//third_party/libvpx_new", |
| 172 "//third_party/libyuv", | 172 "//third_party/libyuv", |
| 173 ] | 173 ] |
| 174 } | 174 } |
| 175 | 175 |
| 176 if (enable_plugins && enable_webrtc) { | 176 if (enable_plugins && enable_webrtc) { |
| 177 sources += rebase_path( | 177 sources += rebase_path( |
| 178 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 178 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
| 179 ".", | 179 ".", |
| 180 "//content") | 180 "//content") |
| 181 } | 181 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 209 | 209 |
| 210 if (enable_webvr) { | 210 if (enable_webvr) { |
| 211 sources += [ | 211 sources += [ |
| 212 "vr/vr_dispatcher.cc", | 212 "vr/vr_dispatcher.cc", |
| 213 "vr/vr_dispatcher.h", | 213 "vr/vr_dispatcher.h", |
| 214 "vr/vr_type_converters.cc", | 214 "vr/vr_type_converters.cc", |
| 215 "vr/vr_type_converters.h", | 215 "vr/vr_type_converters.h", |
| 216 ] | 216 ] |
| 217 } | 217 } |
| 218 } | 218 } |
| OLD | NEW |