| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 sources += rebase_path( | 150 sources += rebase_path( |
| 151 content_renderer_gypi_values.private_renderer_webrtc_sources, | 151 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 152 ".", | 152 ".", |
| 153 "//content") | 153 "//content") |
| 154 | 154 |
| 155 deps += [ | 155 deps += [ |
| 156 "//crypto", | 156 "//crypto", |
| 157 "//third_party/libjingle:libjingle_webrtc", | 157 "//third_party/libjingle:libjingle_webrtc", |
| 158 "//third_party/libjingle:libpeerconnection", | 158 "//third_party/libjingle:libpeerconnection", |
| 159 "//third_party/libjingle:libstunprober", | 159 "//third_party/libjingle:libstunprober", |
| 160 "//third_party/webrtc/base:rtc_base", |
| 161 "//third_party/webrtc/common_video", |
| 160 "//third_party/webrtc/modules/audio_device", | 162 "//third_party/webrtc/modules/audio_device", |
| 161 "//third_party/webrtc/modules/audio_processing", | 163 "//third_party/webrtc/modules/audio_processing", |
| 164 "//third_party/webrtc/system_wrappers", |
| 162 ] | 165 ] |
| 163 } else { | 166 } else { |
| 164 sources += [ | 167 sources += [ |
| 165 "media/webrtc_logging.h", | 168 "media/webrtc_logging.h", |
| 166 "media/webrtc_logging_noop.cc", | 169 "media/webrtc_logging_noop.cc", |
| 167 ] | 170 ] |
| 168 } | 171 } |
| 169 | 172 |
| 170 if (enable_plugins) { | 173 if (enable_plugins) { |
| 171 sources += rebase_path( | 174 sources += rebase_path( |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 "vr/vr_dispatcher.h", | 224 "vr/vr_dispatcher.h", |
| 222 "vr/vr_type_converters.cc", | 225 "vr/vr_type_converters.cc", |
| 223 "vr/vr_type_converters.h", | 226 "vr/vr_type_converters.h", |
| 224 ] | 227 ] |
| 225 } | 228 } |
| 226 | 229 |
| 227 if (use_seccomp_bpf) { | 230 if (use_seccomp_bpf) { |
| 228 defines += [ "USE_SECCOMP_BPF" ] | 231 defines += [ "USE_SECCOMP_BPF" ] |
| 229 } | 232 } |
| 230 } | 233 } |
| OLD | NEW |