| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 if (use_libfuzzer || use_drfuzz || use_afl) { | 217 if (use_libfuzzer || use_drfuzz || use_afl) { |
| 218 # Used in Chromium's overrides to disable logging | 218 # Used in Chromium's overrides to disable logging |
| 219 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ] | 219 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ] |
| 220 } | 220 } |
| 221 } | 221 } |
| 222 | 222 |
| 223 config("common_objc") { | 223 config("common_objc") { |
| 224 libs = [ "Foundation.framework" ] | 224 libs = [ "Foundation.framework" ] |
| 225 } | 225 } |
| 226 | 226 |
| 227 rtc_source_set("video_stream_api") { |
| 228 sources = [ |
| 229 "video_receive_stream.h", |
| 230 "video_send_stream.h", |
| 231 ] |
| 232 } |
| 233 |
| 227 if (!build_with_chromium) { | 234 if (!build_with_chromium) { |
| 228 # Target to build all the WebRTC production code. | 235 # Target to build all the WebRTC production code. |
| 229 rtc_static_library("webrtc") { | 236 rtc_static_library("webrtc") { |
| 230 # Only the root target should depend on this. | 237 # Only the root target should depend on this. |
| 231 visibility = [ "//:default" ] | 238 visibility = [ "//:default" ] |
| 232 | 239 |
| 233 sources = [ | 240 sources = [ |
| 234 # TODO(ossu): Keep this here until donwstream projects have updated. | 241 # TODO(ossu): Keep this here until donwstream projects have updated. |
| 235 # http://bugs.webrtc.org/6716 | 242 # http://bugs.webrtc.org/6716 |
| 236 "call.h", | 243 "call.h", |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 ] | 513 ] |
| 507 | 514 |
| 508 deps = [ | 515 deps = [ |
| 509 "//base:base_java_test_support", | 516 "//base:base_java_test_support", |
| 510 "//webrtc/examples:AppRTCMobile_javalib", | 517 "//webrtc/examples:AppRTCMobile_javalib", |
| 511 "//webrtc/sdk/android:libjingle_peerconnection_java", | 518 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 512 ] | 519 ] |
| 513 } | 520 } |
| 514 } | 521 } |
| 515 } | 522 } |
| OLD | NEW |