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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 ":webrtc_vp9", | 87 ":webrtc_vp9", |
88 "../..:webrtc_common", | 88 "../..:webrtc_common", |
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/frame_dropper.h", |
98 "utility/include/moving_average.h", | 98 "utility/moving_average.h", |
99 "utility/include/qp_parser.h", | |
100 "utility/include/quality_scaler.h", | |
101 "utility/include/vp8_header_parser.h", | |
102 "utility/qp_parser.cc", | 99 "utility/qp_parser.cc", |
| 100 "utility/qp_parser.h", |
103 "utility/quality_scaler.cc", | 101 "utility/quality_scaler.cc", |
| 102 "utility/quality_scaler.h", |
104 "utility/vp8_header_parser.cc", | 103 "utility/vp8_header_parser.cc", |
| 104 "utility/vp8_header_parser.h", |
105 ] | 105 ] |
106 | 106 |
107 configs += [ "../..:common_config" ] | 107 configs += [ "../..:common_config" ] |
108 public_configs = [ "../..:common_inherited_config" ] | 108 public_configs = [ "../..:common_inherited_config" ] |
109 | 109 |
110 if (is_clang) { | 110 if (is_clang) { |
111 # Suppress warnings from Chrome's Clang plugins. | 111 # Suppress warnings from Chrome's Clang plugins. |
112 # 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. |
113 configs -= [ "//build/config/clang:find_bad_constructs" ] | 113 configs -= [ "//build/config/clang:find_bad_constructs" ] |
114 } | 114 } |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 | 230 |
231 deps = [ | 231 deps = [ |
232 ":video_coding_utility", | 232 ":video_coding_utility", |
233 "../../common_video", | 233 "../../common_video", |
234 "../../system_wrappers", | 234 "../../system_wrappers", |
235 ] | 235 ] |
236 if (rtc_build_libvpx) { | 236 if (rtc_build_libvpx) { |
237 deps += [ rtc_libvpx_dir ] | 237 deps += [ rtc_libvpx_dir ] |
238 } | 238 } |
239 } | 239 } |
OLD | NEW |