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

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

Issue 2815823002: Add unit test class for RTCCameraVideoCapturer. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright 2016 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_ios) { 10 if (is_ios) {
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 public_deps = [ 256 public_deps = [
257 "$rtc_libyuv_dir", 257 "$rtc_libyuv_dir",
258 ] 258 ]
259 } 259 }
260 } 260 }
261 261
262 if (rtc_include_tests) { 262 if (rtc_include_tests) {
263 rtc_source_set("rtc_sdk_peerconnection_objc_unittests") { 263 rtc_source_set("rtc_sdk_peerconnection_objc_unittests") {
264 testonly = true 264 testonly = true
265 sources = [ 265 sources = [
266 "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm",
266 "objc/Framework/UnitTests/RTCConfigurationTest.mm", 267 "objc/Framework/UnitTests/RTCConfigurationTest.mm",
267 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", 268 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm",
268 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", 269 "objc/Framework/UnitTests/RTCIceCandidateTest.mm",
269 "objc/Framework/UnitTests/RTCIceServerTest.mm", 270 "objc/Framework/UnitTests/RTCIceServerTest.mm",
270 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", 271 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm",
271 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm", 272 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm",
272 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", 273 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm",
273 "objc/Framework/UnitTests/avformatmappertests.mm", 274 "objc/Framework/UnitTests/avformatmappertests.mm",
274 ] 275 ]
275 if (is_ios) { 276 if (is_ios) {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 deps += [ "$rtc_libyuv_dir" ] 434 deps += [ "$rtc_libyuv_dir" ]
434 public_deps = [ 435 public_deps = [
435 "$rtc_libyuv_dir", 436 "$rtc_libyuv_dir",
436 ] 437 ]
437 } else { 438 } else {
438 # Need to add a directory normally exported by libyuv. 439 # Need to add a directory normally exported by libyuv.
439 include_dirs = [ "$rtc_libyuv_dir/include" ] 440 include_dirs = [ "$rtc_libyuv_dir/include" ]
440 } 441 }
441 } 442 }
442 } 443 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698