| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "media_opt_util.h", | 48 "media_opt_util.h", |
| 49 "media_optimization.cc", | 49 "media_optimization.cc", |
| 50 "media_optimization.h", | 50 "media_optimization.h", |
| 51 "nack_fec_tables.h", | 51 "nack_fec_tables.h", |
| 52 "nack_module.cc", | 52 "nack_module.cc", |
| 53 "nack_module.h", | 53 "nack_module.h", |
| 54 "packet.cc", | 54 "packet.cc", |
| 55 "packet.h", | 55 "packet.h", |
| 56 "packet_buffer.cc", | 56 "packet_buffer.cc", |
| 57 "packet_buffer.h", | 57 "packet_buffer.h", |
| 58 "percentile_filter.cc", | |
| 59 "percentile_filter.h", | |
| 60 "protection_bitrate_calculator.cc", | 58 "protection_bitrate_calculator.cc", |
| 61 "protection_bitrate_calculator.h", | 59 "protection_bitrate_calculator.h", |
| 62 "receiver.cc", | 60 "receiver.cc", |
| 63 "receiver.h", | 61 "receiver.h", |
| 64 "rtp_frame_reference_finder.cc", | 62 "rtp_frame_reference_finder.cc", |
| 65 "rtp_frame_reference_finder.h", | 63 "rtp_frame_reference_finder.h", |
| 66 "rtt_filter.cc", | 64 "rtt_filter.cc", |
| 67 "rtt_filter.h", | 65 "rtt_filter.h", |
| 68 "session_info.cc", | 66 "session_info.cc", |
| 69 "session_info.h", | 67 "session_info.h", |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 if (!build_with_chromium && is_clang) { | 267 if (!build_with_chromium && is_clang) { |
| 270 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 268 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 271 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 269 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 272 } | 270 } |
| 273 | 271 |
| 274 deps = [ | 272 deps = [ |
| 275 "../../test:test_support", | 273 "../../test:test_support", |
| 276 ] | 274 ] |
| 277 } | 275 } |
| 278 } | 276 } |
| OLD | NEW |