| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "..:webrtc_common", | 147 "..:webrtc_common", |
| 148 "../api:audio_mixer_api", | 148 "../api:audio_mixer_api", |
| 149 "../api:call_api", | 149 "../api:call_api", |
| 150 "../api:transport_api", | 150 "../api:transport_api", |
| 151 "../api/audio_codecs:audio_codecs_api", | 151 "../api/audio_codecs:audio_codecs_api", |
| 152 "../api/audio_codecs:builtin_audio_decoder_factory", | 152 "../api/audio_codecs:builtin_audio_decoder_factory", |
| 153 "../audio/utility:audio_frame_operations", | 153 "../audio/utility:audio_frame_operations", |
| 154 "../base:rtc_base_approved", | 154 "../base:rtc_base_approved", |
| 155 "../common_audio", | 155 "../common_audio", |
| 156 "../logging:rtc_event_log_api", | 156 "../logging:rtc_event_log_api", |
| 157 "../modules/audio_coding:audio_encoder_factory_interface", |
| 157 "../modules/audio_coding:audio_format_conversion", | 158 "../modules/audio_coding:audio_format_conversion", |
| 159 "../modules/audio_coding:builtin_audio_encoder_factory", |
| 158 "../modules/audio_coding:rent_a_codec", | 160 "../modules/audio_coding:rent_a_codec", |
| 159 "../modules/audio_conference_mixer", | 161 "../modules/audio_conference_mixer", |
| 160 "../modules/audio_device", | 162 "../modules/audio_device", |
| 161 "../modules/audio_processing", | 163 "../modules/audio_processing", |
| 162 "../modules/bitrate_controller", | 164 "../modules/bitrate_controller", |
| 163 "../modules/media_file", | 165 "../modules/media_file", |
| 164 "../modules/pacing", | 166 "../modules/pacing", |
| 165 "../modules/rtp_rtcp", | 167 "../modules/rtp_rtcp", |
| 166 "../modules/utility", | 168 "../modules/utility", |
| 167 "../system_wrappers", | 169 "../system_wrappers", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 ] | 408 ] |
| 407 } | 409 } |
| 408 | 410 |
| 409 if (!build_with_chromium && is_clang) { | 411 if (!build_with_chromium && is_clang) { |
| 410 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 412 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 411 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 413 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 412 } | 414 } |
| 413 } | 415 } |
| 414 } | 416 } |
| 415 } | 417 } |
| OLD | NEW |