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

Side by Side Diff: webrtc/BUILD.gn

Issue 2426563003: Moved transport.h from webrtc/ to webrtc/api, created build target and updated dependencies. (Closed)
Patch Set: Created 4 years, 2 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 | « .gn ('k') | webrtc/api/BUILD.gn » ('j') | webrtc/api/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330.
10 10
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 } 245 }
246 246
247 if (!is_ios || !build_with_chromium) { 247 if (!is_ios || !build_with_chromium) {
248 rtc_static_library("webrtc") { 248 rtc_static_library("webrtc") {
249 sources = [ 249 sources = [
250 # TODO(kjellander): Remove this whenever possible. GN's static_library 250 # TODO(kjellander): Remove this whenever possible. GN's static_library
251 # target type requires at least one object to avoid errors linking. 251 # target type requires at least one object to avoid errors linking.
252 "build/no_op_function.cc", 252 "build/no_op_function.cc",
253 "call.h", 253 "call.h",
254 "config.h", 254 "config.h",
255 "transport.h",
256 ] 255 ]
257 256
258 defines = [] 257 defines = []
259 258
260 deps = [ 259 deps = [
261 ":webrtc_common", 260 ":webrtc_common",
262 "audio", 261 "audio",
263 "base:rtc_base", 262 "base:rtc_base",
264 "call", 263 "call",
265 "common_audio", 264 "common_audio",
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 782
784 deps = [ 783 deps = [
785 "//base:base_java_test_support", 784 "//base:base_java_test_support",
786 "//webrtc/api:libjingle_peerconnection_java", 785 "//webrtc/api:libjingle_peerconnection_java",
787 "//webrtc/api:libjingle_peerconnection_jni", 786 "//webrtc/api:libjingle_peerconnection_jni",
788 "//webrtc/examples:AppRTCMobile_javalib", 787 "//webrtc/examples:AppRTCMobile_javalib",
789 ] 788 ]
790 } 789 }
791 } 790 }
792 } 791 }
OLDNEW
« no previous file with comments | « .gn ('k') | webrtc/api/BUILD.gn » ('j') | webrtc/api/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698