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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 deps = [ | 260 deps = [ |
261 ":webrtc_common", | 261 ":webrtc_common", |
262 "audio", | 262 "audio", |
263 "base:rtc_base", | 263 "base:rtc_base", |
264 "call", | 264 "call", |
265 "common_audio", | 265 "common_audio", |
266 "common_video", | 266 "common_video", |
267 "modules", | 267 "modules", |
268 "stats", | 268 "stats", |
269 "system_wrappers", | 269 "system_wrappers", |
| 270 "tools", |
270 "video", | 271 "video", |
271 "voice_engine", | 272 "voice_engine", |
272 ] | 273 ] |
273 | 274 |
274 if (build_with_chromium) { | 275 if (build_with_chromium) { |
275 deps += [ "modules/video_capture" ] | 276 deps += [ "modules/video_capture" ] |
276 } else { | 277 } else { |
277 # TODO(kjellander): Enable for Chromium as well when bugs.webrtc.org/4256 | 278 # TODO(kjellander): Enable for Chromium as well when bugs.webrtc.org/4256 |
278 # is fixed. Right now it's not possible due to circular dependencies. | 279 # is fixed. Right now it's not possible due to circular dependencies. |
279 deps += [ | 280 deps += [ |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 | 790 |
790 deps = [ | 791 deps = [ |
791 "//base:base_java_test_support", | 792 "//base:base_java_test_support", |
792 "//webrtc/api:libjingle_peerconnection_java", | 793 "//webrtc/api:libjingle_peerconnection_java", |
793 "//webrtc/api:libjingle_peerconnection_jni", | 794 "//webrtc/api:libjingle_peerconnection_jni", |
794 "//webrtc/examples:AppRTCMobile_javalib", | 795 "//webrtc/examples:AppRTCMobile_javalib", |
795 ] | 796 ] |
796 } | 797 } |
797 } | 798 } |
798 } | 799 } |
OLD | NEW |