| 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 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 | 29 |
| 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_coding:audio_encoder_factory_interface", |
| 39 "../modules/audio_coding:builtin_audio_encoder_factory", |
| 38 "../modules/audio_device", | 40 "../modules/audio_device", |
| 39 "../modules/audio_processing", | 41 "../modules/audio_processing", |
| 40 "../modules/bitrate_controller:bitrate_controller", | 42 "../modules/bitrate_controller:bitrate_controller", |
| 41 "../modules/congestion_controller:congestion_controller", | 43 "../modules/congestion_controller:congestion_controller", |
| 42 "../modules/pacing:pacing", | 44 "../modules/pacing:pacing", |
| 43 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", | 45 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
| 44 "../modules/rtp_rtcp:rtp_rtcp", | 46 "../modules/rtp_rtcp:rtp_rtcp", |
| 45 "../system_wrappers", | 47 "../system_wrappers", |
| 46 "../voice_engine", | 48 "../voice_engine", |
| 47 ] | 49 ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 73 "utility:utility_tests", | 75 "utility:utility_tests", |
| 74 "//testing/gmock", | 76 "//testing/gmock", |
| 75 "//testing/gtest", | 77 "//testing/gtest", |
| 76 ] | 78 ] |
| 77 if (!build_with_chromium && is_clang) { | 79 if (!build_with_chromium && is_clang) { |
| 78 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 80 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 79 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 81 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 80 } | 82 } |
| 81 } | 83 } |
| 82 } | 84 } |
| OLD | NEW |