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

Side by Side Diff: remoting/BUILD.gn

Issue 2413103004: Remove third_party/libjingle and update GN targets. (Closed)
Patch Set: Fix rebase mistake Created 3 years, 9 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 | « jingle/DEPS ('k') | remoting/DEPS » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//media/media_options.gni") 5 import("//media/media_options.gni")
6 import("//remoting/build/config/remoting_build.gni") 6 import("//remoting/build/config/remoting_build.gni")
7 7
8 group("remoting_all") { 8 group("remoting_all") {
9 testonly = true 9 testonly = true
10 10
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 156
157 if (enable_remoting_host) { 157 if (enable_remoting_host) {
158 deps += [ 158 deps += [
159 "//remoting/codec:unit_tests", 159 "//remoting/codec:unit_tests",
160 "//remoting/host:unit_tests", 160 "//remoting/host:unit_tests",
161 "//ui/gfx", 161 "//ui/gfx",
162 ] 162 ]
163 } 163 }
164 164
165 if (enable_webrtc) { 165 if (enable_webrtc) {
166 deps += [ "//third_party/libjingle/webrtc:libjingle_webrtc" ] 166 deps += [ "//third_party/webrtc_overrides:init_webrtc" ]
167 } 167 }
168 168
169 if (is_android) { 169 if (is_android) {
170 deps += [ "//net/android:net_java" ] 170 deps += [ "//net/android:net_java" ]
171 } 171 }
172 172
173 if (is_win) { 173 if (is_win) {
174 defines += [ "_ALT_NO_EXCEPTIONS" ] 174 defines += [ "_ALT_NO_EXCEPTIONS" ]
175 175
176 libs += [ 176 libs += [
(...skipping 17 matching lines...) Expand all
194 configs += [ "//remoting/build/config:version" ] 194 configs += [ "//remoting/build/config:version" ]
195 195
196 deps = [ 196 deps = [
197 ":test_support", 197 ":test_support",
198 "//base", 198 "//base",
199 "//base/test:run_all_unittests", 199 "//base/test:run_all_unittests",
200 "//base/test:test_support", 200 "//base/test:test_support",
201 "//net:test_support", 201 "//net:test_support",
202 "//remoting/base", 202 "//remoting/base",
203 "//testing/gtest", 203 "//testing/gtest",
204 "//third_party/libjingle",
205 "//third_party/webrtc/modules/desktop_capture", 204 "//third_party/webrtc/modules/desktop_capture",
205 "//third_party/webrtc_overrides",
206 ] 206 ]
207 207
208 if (enable_webrtc) { 208 if (enable_webrtc) {
209 deps += [ "//third_party/libjingle/webrtc:libjingle_webrtc" ] 209 deps += [ "//third_party/webrtc_overrides:init_webrtc" ]
210 } 210 }
211 211
212 if (is_win) { 212 if (is_win) {
213 defines += [ "_ALT_NO_EXCEPTIONS" ] 213 defines += [ "_ALT_NO_EXCEPTIONS" ]
214 214
215 libs += [ 215 libs += [
216 "rpcrt4.lib", 216 "rpcrt4.lib",
217 "wtsapi32.lib", 217 "wtsapi32.lib",
218 ] 218 ]
219 } 219 }
220 } 220 }
221 } 221 }
OLDNEW
« no previous file with comments | « jingle/DEPS ('k') | remoting/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698