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

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

Issue 3000253002: Move video send/receive stream headers to webrtc/call. (Closed)
Patch Set: Add missing files Created 3 years, 4 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/BUILD.gn ('k') | webrtc/api/video_receive_stream.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("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 deps += [ "$rtc_libyuv_dir" ] 188 deps += [ "$rtc_libyuv_dir" ]
189 public_deps = [ 189 public_deps = [
190 "$rtc_libyuv_dir", 190 "$rtc_libyuv_dir",
191 ] 191 ]
192 } else { 192 } else {
193 # Need to add a directory normally exported by libyuv. 193 # Need to add a directory normally exported by libyuv.
194 include_dirs = [ "$rtc_libyuv_dir/include" ] 194 include_dirs = [ "$rtc_libyuv_dir/include" ]
195 } 195 }
196 } 196 }
197 197
198 rtc_source_set("video_stream_api") {
199 sources = [
200 "video_receive_stream.h",
201 "video_send_stream.h",
kwiberg-webrtc 2017/08/21 08:51:00 These .h files declare functions that they don't d
aleloi 2017/08/21 13:40:01 Thanks! Good that you noticed!
202 ]
203 deps = [
204 ":transport_api",
205 "../:webrtc_common",
206 "../common_video:common_video",
207 "../rtc_base:rtc_base_approved",
208 ]
209 }
210
198 rtc_source_set("libjingle_peerconnection_test_api") { 211 rtc_source_set("libjingle_peerconnection_test_api") {
199 testonly = true 212 testonly = true
200 sources = [ 213 sources = [
201 "test/fakeconstraints.h", 214 "test/fakeconstraints.h",
202 ] 215 ]
203 216
204 public_deps = [ 217 public_deps = [
205 ":libjingle_peerconnection_api", 218 ":libjingle_peerconnection_api",
206 ] 219 ]
207 220
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 276 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
264 } 277 }
265 278
266 deps = [ 279 deps = [
267 ":libjingle_peerconnection_api", 280 ":libjingle_peerconnection_api",
268 ":ortc_api", 281 ":ortc_api",
269 "../test:test_support", 282 "../test:test_support",
270 ] 283 ]
271 } 284 }
272 } 285 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/api/video_receive_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698