| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 } | 170 } |
| 171 | 171 |
| 172 rtc_source_set("transport_api") { | 172 rtc_source_set("transport_api") { |
| 173 sources = [ | 173 sources = [ |
| 174 "call/transport.h", | 174 "call/transport.h", |
| 175 ] | 175 ] |
| 176 } | 176 } |
| 177 | 177 |
| 178 rtc_source_set("video_frame_api") { | 178 rtc_source_set("video_frame_api") { |
| 179 sources = [ | 179 sources = [ |
| 180 "video/i420_buffer.cc", |
| 181 "video/i420_buffer.h", |
| 182 "video/video_frame.cc", |
| 183 "video/video_frame.h", |
| 184 "video/video_frame_buffer.h", |
| 180 "video/video_rotation.h", | 185 "video/video_rotation.h", |
| 181 ] | 186 ] |
| 182 | 187 |
| 183 deps = [ | 188 deps = [ |
| 184 "../base:rtc_base_approved", | 189 "../base:rtc_base_approved", |
| 190 "../system_wrappers", |
| 185 ] | 191 ] |
| 186 | 192 |
| 187 # TODO(nisse): This logic is duplicated in multiple places. | 193 # TODO(nisse): This logic is duplicated in multiple places. |
| 188 # Define in a single place. | 194 # Define in a single place. |
| 189 if (rtc_build_libyuv) { | 195 if (rtc_build_libyuv) { |
| 190 deps += [ "$rtc_libyuv_dir" ] | 196 deps += [ "$rtc_libyuv_dir" ] |
| 191 public_deps = [ | 197 public_deps = [ |
| 192 "$rtc_libyuv_dir", | 198 "$rtc_libyuv_dir", |
| 193 ] | 199 ] |
| 194 } else { | 200 } else { |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 deps = [ | 353 deps = [ |
| 348 ":libjingle_peerconnection", | 354 ":libjingle_peerconnection", |
| 349 "../base:rtc_base_approved", | 355 "../base:rtc_base_approved", |
| 350 ] | 356 ] |
| 351 if (!build_with_chromium && is_clang) { | 357 if (!build_with_chromium && is_clang) { |
| 352 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 358 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 359 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 354 } | 360 } |
| 355 } | 361 } |
| 356 } | 362 } |
| OLD | NEW |