| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 | 10 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 if (!build_with_chromium && is_clang) { | 132 if (!build_with_chromium && is_clang) { |
| 133 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 133 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 134 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 134 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 135 } | 135 } |
| 136 | 136 |
| 137 public_deps = [ | 137 public_deps = [ |
| 138 "../modules/audio_coding", | 138 "../modules/audio_coding", |
| 139 ] | 139 ] |
| 140 deps = [ | 140 deps = [ |
| 141 ":audio_level", |
| 141 ":file_player", | 142 ":file_player", |
| 142 ":file_recorder", | 143 ":file_recorder", |
| 143 ":level_indicator", | |
| 144 "..:webrtc_common", | 144 "..:webrtc_common", |
| 145 "../api:audio_mixer_api", | 145 "../api:audio_mixer_api", |
| 146 "../api:call_api", | 146 "../api:call_api", |
| 147 "../api:transport_api", | 147 "../api:transport_api", |
| 148 "../api/audio_codecs:audio_codecs_api", | 148 "../api/audio_codecs:audio_codecs_api", |
| 149 "../api/audio_codecs:builtin_audio_decoder_factory", | 149 "../api/audio_codecs:builtin_audio_decoder_factory", |
| 150 "../audio/utility:audio_frame_operations", | 150 "../audio/utility:audio_frame_operations", |
| 151 "../base:rtc_base_approved", | 151 "../base:rtc_base_approved", |
| 152 "../common_audio", | 152 "../common_audio", |
| 153 "../logging:rtc_event_log_api", | 153 "../logging:rtc_event_log_api", |
| 154 "../modules/audio_coding:audio_format_conversion", | 154 "../modules/audio_coding:audio_format_conversion", |
| 155 "../modules/audio_coding:rent_a_codec", | 155 "../modules/audio_coding:rent_a_codec", |
| 156 "../modules/audio_conference_mixer", | 156 "../modules/audio_conference_mixer", |
| 157 "../modules/audio_device", | 157 "../modules/audio_device", |
| 158 "../modules/audio_processing", | 158 "../modules/audio_processing", |
| 159 "../modules/bitrate_controller", | 159 "../modules/bitrate_controller", |
| 160 "../modules/media_file", | 160 "../modules/media_file", |
| 161 "../modules/pacing", | 161 "../modules/pacing", |
| 162 "../modules/rtp_rtcp", | 162 "../modules/rtp_rtcp", |
| 163 "../modules/utility", | 163 "../modules/utility", |
| 164 "../system_wrappers", | 164 "../system_wrappers", |
| 165 ] | 165 ] |
| 166 } | 166 } |
| 167 | 167 |
| 168 rtc_static_library("level_indicator") { | 168 rtc_static_library("audio_level") { |
| 169 sources = [ | 169 sources = [ |
| 170 "level_indicator.cc", | 170 "audio_level.cc", |
| 171 "level_indicator.h", | 171 "audio_level.h", |
| 172 ] | 172 ] |
| 173 | 173 |
| 174 deps = [ | 174 deps = [ |
| 175 "..:webrtc_common", | 175 "..:webrtc_common", |
| 176 "../base:rtc_base_approved", | 176 "../base:rtc_base_approved", |
| 177 "../common_audio", | 177 "../common_audio", |
| 178 ] | 178 ] |
| 179 } | 179 } |
| 180 | 180 |
| 181 if (rtc_include_tests) { | 181 if (rtc_include_tests) { |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 ] | 418 ] |
| 419 } | 419 } |
| 420 | 420 |
| 421 if (!build_with_chromium && is_clang) { | 421 if (!build_with_chromium && is_clang) { |
| 422 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 422 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 423 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 423 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 424 } | 424 } |
| 425 } | 425 } |
| 426 } | 426 } |
| 427 } | 427 } |
| OLD | NEW |