OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |