Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(727)

Side by Side Diff: content/renderer/BUILD.gn

Issue 2022833002: Migrate libjingle to WebRTC build targets. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 165
166 if (enable_webrtc) { 166 if (enable_webrtc) {
167 sources += rebase_path( 167 sources += rebase_path(
168 content_renderer_gypi_values.private_renderer_webrtc_sources, 168 content_renderer_gypi_values.private_renderer_webrtc_sources,
169 ".", 169 ".",
170 "//content") 170 "//content")
171 171
172 deps += [ 172 deps += [
173 "//crypto", 173 "//crypto",
174 "//third_party/libjingle:libjingle_webrtc", 174 "//third_party/libjingle:libjingle_webrtc",
175 "//third_party/libjingle:libstunprober",
176 "//third_party/libvpx", 175 "//third_party/libvpx",
176 "//third_party/webrtc/api:libjingle_peerconnection",
177 "//third_party/webrtc/base:rtc_base", 177 "//third_party/webrtc/base:rtc_base",
178 "//third_party/webrtc/common_video", 178 "//third_party/webrtc/common_video",
179 "//third_party/webrtc/media:rtc_media",
179 "//third_party/webrtc/modules/audio_device", 180 "//third_party/webrtc/modules/audio_device",
180 "//third_party/webrtc/modules/audio_processing", 181 "//third_party/webrtc/modules/audio_processing",
181 "//third_party/webrtc/modules/video_coding:webrtc_h264", 182 "//third_party/webrtc/modules/video_coding:webrtc_h264",
183 "//third_party/webrtc/p2p:libstunprober",
184 "//third_party/webrtc/p2p:rtc_p2p",
185 "//third_party/webrtc/pc:rtc_pc",
182 "//third_party/webrtc/system_wrappers", 186 "//third_party/webrtc/system_wrappers",
183 ] 187 ]
184 if (rtc_use_h264) { 188 if (rtc_use_h264) {
185 deps += [ "//third_party/openh264:encoder" ] 189 deps += [ "//third_party/openh264:encoder" ]
186 } 190 }
187 } else { 191 } else {
188 sources += [ 192 sources += [
189 "media/webrtc_logging.h", 193 "media/webrtc_logging.h",
190 "media/webrtc_logging_noop.cc", 194 "media/webrtc_logging_noop.cc",
191 ] 195 ]
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 # For the defines in mojo_media_config. 274 # For the defines in mojo_media_config.
271 public_configs = [ "//media/mojo/services:mojo_media_config" ] 275 public_configs = [ "//media/mojo/services:mojo_media_config" ]
272 } 276 }
273 277
274 if (!is_component_build) { 278 if (!is_component_build) {
275 public_deps = [ 279 public_deps = [
276 ":renderer", 280 ":renderer",
277 ] 281 ]
278 } 282 }
279 } 283 }
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698