| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 import("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 | 10 |
| 11 rtc_source_set("call_interfaces") { | 11 rtc_source_set("call_interfaces") { |
| 12 sources = [ | 12 sources = [ |
| 13 "audio_receive_stream.h", | 13 "audio_receive_stream.h", |
| 14 "audio_send_stream.cc", | 14 "audio_send_stream.cc", |
| 15 "audio_send_stream.h", | 15 "audio_send_stream.h", |
| 16 "audio_state.h", | 16 "audio_state.h", |
| 17 "call.h", | 17 "call.h", |
| 18 "callfactoryinterface.h", |
| 18 "flexfec_receive_stream.h", | 19 "flexfec_receive_stream.h", |
| 19 "syncable.cc", | 20 "syncable.cc", |
| 20 "syncable.h", | 21 "syncable.h", |
| 21 ] | 22 ] |
| 22 deps = [ | 23 deps = [ |
| 23 ":rtp_interfaces", | 24 ":rtp_interfaces", |
| 24 "..:video_stream_api", | 25 "..:video_stream_api", |
| 25 "..:webrtc_common", | 26 "..:webrtc_common", |
| 26 "../api:audio_mixer_api", | 27 "../api:audio_mixer_api", |
| 27 "../api:libjingle_peerconnection_api", | 28 "../api:libjingle_peerconnection_api", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 ":rtp_interfaces", | 65 ":rtp_interfaces", |
| 65 "../base:rtc_base_approved", | 66 "../base:rtc_base_approved", |
| 66 "../modules/congestion_controller", | 67 "../modules/congestion_controller", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| 69 | 70 |
| 70 rtc_static_library("call") { | 71 rtc_static_library("call") { |
| 71 sources = [ | 72 sources = [ |
| 72 "bitrate_allocator.cc", | 73 "bitrate_allocator.cc", |
| 73 "call.cc", | 74 "call.cc", |
| 75 "callfactory.cc", |
| 76 "callfactory.h", |
| 74 "flexfec_receive_stream_impl.cc", | 77 "flexfec_receive_stream_impl.cc", |
| 75 "flexfec_receive_stream_impl.h", | 78 "flexfec_receive_stream_impl.h", |
| 76 ] | 79 ] |
| 77 | 80 |
| 78 if (!build_with_chromium && is_clang) { | 81 if (!build_with_chromium && is_clang) { |
| 79 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 82 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 80 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 83 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 81 } | 84 } |
| 82 | 85 |
| 83 public_deps = [ | 86 public_deps = [ |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 "//testing/gtest", | 191 "//testing/gtest", |
| 189 "//webrtc/test:field_trial", | 192 "//webrtc/test:field_trial", |
| 190 "//webrtc/test:test_common", | 193 "//webrtc/test:test_common", |
| 191 ] | 194 ] |
| 192 if (!build_with_chromium && is_clang) { | 195 if (!build_with_chromium && is_clang) { |
| 193 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 196 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 194 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 197 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 195 } | 198 } |
| 196 } | 199 } |
| 197 } | 200 } |
| OLD | NEW |