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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "../../common_video", | 89 "../../common_video", |
90 "../../system_wrappers", | 90 "../../system_wrappers", |
91 ] | 91 ] |
92 } | 92 } |
93 | 93 |
94 source_set("video_coding_utility") { | 94 source_set("video_coding_utility") { |
95 sources = [ | 95 sources = [ |
96 "utility/frame_dropper.cc", | 96 "utility/frame_dropper.cc", |
97 "utility/include/frame_dropper.h", | 97 "utility/include/frame_dropper.h", |
98 "utility/include/moving_average.h", | 98 "utility/include/moving_average.h", |
| 99 "utility/include/qp_parser.h", |
99 "utility/include/quality_scaler.h", | 100 "utility/include/quality_scaler.h", |
100 "utility/include/vp8_header_parser.h", | 101 "utility/include/vp8_header_parser.h", |
| 102 "utility/qp_parser.cc", |
101 "utility/quality_scaler.cc", | 103 "utility/quality_scaler.cc", |
102 "utility/vp8_header_parser.cc", | 104 "utility/vp8_header_parser.cc", |
103 ] | 105 ] |
104 | 106 |
105 configs += [ "../..:common_config" ] | 107 configs += [ "../..:common_config" ] |
106 public_configs = [ "../..:common_inherited_config" ] | 108 public_configs = [ "../..:common_inherited_config" ] |
107 | 109 |
108 if (is_clang) { | 110 if (is_clang) { |
109 # Suppress warnings from Chrome's Clang plugins. | 111 # Suppress warnings from Chrome's Clang plugins. |
110 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 112 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 | 234 |
233 deps = [ | 235 deps = [ |
234 ":video_coding_utility", | 236 ":video_coding_utility", |
235 "../../common_video", | 237 "../../common_video", |
236 "../../system_wrappers", | 238 "../../system_wrappers", |
237 ] | 239 ] |
238 if (rtc_build_libvpx) { | 240 if (rtc_build_libvpx) { |
239 deps += [ rtc_libvpx_dir ] | 241 deps += [ rtc_libvpx_dir ] |
240 } | 242 } |
241 } | 243 } |
OLD | NEW |