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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 } | 171 } |
172 | 172 |
173 rtc_source_set("transport_api") { | 173 rtc_source_set("transport_api") { |
174 sources = [ | 174 sources = [ |
175 "call/transport.h", | 175 "call/transport.h", |
176 ] | 176 ] |
177 } | 177 } |
178 | 178 |
179 rtc_source_set("video_frame_api") { | 179 rtc_source_set("video_frame_api") { |
180 sources = [ | 180 sources = [ |
| 181 "video/i420_buffer.cc", |
| 182 "video/i420_buffer.h", |
| 183 "video/video_frame.cc", |
| 184 "video/video_frame.h", |
| 185 "video/video_frame_buffer.h", |
181 "video/video_rotation.h", | 186 "video/video_rotation.h", |
182 ] | 187 ] |
183 | 188 |
184 deps = [ | 189 deps = [ |
185 "../base:rtc_base_approved", | 190 "../base:rtc_base_approved", |
| 191 "../system_wrappers", |
186 ] | 192 ] |
187 | 193 |
188 # TODO(nisse): This logic is duplicated in multiple places. | 194 # TODO(nisse): This logic is duplicated in multiple places. |
189 # Define in a single place. | 195 # Define in a single place. |
190 if (rtc_build_libyuv) { | 196 if (rtc_build_libyuv) { |
191 deps += [ "$rtc_libyuv_dir" ] | 197 deps += [ "$rtc_libyuv_dir" ] |
192 public_deps = [ | 198 public_deps = [ |
193 "$rtc_libyuv_dir", | 199 "$rtc_libyuv_dir", |
194 ] | 200 ] |
195 } else { | 201 } else { |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 public_deps = [ | 337 public_deps = [ |
332 ":audio_mixer_api", | 338 ":audio_mixer_api", |
333 ] | 339 ] |
334 | 340 |
335 deps = [ | 341 deps = [ |
336 "//testing/gmock", | 342 "//testing/gmock", |
337 "//webrtc/test:test_support", | 343 "//webrtc/test:test_support", |
338 ] | 344 ] |
339 } | 345 } |
340 } | 346 } |
OLD | NEW |