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

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

Issue 534713003: Add some more libjingle targets to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl try Created 6 years, 3 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 | « build/secondary/third_party/libsrtp/BUILD.gn ('k') | third_party/libjingle/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 8
9 source_set("renderer") { 9 source_set("renderer") {
10 # Only targets in the content tree can depend directly on this target. 10 # Only targets in the content tree can depend directly on this target.
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 if (enable_webrtc) { 124 if (enable_webrtc) {
125 sources += rebase_path( 125 sources += rebase_path(
126 content_renderer_gypi_values.private_renderer_webrtc_sources, 126 content_renderer_gypi_values.private_renderer_webrtc_sources,
127 ".", "//content") 127 ".", "//content")
128 deps += [ 128 deps += [
129 "//crypto", 129 "//crypto",
130 "//third_party/libyuv", 130 "//third_party/libyuv",
131 "//third_party/webrtc/modules/audio_device", 131 "//third_party/webrtc/modules/audio_device",
132 "//third_party/webrtc/modules/audio_processing", 132 "//third_party/webrtc/modules/audio_processing",
133 #"../third_party/libjingle/libjingle.gyp:libjingle_webrtc", TODO(GYP) 133 "//third_party/libjingle:libjingle_webrtc",
134 #"../third_party/libjingle/libjingle.gyp:libpeerconnection", TODO(GYP) 134 "//third_party/libjingle:libpeerconnection",
135 ] 135 ]
136 } else { 136 } else {
137 sources += [ 137 sources += [
138 "media/webrtc_logging_noop.cc", 138 "media/webrtc_logging_noop.cc",
139 "media/webrtc_logging.h", 139 "media/webrtc_logging.h",
140 ] 140 ]
141 } 141 }
142 142
143 if (enable_plugins) { 143 if (enable_plugins) {
144 sources += rebase_path( 144 sources += rebase_path(
(...skipping 18 matching lines...) Expand all
163 if (enable_plugins && enable_webrtc) { 163 if (enable_plugins && enable_webrtc) {
164 sources += rebase_path( 164 sources += rebase_path(
165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, 165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources,
166 ".", "//content") 166 ".", "//content")
167 } 167 }
168 168
169 if (printing_mode == 1) { 169 if (printing_mode == 1) {
170 deps += [ "//printing" ] 170 deps += [ "//printing" ]
171 } 171 }
172 } 172 }
OLDNEW
« no previous file with comments | « build/secondary/third_party/libsrtp/BUILD.gn ('k') | third_party/libjingle/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698