| 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 19 matching lines...) Expand all Loading... |
| 30 deps = [ | 30 deps = [ |
| 31 "..:webrtc_common", | 31 "..:webrtc_common", |
| 32 "../api:audio_mixer_api", | 32 "../api:audio_mixer_api", |
| 33 "../api:call_api", | 33 "../api:call_api", |
| 34 "../base:rtc_base_approved", | 34 "../base:rtc_base_approved", |
| 35 "../base:rtc_task_queue", | 35 "../base:rtc_task_queue", |
| 36 "../call:call_interfaces", | 36 "../call:call_interfaces", |
| 37 "../common_audio", | 37 "../common_audio", |
| 38 "../modules/audio_device", | 38 "../modules/audio_device", |
| 39 "../modules/audio_processing", | 39 "../modules/audio_processing", |
| 40 "../modules/bitrate_controller:bitrate_controller", |
| 40 "../modules/congestion_controller:congestion_controller", | 41 "../modules/congestion_controller:congestion_controller", |
| 41 "../modules/pacing:pacing", | 42 "../modules/pacing:pacing", |
| 42 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", | 43 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
| 43 "../modules/rtp_rtcp:rtp_rtcp", | 44 "../modules/rtp_rtcp:rtp_rtcp", |
| 44 "../system_wrappers", | 45 "../system_wrappers", |
| 45 "../voice_engine", | 46 "../voice_engine", |
| 46 ] | 47 ] |
| 47 } | 48 } |
| 48 if (rtc_include_tests) { | 49 if (rtc_include_tests) { |
| 49 rtc_source_set("audio_tests") { | 50 rtc_source_set("audio_tests") { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 72 "utility:utility_tests", | 73 "utility:utility_tests", |
| 73 "//testing/gmock", | 74 "//testing/gmock", |
| 74 "//testing/gtest", | 75 "//testing/gtest", |
| 75 ] | 76 ] |
| 76 if (!build_with_chromium && is_clang) { | 77 if (!build_with_chromium && is_clang) { |
| 77 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 78 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 78 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 79 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 79 } | 80 } |
| 80 } | 81 } |
| 81 } | 82 } |
| OLD | NEW |