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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 "../modules/audio_coding:builtin_audio_decoder_factory", | 95 "../modules/audio_coding:builtin_audio_decoder_factory", |
96 "../modules/audio_coding:rent_a_codec", | 96 "../modules/audio_coding:rent_a_codec", |
97 "../modules/audio_conference_mixer", | 97 "../modules/audio_conference_mixer", |
98 "../modules/audio_device", | 98 "../modules/audio_device", |
99 "../modules/audio_processing", | 99 "../modules/audio_processing", |
100 "../modules/bitrate_controller", | 100 "../modules/bitrate_controller", |
101 "../modules/media_file", | 101 "../modules/media_file", |
102 "../modules/pacing", | 102 "../modules/pacing", |
103 "../modules/rtp_rtcp", | 103 "../modules/rtp_rtcp", |
104 "../modules/utility", | 104 "../modules/utility", |
| 105 "../modules/utility:audio_frame_operations", |
105 "../system_wrappers", | 106 "../system_wrappers", |
106 ] | 107 ] |
107 } | 108 } |
108 | 109 |
109 rtc_static_library("level_indicator") { | 110 rtc_static_library("level_indicator") { |
110 sources = [ | 111 sources = [ |
111 "level_indicator.cc", | 112 "level_indicator.cc", |
112 "level_indicator.h", | 113 "level_indicator.h", |
113 ] | 114 ] |
114 | 115 |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 ] | 344 ] |
344 } | 345 } |
345 | 346 |
346 if (!build_with_chromium && is_clang) { | 347 if (!build_with_chromium && is_clang) { |
347 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 348 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
348 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 349 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
349 } | 350 } |
350 } | 351 } |
351 } | 352 } |
352 } | 353 } |
OLD | NEW |