| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 154 |
| 155 if (enable_webrtc) { | 155 if (enable_webrtc) { |
| 156 sources += rebase_path( | 156 sources += rebase_path( |
| 157 content_renderer_gypi_values.private_renderer_webrtc_sources, | 157 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 158 ".", | 158 ".", |
| 159 "//content") | 159 "//content") |
| 160 | 160 |
| 161 deps += [ | 161 deps += [ |
| 162 "//crypto", | 162 "//crypto", |
| 163 "//third_party/libjingle:libjingle_webrtc", | 163 "//third_party/libjingle:libjingle_webrtc", |
| 164 "//third_party/libjingle:libpeerconnection", | |
| 165 "//third_party/libjingle:libstunprober", | 164 "//third_party/libjingle:libstunprober", |
| 166 "//third_party/libvpx", | 165 "//third_party/libvpx", |
| 167 "//third_party/webrtc/base:rtc_base", | 166 "//third_party/webrtc/base:rtc_base", |
| 168 "//third_party/webrtc/common_video", | 167 "//third_party/webrtc/common_video", |
| 169 "//third_party/webrtc/modules/audio_device", | 168 "//third_party/webrtc/modules/audio_device", |
| 170 "//third_party/webrtc/modules/audio_processing", | 169 "//third_party/webrtc/modules/audio_processing", |
| 171 "//third_party/webrtc/modules/video_coding:webrtc_h264", | 170 "//third_party/webrtc/modules/video_coding:webrtc_h264", |
| 172 "//third_party/webrtc/system_wrappers", | 171 "//third_party/webrtc/system_wrappers", |
| 173 ] | 172 ] |
| 174 } else { | 173 } else { |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 | 253 |
| 255 # See comment at the top of //content/BUILD.gn for how this works. | 254 # See comment at the top of //content/BUILD.gn for how this works. |
| 256 group("for_content_tests") { | 255 group("for_content_tests") { |
| 257 visibility = [ "//content/test/*" ] | 256 visibility = [ "//content/test/*" ] |
| 258 if (!is_component_build) { | 257 if (!is_component_build) { |
| 259 public_deps = [ | 258 public_deps = [ |
| 260 ":renderer", | 259 ":renderer", |
| 261 ] | 260 ] |
| 262 } | 261 } |
| 263 } | 262 } |
| OLD | NEW |