| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "/wd4373", # Virtual function override. | 77 "/wd4373", # Virtual function override. |
| 78 ] | 78 ] |
| 79 } | 79 } |
| 80 | 80 |
| 81 if (is_clang) { | 81 if (is_clang) { |
| 82 # Suppress warnings from Chrome's Clang plugins. | 82 # Suppress warnings from Chrome's Clang plugins. |
| 83 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 83 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 84 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 84 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 85 } | 85 } |
| 86 | 86 |
| 87 public_deps = [ |
| 88 "../modules/audio_coding", |
| 89 ] |
| 87 deps = [ | 90 deps = [ |
| 88 ":level_indicator", | 91 ":level_indicator", |
| 89 "..:rtc_event_log", | 92 "..:rtc_event_log", |
| 90 "..:webrtc_common", | 93 "..:webrtc_common", |
| 91 "../api:call_api", | 94 "../api:call_api", |
| 92 "../base:rtc_base_approved", | 95 "../base:rtc_base_approved", |
| 93 "../common_audio", | 96 "../common_audio", |
| 94 "../modules/audio_coding", | |
| 95 "../modules/audio_conference_mixer", | 97 "../modules/audio_conference_mixer", |
| 96 "../modules/audio_device", | 98 "../modules/audio_device", |
| 97 "../modules/audio_processing", | 99 "../modules/audio_processing", |
| 98 "../modules/bitrate_controller", | 100 "../modules/bitrate_controller", |
| 99 "../modules/media_file", | 101 "../modules/media_file", |
| 100 "../modules/pacing", | 102 "../modules/pacing", |
| 101 "../modules/rtp_rtcp", | 103 "../modules/rtp_rtcp", |
| 102 "../modules/utility", | 104 "../modules/utility", |
| 103 "../system_wrappers", | 105 "../system_wrappers", |
| 104 ] | 106 ] |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 } | 258 } |
| 257 | 259 |
| 258 if (is_clang) { | 260 if (is_clang) { |
| 259 # Suppress warnings from Chrome's Clang plugins. | 261 # Suppress warnings from Chrome's Clang plugins. |
| 260 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 262 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 261 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 262 } | 264 } |
| 263 } | 265 } |
| 264 } | 266 } |
| 265 } | 267 } |
| OLD | NEW |