Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2532523002: Move smoothing filter to common audio and exp_filter to base/analytics. (Closed)
Patch Set: typo Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 86 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
87 } 87 }
88 88
89 deps = [ 89 deps = [
90 ":video_coding_utility", 90 ":video_coding_utility",
91 ":webrtc_h264", 91 ":webrtc_h264",
92 ":webrtc_i420", 92 ":webrtc_i420",
93 ":webrtc_vp8", 93 ":webrtc_vp8",
94 ":webrtc_vp9", 94 ":webrtc_vp9",
95 "../..:webrtc_common", 95 "../..:webrtc_common",
96 "../../base:rtc_analytics",
96 "../../common_video", 97 "../../common_video",
97 "../../system_wrappers", 98 "../../system_wrappers",
98 ] 99 ]
99 } 100 }
100 101
101 rtc_static_library("video_coding_utility") { 102 rtc_static_library("video_coding_utility") {
102 sources = [ 103 sources = [
103 "utility/default_video_bitrate_allocator.cc", 104 "utility/default_video_bitrate_allocator.cc",
104 "utility/default_video_bitrate_allocator.h", 105 "utility/default_video_bitrate_allocator.h",
105 "utility/frame_dropper.cc", 106 "utility/frame_dropper.cc",
(...skipping 11 matching lines...) Expand all
117 "utility/vp8_header_parser.cc", 118 "utility/vp8_header_parser.cc",
118 "utility/vp8_header_parser.h", 119 "utility/vp8_header_parser.h",
119 ] 120 ]
120 121
121 if (!build_with_chromium && is_clang) { 122 if (!build_with_chromium && is_clang) {
122 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 123 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
123 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 124 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
124 } 125 }
125 126
126 deps = [ 127 deps = [
128 "../../base:rtc_analytics",
127 "../../common_video", 129 "../../common_video",
128 "../../system_wrappers", 130 "../../system_wrappers",
129 ] 131 ]
130 } 132 }
131 133
132 rtc_static_library("webrtc_h264") { 134 rtc_static_library("webrtc_h264") {
133 sources = [ 135 sources = [
134 "codecs/h264/h264.cc", 136 "codecs/h264/h264.cc",
135 "codecs/h264/include/h264.h", 137 "codecs/h264/include/h264.h",
136 ] 138 ]
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 if (!build_with_chromium && is_clang) { 269 if (!build_with_chromium && is_clang) {
268 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 270 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
269 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 271 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
270 } 272 }
271 273
272 deps = [ 274 deps = [
273 "../../test:test_support", 275 "../../test:test_support",
274 ] 276 ]
275 } 277 }
276 } 278 }
OLDNEW
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/aimd_rate_control_unittest.cc ('k') | webrtc/modules/video_coding/media_opt_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698