OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 | 166 |
167 rtc_source_set("video_frame_api") { | 167 rtc_source_set("video_frame_api") { |
168 sources = [ | 168 sources = [ |
169 "video/i420_buffer.cc", | 169 "video/i420_buffer.cc", |
170 "video/i420_buffer.h", | 170 "video/i420_buffer.h", |
171 "video/video_frame.cc", | 171 "video/video_frame.cc", |
172 "video/video_frame.h", | 172 "video/video_frame.h", |
173 "video/video_frame_buffer.cc", | 173 "video/video_frame_buffer.cc", |
174 "video/video_frame_buffer.h", | 174 "video/video_frame_buffer.h", |
175 "video/video_rotation.h", | 175 "video/video_rotation.h", |
| 176 "video/video_timing.cc", |
176 "video/video_timing.h", | 177 "video/video_timing.h", |
177 ] | 178 ] |
178 | 179 |
179 deps = [ | 180 deps = [ |
180 "../base:rtc_base_approved", | 181 "../base:rtc_base_approved", |
181 "../system_wrappers", | 182 "../system_wrappers", |
182 ] | 183 ] |
183 | 184 |
184 # TODO(nisse): This logic is duplicated in multiple places. | 185 # TODO(nisse): This logic is duplicated in multiple places. |
185 # Define in a single place. | 186 # Define in a single place. |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
263 } | 264 } |
264 | 265 |
265 deps = [ | 266 deps = [ |
266 ":libjingle_peerconnection_api", | 267 ":libjingle_peerconnection_api", |
267 ":ortc_api", | 268 ":ortc_api", |
268 "//webrtc/test:test_support", | 269 "//webrtc/test:test_support", |
269 ] | 270 ] |
270 } | 271 } |
271 } | 272 } |
OLD | NEW |