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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 "codecs/vp8/include/vp8.h", | 180 "codecs/vp8/include/vp8.h", |
181 "codecs/vp8/include/vp8_common_types.h", | 181 "codecs/vp8/include/vp8_common_types.h", |
182 "codecs/vp8/realtime_temporal_layers.cc", | 182 "codecs/vp8/realtime_temporal_layers.cc", |
183 "codecs/vp8/reference_picture_selection.cc", | 183 "codecs/vp8/reference_picture_selection.cc", |
184 "codecs/vp8/reference_picture_selection.h", | 184 "codecs/vp8/reference_picture_selection.h", |
185 "codecs/vp8/screenshare_layers.cc", | 185 "codecs/vp8/screenshare_layers.cc", |
186 "codecs/vp8/screenshare_layers.h", | 186 "codecs/vp8/screenshare_layers.h", |
187 "codecs/vp8/simulcast_encoder_adapter.cc", | 187 "codecs/vp8/simulcast_encoder_adapter.cc", |
188 "codecs/vp8/simulcast_encoder_adapter.h", | 188 "codecs/vp8/simulcast_encoder_adapter.h", |
189 "codecs/vp8/temporal_layers.h", | 189 "codecs/vp8/temporal_layers.h", |
190 "codecs/vp8/vp8_factory.cc", | |
191 "codecs/vp8/vp8_factory.h", | |
192 "codecs/vp8/vp8_impl.cc", | 190 "codecs/vp8/vp8_impl.cc", |
193 "codecs/vp8/vp8_impl.h", | 191 "codecs/vp8/vp8_impl.h", |
194 ] | 192 ] |
195 | 193 |
196 configs += [ "../..:common_config" ] | 194 configs += [ "../..:common_config" ] |
197 public_configs = [ "../..:common_inherited_config" ] | 195 public_configs = [ "../..:common_inherited_config" ] |
198 | 196 |
199 if (is_clang) { | 197 if (is_clang) { |
200 # Suppress warnings from Chrome's Clang plugins. | 198 # Suppress warnings from Chrome's Clang plugins. |
201 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 199 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 | 240 |
243 deps = [ | 241 deps = [ |
244 ":video_coding_utility", | 242 ":video_coding_utility", |
245 "../../common_video", | 243 "../../common_video", |
246 "../../system_wrappers", | 244 "../../system_wrappers", |
247 ] | 245 ] |
248 if (rtc_build_libvpx) { | 246 if (rtc_build_libvpx) { |
249 deps += [ rtc_libvpx_dir ] | 247 deps += [ rtc_libvpx_dir ] |
250 } | 248 } |
251 } | 249 } |
OLD | NEW |