| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 | 10 |
| 11 rtc_static_library("call") { | 11 rtc_static_library("call") { |
| 12 sources = [ | 12 sources = [ |
| 13 "bitrate_allocator.cc", | 13 "bitrate_allocator.cc", |
| 14 "call.cc", | 14 "call.cc", |
| 15 "flexfec_receive_stream.cc", | 15 "flexfec_receive_stream.cc", |
| 16 "flexfec_receive_stream.h", | 16 "flexfec_receive_stream.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 if (!build_with_chromium && is_clang) { | 19 if (!build_with_chromium && is_clang) { |
| 20 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 20 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 21 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 21 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 22 } | 22 } |
| 23 | 23 |
| 24 public_deps = [ | 24 public_deps = [ |
| 25 "../api:call_api", | 25 "../api:call_api", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 deps = [ | 28 deps = [ |
| 29 "..:webrtc_common", | 29 "..:webrtc_common", |
| 30 "../api:transport_api", |
| 30 "../audio", | 31 "../audio", |
| 31 "../base:rtc_task_queue", | 32 "../base:rtc_task_queue", |
| 32 "../logging:rtc_event_log_impl", | 33 "../logging:rtc_event_log_impl", |
| 33 "../modules/congestion_controller", | 34 "../modules/congestion_controller", |
| 34 "../modules/rtp_rtcp", | 35 "../modules/rtp_rtcp", |
| 35 "../system_wrappers", | 36 "../system_wrappers", |
| 36 "../video", | 37 "../video", |
| 37 ] | 38 ] |
| 38 } | 39 } |
| 39 | 40 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 55 "../test:test_common", | 56 "../test:test_common", |
| 56 "//testing/gmock", | 57 "//testing/gmock", |
| 57 "//testing/gtest", | 58 "//testing/gtest", |
| 58 ] | 59 ] |
| 59 if (!build_with_chromium && is_clang) { | 60 if (!build_with_chromium && is_clang) { |
| 60 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 61 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 61 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 62 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 62 } | 63 } |
| 63 } | 64 } |
| 64 } | 65 } |
| OLD | NEW |