Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2731993002: Update formatting of AudioLevel class (Closed)
Patch Set: Review comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/voice_engine/audio_level.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/voice_engine/audio_level.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698