| 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 import("//third_party/webrtc/build/webrtc.gni") | 9 import("//third_party/webrtc/build/webrtc.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 159 |
| 160 if (enable_webrtc) { | 160 if (enable_webrtc) { |
| 161 sources += rebase_path( | 161 sources += rebase_path( |
| 162 content_renderer_gypi_values.private_renderer_webrtc_sources, | 162 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 163 ".", | 163 ".", |
| 164 "//content") | 164 "//content") |
| 165 | 165 |
| 166 deps += [ | 166 deps += [ |
| 167 "//crypto", | 167 "//crypto", |
| 168 "//third_party/libjingle:libjingle_webrtc", | 168 "//third_party/libjingle:libjingle_webrtc", |
| 169 "//third_party/libjingle:libstunprober", | |
| 170 "//third_party/libvpx", | 169 "//third_party/libvpx", |
| 170 "//third_party/webrtc/api:libjingle_peerconnection", |
| 171 "//third_party/webrtc/base:rtc_base", | 171 "//third_party/webrtc/base:rtc_base", |
| 172 "//third_party/webrtc/common_video", | 172 "//third_party/webrtc/common_video", |
| 173 "//third_party/webrtc/media:rtc_media", |
| 173 "//third_party/webrtc/modules/audio_device", | 174 "//third_party/webrtc/modules/audio_device", |
| 174 "//third_party/webrtc/modules/audio_processing", | 175 "//third_party/webrtc/modules/audio_processing", |
| 175 "//third_party/webrtc/modules/video_coding:webrtc_h264", | 176 "//third_party/webrtc/modules/video_coding:webrtc_h264", |
| 177 "//third_party/webrtc/p2p:libstunprober", |
| 178 "//third_party/webrtc/p2p:rtc_p2p", |
| 179 "//third_party/webrtc/pc:rtc_pc", |
| 176 "//third_party/webrtc/system_wrappers", | 180 "//third_party/webrtc/system_wrappers", |
| 177 ] | 181 ] |
| 178 if (rtc_use_h264) { | 182 if (rtc_use_h264) { |
| 179 deps += [ "//third_party/openh264:encoder" ] | 183 deps += [ "//third_party/openh264:encoder" ] |
| 180 } | 184 } |
| 181 } else { | 185 } else { |
| 182 sources += [ | 186 sources += [ |
| 183 "media/webrtc_logging.h", | 187 "media/webrtc_logging.h", |
| 184 "media/webrtc_logging_noop.cc", | 188 "media/webrtc_logging_noop.cc", |
| 185 ] | 189 ] |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 # For the defines in mojo_media_config. | 268 # For the defines in mojo_media_config. |
| 265 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 269 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 266 } | 270 } |
| 267 | 271 |
| 268 if (!is_component_build) { | 272 if (!is_component_build) { |
| 269 public_deps = [ | 273 public_deps = [ |
| 270 ":renderer", | 274 ":renderer", |
| 271 ] | 275 ] |
| 272 } | 276 } |
| 273 } | 277 } |
| OLD | NEW |