| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "utility/frame_dropper.h", | 101 "utility/frame_dropper.h", |
| 102 "utility/h264_bitstream_parser.cc", | 102 "utility/h264_bitstream_parser.cc", |
| 103 "utility/h264_bitstream_parser.h", | 103 "utility/h264_bitstream_parser.h", |
| 104 "utility/ivf_file_writer.cc", | 104 "utility/ivf_file_writer.cc", |
| 105 "utility/ivf_file_writer.h", | 105 "utility/ivf_file_writer.h", |
| 106 "utility/moving_average.h", | 106 "utility/moving_average.h", |
| 107 "utility/qp_parser.cc", | 107 "utility/qp_parser.cc", |
| 108 "utility/qp_parser.h", | 108 "utility/qp_parser.h", |
| 109 "utility/quality_scaler.cc", | 109 "utility/quality_scaler.cc", |
| 110 "utility/quality_scaler.h", | 110 "utility/quality_scaler.h", |
| 111 "utility/simulcast_rate_allocator.cc", |
| 112 "utility/simulcast_rate_allocator.h", |
| 111 "utility/vp8_header_parser.cc", | 113 "utility/vp8_header_parser.cc", |
| 112 "utility/vp8_header_parser.h", | 114 "utility/vp8_header_parser.h", |
| 113 ] | 115 ] |
| 114 | 116 |
| 115 if (is_clang) { | 117 if (is_clang) { |
| 116 # Suppress warnings from Chrome's Clang plugins. | 118 # Suppress warnings from Chrome's Clang plugins. |
| 117 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 119 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 118 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 120 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 119 } | 121 } |
| 120 | 122 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 # Suppress warnings from Chrome's Clang plugins. | 318 # Suppress warnings from Chrome's Clang plugins. |
| 317 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 319 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 318 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 320 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 319 } | 321 } |
| 320 | 322 |
| 321 deps = [ | 323 deps = [ |
| 322 "../../test:test_support", | 324 "../../test:test_support", |
| 323 ] | 325 ] |
| 324 } | 326 } |
| 325 } | 327 } |
| OLD | NEW |