Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(528)

Side by Side Diff: webrtc/api/BUILD.gn

Issue 2517173004: Move VideoFrame and related declarations to webrtc/api/video. (Closed)
Patch Set: Make rotation check clearer. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/DEPS ('k') | webrtc/api/mediastreaminterface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « webrtc/DEPS ('k') | webrtc/api/mediastreaminterface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698