| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "include/voe_audio_processing.h", | 77 "include/voe_audio_processing.h", |
| 78 "include/voe_base.h", | 78 "include/voe_base.h", |
| 79 "include/voe_codec.h", | 79 "include/voe_codec.h", |
| 80 "include/voe_errors.h", | 80 "include/voe_errors.h", |
| 81 "include/voe_file.h", | 81 "include/voe_file.h", |
| 82 "include/voe_hardware.h", | 82 "include/voe_hardware.h", |
| 83 "include/voe_neteq_stats.h", | 83 "include/voe_neteq_stats.h", |
| 84 "include/voe_network.h", | 84 "include/voe_network.h", |
| 85 "include/voe_rtp_rtcp.h", | 85 "include/voe_rtp_rtcp.h", |
| 86 "include/voe_volume_control.h", | 86 "include/voe_volume_control.h", |
| 87 "monitor_module.cc", | |
| 88 "monitor_module.h", | 87 "monitor_module.h", |
| 89 "output_mixer.cc", | 88 "output_mixer.cc", |
| 90 "output_mixer.h", | 89 "output_mixer.h", |
| 91 "shared_data.cc", | 90 "shared_data.cc", |
| 92 "shared_data.h", | 91 "shared_data.h", |
| 93 "statistics.cc", | 92 "statistics.cc", |
| 94 "statistics.h", | 93 "statistics.h", |
| 95 "transmit_mixer.cc", | 94 "transmit_mixer.cc", |
| 96 "transmit_mixer.h", | 95 "transmit_mixer.h", |
| 97 "transport_feedback_packet_loss_tracker.cc", | 96 "transport_feedback_packet_loss_tracker.cc", |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 ] | 403 ] |
| 405 } | 404 } |
| 406 | 405 |
| 407 if (!build_with_chromium && is_clang) { | 406 if (!build_with_chromium && is_clang) { |
| 408 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 407 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 409 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 408 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 410 } | 409 } |
| 411 } | 410 } |
| 412 } | 411 } |
| 413 } | 412 } |
| OLD | NEW |