| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "../rtc_base:rtc_base_approved", | 157 "../rtc_base:rtc_base_approved", |
| 158 ] | 158 ] |
| 159 } | 159 } |
| 160 | 160 |
| 161 rtc_source_set("transport_api") { | 161 rtc_source_set("transport_api") { |
| 162 sources = [ | 162 sources = [ |
| 163 "call/transport.h", | 163 "call/transport.h", |
| 164 ] | 164 ] |
| 165 } | 165 } |
| 166 | 166 |
| 167 rtc_source_set("video_content_type_api") { |
| 168 sources = [ |
| 169 "video/video_content_type.cc", |
| 170 "video/video_content_type.h", |
| 171 ] |
| 172 } |
| 173 |
| 167 rtc_source_set("video_frame_api") { | 174 rtc_source_set("video_frame_api") { |
| 168 sources = [ | 175 sources = [ |
| 169 "video/i420_buffer.cc", | 176 "video/i420_buffer.cc", |
| 170 "video/i420_buffer.h", | 177 "video/i420_buffer.h", |
| 171 "video/video_frame.cc", | 178 "video/video_frame.cc", |
| 172 "video/video_frame.h", | 179 "video/video_frame.h", |
| 173 "video/video_frame_buffer.cc", | 180 "video/video_frame_buffer.cc", |
| 174 "video/video_frame_buffer.h", | 181 "video/video_frame_buffer.h", |
| 175 "video/video_rotation.h", | 182 "video/video_rotation.h", |
| 176 "video/video_timing.cc", | 183 "video/video_timing.cc", |
| 177 "video/video_timing.h", | 184 "video/video_timing.h", |
| 178 ] | 185 ] |
| 179 | 186 |
| 180 deps = [ | 187 deps = [ |
| 188 ":video_content_type_api", |
| 181 "../rtc_base:rtc_base_approved", | 189 "../rtc_base:rtc_base_approved", |
| 182 "../system_wrappers", | 190 "../system_wrappers", |
| 183 ] | 191 ] |
| 184 | 192 |
| 185 # TODO(nisse): This logic is duplicated in multiple places. | 193 # TODO(nisse): This logic is duplicated in multiple places. |
| 186 # Define in a single place. | 194 # Define in a single place. |
| 187 if (rtc_build_libyuv) { | 195 if (rtc_build_libyuv) { |
| 188 deps += [ "$rtc_libyuv_dir" ] | 196 deps += [ "$rtc_libyuv_dir" ] |
| 189 public_deps = [ | 197 public_deps = [ |
| 190 "$rtc_libyuv_dir", | 198 "$rtc_libyuv_dir", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 271 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 264 } | 272 } |
| 265 | 273 |
| 266 deps = [ | 274 deps = [ |
| 267 ":libjingle_peerconnection_api", | 275 ":libjingle_peerconnection_api", |
| 268 ":ortc_api", | 276 ":ortc_api", |
| 269 "../test:test_support", | 277 "../test:test_support", |
| 270 ] | 278 ] |
| 271 } | 279 } |
| 272 } | 280 } |
| OLD | NEW |