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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 libs = [ "Foundation.framework" ] | 224 libs = [ "Foundation.framework" ] |
225 } | 225 } |
226 | 226 |
227 rtc_source_set("video_stream_api") { | 227 rtc_source_set("video_stream_api") { |
228 sources = [ | 228 sources = [ |
229 "video_receive_stream.h", | 229 "video_receive_stream.h", |
230 "video_send_stream.h", | 230 "video_send_stream.h", |
231 ] | 231 ] |
232 } | 232 } |
233 | 233 |
| 234 # Contents of video_frame.h is moved from top-level down to common_video/. |
| 235 # Nothing in webrtc includes the backwards-compatibility header, so this target |
| 236 # is only for completeness. |
| 237 # TODO(nisse): Delete together with the header file once downstream applications |
| 238 # no longer use it. |
| 239 rtc_source_set("video_frame_deprecated") { |
| 240 sources = [ |
| 241 "video_frame.h", |
| 242 ] |
| 243 deps = [ |
| 244 "common_video", |
| 245 ] |
| 246 } |
| 247 |
234 if (!build_with_chromium) { | 248 if (!build_with_chromium) { |
235 # Target to build all the WebRTC production code. | 249 # Target to build all the WebRTC production code. |
236 rtc_static_library("webrtc") { | 250 rtc_static_library("webrtc") { |
237 # Only the root target should depend on this. | 251 # Only the root target should depend on this. |
238 visibility = [ "//:default" ] | 252 visibility = [ "//:default" ] |
239 | 253 |
240 sources = [ | 254 sources = [ |
241 # TODO(ossu): Keep this here until donwstream projects have updated. | 255 # TODO(ossu): Keep this here until donwstream projects have updated. |
242 # http://bugs.webrtc.org/6716 | 256 # http://bugs.webrtc.org/6716 |
243 "call.h", | 257 "call.h", |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 ] | 526 ] |
513 | 527 |
514 deps = [ | 528 deps = [ |
515 "//base:base_java_test_support", | 529 "//base:base_java_test_support", |
516 "//webrtc/examples:AppRTCMobile_javalib", | 530 "//webrtc/examples:AppRTCMobile_javalib", |
517 "//webrtc/sdk/android:libjingle_peerconnection_java", | 531 "//webrtc/sdk/android:libjingle_peerconnection_java", |
518 ] | 532 ] |
519 } | 533 } |
520 } | 534 } |
521 } | 535 } |
OLD | NEW |