| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 | 149 |
| 150 if (enable_webrtc) { | 150 if (enable_webrtc) { |
| 151 sources += rebase_path( | 151 sources += rebase_path( |
| 152 content_renderer_gypi_values.private_renderer_webrtc_sources, | 152 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 153 ".", | 153 ".", |
| 154 "//content") | 154 "//content") |
| 155 | 155 |
| 156 deps += [ | 156 deps += [ |
| 157 "//crypto", | 157 "//crypto", |
| 158 "//third_party/libjingle:libjingle_webrtc", | 158 "//third_party/libjingle:libjingle_webrtc", |
| 159 "//third_party/libjingle:libpeerconnection", | |
| 160 "//third_party/libjingle:libstunprober", | 159 "//third_party/libjingle:libstunprober", |
| 161 "//third_party/libvpx", | 160 "//third_party/libvpx", |
| 162 "//third_party/webrtc/base:rtc_base", | 161 "//third_party/webrtc/base:rtc_base", |
| 163 "//third_party/webrtc/common_video", | 162 "//third_party/webrtc/common_video", |
| 164 "//third_party/webrtc/modules/audio_device", | 163 "//third_party/webrtc/modules/audio_device", |
| 165 "//third_party/webrtc/modules/audio_processing", | 164 "//third_party/webrtc/modules/audio_processing", |
| 166 "//third_party/webrtc/modules/video_coding:webrtc_h264", | 165 "//third_party/webrtc/modules/video_coding:webrtc_h264", |
| 167 "//third_party/webrtc/system_wrappers", | 166 "//third_party/webrtc/system_wrappers", |
| 168 ] | 167 ] |
| 169 } else { | 168 } else { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 } | 238 } |
| 240 | 239 |
| 241 if (use_seccomp_bpf) { | 240 if (use_seccomp_bpf) { |
| 242 defines += [ "USE_SECCOMP_BPF" ] | 241 defines += [ "USE_SECCOMP_BPF" ] |
| 243 } | 242 } |
| 244 | 243 |
| 245 if (use_ozone) { | 244 if (use_ozone) { |
| 246 deps += [ "//ui/ozone" ] | 245 deps += [ "//ui/ozone" ] |
| 247 } | 246 } |
| 248 } | 247 } |
| OLD | NEW |