| 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 | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
| 22   ] | 22   ] | 
| 23   deps = [ | 23   deps = [ | 
| 24     "..:video_stream_api", | 24     "..:video_stream_api", | 
| 25     "..:webrtc_common", | 25     "..:webrtc_common", | 
| 26     "../api:audio_mixer_api", | 26     "../api:audio_mixer_api", | 
| 27     "../api:libjingle_peerconnection_api", | 27     "../api:libjingle_peerconnection_api", | 
| 28     "../api:transport_api", | 28     "../api:transport_api", | 
| 29     "../api/audio_codecs:audio_codecs_api", | 29     "../api/audio_codecs:audio_codecs_api", | 
| 30     "../base:rtc_base", | 30     "../base:rtc_base", | 
| 31     "../base:rtc_base_approved", | 31     "../base:rtc_base_approved", | 
| 32     "../modules/audio_coding:audio_encoder_factory_interface", |  | 
| 33     "../modules/audio_coding:audio_encoder_interface", |  | 
| 34   ] | 32   ] | 
| 35 } | 33 } | 
| 36 | 34 | 
| 37 rtc_static_library("call") { | 35 rtc_static_library("call") { | 
| 38   sources = [ | 36   sources = [ | 
| 39     "bitrate_allocator.cc", | 37     "bitrate_allocator.cc", | 
| 40     "call.cc", | 38     "call.cc", | 
| 41     "flexfec_receive_stream_impl.cc", | 39     "flexfec_receive_stream_impl.cc", | 
| 42     "flexfec_receive_stream_impl.h", | 40     "flexfec_receive_stream_impl.h", | 
| 43     "rtp_transport_controller_send.cc", | 41     "rtp_transport_controller_send.cc", | 
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 122       visibility = [ "//webrtc:webrtc_perf_tests" ] | 120       visibility = [ "//webrtc:webrtc_perf_tests" ] | 
| 123     } | 121     } | 
| 124     sources = [ | 122     sources = [ | 
| 125       "call_perf_tests.cc", | 123       "call_perf_tests.cc", | 
| 126       "rampup_tests.cc", | 124       "rampup_tests.cc", | 
| 127       "rampup_tests.h", | 125       "rampup_tests.h", | 
| 128     ] | 126     ] | 
| 129     deps = [ | 127     deps = [ | 
| 130       ":call_interfaces", | 128       ":call_interfaces", | 
| 131       "..:webrtc_common", | 129       "..:webrtc_common", | 
|  | 130       "../api/audio_codecs:builtin_audio_encoder_factory", | 
| 132       "../base:rtc_base_approved", | 131       "../base:rtc_base_approved", | 
| 133       "../logging:rtc_event_log_api", | 132       "../logging:rtc_event_log_api", | 
| 134       "../modules/audio_coding", | 133       "../modules/audio_coding", | 
| 135       "../modules/audio_coding:builtin_audio_encoder_factory", |  | 
| 136       "../modules/audio_mixer:audio_mixer_impl", | 134       "../modules/audio_mixer:audio_mixer_impl", | 
| 137       "../modules/rtp_rtcp", | 135       "../modules/rtp_rtcp", | 
| 138       "../system_wrappers", | 136       "../system_wrappers", | 
| 139       "../system_wrappers:metrics_default", | 137       "../system_wrappers:metrics_default", | 
| 140       "../test:direct_transport", | 138       "../test:direct_transport", | 
| 141       "../test:fake_audio_device", | 139       "../test:fake_audio_device", | 
| 142       "../test:test_support", | 140       "../test:test_support", | 
| 143       "../test:video_test_common", | 141       "../test:video_test_common", | 
| 144       "../video", | 142       "../video", | 
| 145       "../voice_engine", | 143       "../voice_engine", | 
| 146       "//testing/gtest", | 144       "//testing/gtest", | 
| 147       "//webrtc/test:field_trial", | 145       "//webrtc/test:field_trial", | 
| 148       "//webrtc/test:test_common", | 146       "//webrtc/test:test_common", | 
| 149     ] | 147     ] | 
| 150     if (!build_with_chromium && is_clang) { | 148     if (!build_with_chromium && is_clang) { | 
| 151       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 149       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
| 152       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 150       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
| 153     } | 151     } | 
| 154   } | 152   } | 
| 155 } | 153 } | 
| OLD | NEW | 
|---|