| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 if (!build_with_chromium) { | 234 if (!build_with_chromium) { |
| 235 # Target to build all the WebRTC production code. | 235 # Target to build all the WebRTC production code. |
| 236 rtc_static_library("webrtc") { | 236 rtc_static_library("webrtc") { |
| 237 # Only the root target should depend on this. | 237 # Only the root target should depend on this. |
| 238 visibility = [ "//:default" ] | 238 visibility = [ "//:default" ] |
| 239 | 239 |
| 240 sources = [ | 240 sources = [ |
| 241 # TODO(ossu): Keep this here until donwstream projects have updated. | 241 # TODO(ossu): Keep this here until donwstream projects have updated. |
| 242 # http://bugs.webrtc.org/6716 | 242 # http://bugs.webrtc.org/6716 |
| 243 "call.h", | 243 "call.h", |
| 244 "config.h", | |
| 245 ] | 244 ] |
| 246 complete_static_lib = true | 245 complete_static_lib = true |
| 247 defines = [] | 246 defines = [] |
| 248 | 247 |
| 249 deps = [ | 248 deps = [ |
| 250 ":webrtc_common", | 249 ":webrtc_common", |
| 251 "api", | 250 "api", |
| 252 "api:transport_api", | 251 "api:transport_api", |
| 253 "audio", | 252 "audio", |
| 254 "base", | 253 "base", |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 ] | 512 ] |
| 514 | 513 |
| 515 deps = [ | 514 deps = [ |
| 516 "//base:base_java_test_support", | 515 "//base:base_java_test_support", |
| 517 "//webrtc/examples:AppRTCMobile_javalib", | 516 "//webrtc/examples:AppRTCMobile_javalib", |
| 518 "//webrtc/sdk/android:libjingle_peerconnection_java", | 517 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 519 ] | 518 ] |
| 520 } | 519 } |
| 521 } | 520 } |
| 522 } | 521 } |
| OLD | NEW |