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

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

Issue 1882733006: Delete I420 encoder and decoder. Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Delete i420 directory from PRESUBMIT.py. Created 4 years, 8 months 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
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/modules/video_coding/codec_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 87
88 if (is_clang) { 88 if (is_clang) {
89 # Suppress warnings from Chrome's Clang plugins. 89 # Suppress warnings from Chrome's Clang plugins.
90 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 90 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
91 configs -= [ "//build/config/clang:find_bad_constructs" ] 91 configs -= [ "//build/config/clang:find_bad_constructs" ]
92 } 92 }
93 93
94 deps = [ 94 deps = [
95 ":video_coding_utility", 95 ":video_coding_utility",
96 ":webrtc_h264", 96 ":webrtc_h264",
97 ":webrtc_i420",
98 ":webrtc_vp8", 97 ":webrtc_vp8",
99 ":webrtc_vp9", 98 ":webrtc_vp9",
100 "../..:webrtc_common", 99 "../..:webrtc_common",
101 "../../common_video", 100 "../../common_video",
102 "../../system_wrappers", 101 "../../system_wrappers",
103 ] 102 ]
104 } 103 }
105 104
106 source_set("video_coding_utility") { 105 source_set("video_coding_utility") {
107 sources = [ 106 sources = [
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 "../../common_video", 164 "../../common_video",
166 "//third_party/ffmpeg:ffmpeg", 165 "//third_party/ffmpeg:ffmpeg",
167 "//third_party/openh264:encoder", 166 "//third_party/openh264:encoder",
168 ] 167 ]
169 } 168 }
170 } 169 }
171 170
172 # TODO(tkchin): Source set for webrtc_h264_video_toolbox. Currently not 171 # TODO(tkchin): Source set for webrtc_h264_video_toolbox. Currently not
173 # possible to add, see https://crbug.com/297668. 172 # possible to add, see https://crbug.com/297668.
174 173
175 source_set("webrtc_i420") {
176 sources = [
177 "codecs/i420/i420.cc",
178 "codecs/i420/include/i420.h",
179 ]
180
181 configs += [ "../..:common_config" ]
182 public_configs = [ "../..:common_inherited_config" ]
183
184 if (is_clang) {
185 # Suppress warnings from Chrome's Clang plugins.
186 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
187 configs -= [ "//build/config/clang:find_bad_constructs" ]
188 }
189
190 deps = [
191 "../../system_wrappers",
192 ]
193 }
194
195 source_set("webrtc_vp8") { 174 source_set("webrtc_vp8") {
196 sources = [ 175 sources = [
197 "codecs/vp8/default_temporal_layers.cc", 176 "codecs/vp8/default_temporal_layers.cc",
198 "codecs/vp8/default_temporal_layers.h", 177 "codecs/vp8/default_temporal_layers.h",
199 "codecs/vp8/include/vp8.h", 178 "codecs/vp8/include/vp8.h",
200 "codecs/vp8/include/vp8_common_types.h", 179 "codecs/vp8/include/vp8_common_types.h",
201 "codecs/vp8/realtime_temporal_layers.cc", 180 "codecs/vp8/realtime_temporal_layers.cc",
202 "codecs/vp8/reference_picture_selection.cc", 181 "codecs/vp8/reference_picture_selection.cc",
203 "codecs/vp8/reference_picture_selection.h", 182 "codecs/vp8/reference_picture_selection.h",
204 "codecs/vp8/screenshare_layers.cc", 183 "codecs/vp8/screenshare_layers.cc",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 238
260 deps = [ 239 deps = [
261 ":video_coding_utility", 240 ":video_coding_utility",
262 "../../common_video", 241 "../../common_video",
263 "../../system_wrappers", 242 "../../system_wrappers",
264 ] 243 ]
265 if (rtc_build_libvpx) { 244 if (rtc_build_libvpx) {
266 deps += [ rtc_libvpx_dir ] 245 deps += [ rtc_libvpx_dir ]
267 } 246 }
268 } 247 }
OLDNEW
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/modules/video_coding/codec_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698