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

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

Issue 2743663002: Reland of Add unit tests for RTCMTLVideoView. (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | webrtc/sdk/objc/Framework/Classes/Metal/RTCMTLNV12Renderer.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 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 if (!build_with_chromium) { 87 if (!build_with_chromium) {
88 sources += [ 88 sources += [
89 "objc/Framework/Classes/RTCFileLogger.mm", 89 "objc/Framework/Classes/RTCFileLogger.mm",
90 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", 90 "objc/Framework/Headers/WebRTC/RTCFileLogger.h",
91 ] 91 ]
92 } 92 }
93 } 93 }
94 94
95 rtc_static_library("rtc_sdk_peerconnection_objc") { 95 rtc_static_library("rtc_sdk_peerconnection_objc") {
96 sources = [ 96 sources = [
97 "objc/Framework/Classes/Metal/RTCMTLNV12Renderer.h",
97 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.h", 98 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.h",
98 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.mm", 99 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.mm",
99 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h", 100 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h",
100 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm", 101 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm",
101 "objc/Framework/Classes/RTCAudioSource+Private.h", 102 "objc/Framework/Classes/RTCAudioSource+Private.h",
102 "objc/Framework/Classes/RTCAudioSource.mm", 103 "objc/Framework/Classes/RTCAudioSource.mm",
103 "objc/Framework/Classes/RTCAudioTrack+Private.h", 104 "objc/Framework/Classes/RTCAudioTrack+Private.h",
104 "objc/Framework/Classes/RTCAudioTrack.mm", 105 "objc/Framework/Classes/RTCAudioTrack.mm",
105 "objc/Framework/Classes/RTCConfiguration+Private.h", 106 "objc/Framework/Classes/RTCConfiguration+Private.h",
106 "objc/Framework/Classes/RTCConfiguration.mm", 107 "objc/Framework/Classes/RTCConfiguration.mm",
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 testonly = true 251 testonly = true
251 sources = [ 252 sources = [
252 "objc/Framework/UnitTests/RTCConfigurationTest.mm", 253 "objc/Framework/UnitTests/RTCConfigurationTest.mm",
253 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", 254 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm",
254 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", 255 "objc/Framework/UnitTests/RTCIceCandidateTest.mm",
255 "objc/Framework/UnitTests/RTCIceServerTest.mm", 256 "objc/Framework/UnitTests/RTCIceServerTest.mm",
256 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", 257 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm",
257 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", 258 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm",
258 "objc/Framework/UnitTests/avformatmappertests.mm", 259 "objc/Framework/UnitTests/avformatmappertests.mm",
259 ] 260 ]
261 if (is_ios) {
262 sources += [ "objc/Framework/UnitTests/RTCMTLVideoViewTests.mm" ]
263 if (current_cpu != "arm64") {
264 sources += [ "objc/Framework/Classes/Metal/RTCMTLVideoView.m" ]
265 }
266 }
260 deps = [ 267 deps = [
261 ":rtc_sdk_peerconnection_objc", 268 ":rtc_sdk_peerconnection_objc",
262 "//third_party/ocmock", 269 "//third_party/ocmock",
263 "//webrtc/system_wrappers:system_wrappers_default", 270 "//webrtc/system_wrappers:system_wrappers_default",
264 ] 271 ]
265 272
266 # TODO(tkchin): Cleanup this warning. 273 # TODO(tkchin): Cleanup this warning.
267 cflags = [ "-Wno-objc-property-no-attribute" ] 274 cflags = [ "-Wno-objc-property-no-attribute" ]
268 275
269 # |-ObjC| flag needed to make sure category method implementations 276 # |-ObjC| flag needed to make sure category method implementations
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 deps += [ "$rtc_libyuv_dir" ] 419 deps += [ "$rtc_libyuv_dir" ]
413 public_deps = [ 420 public_deps = [
414 "$rtc_libyuv_dir", 421 "$rtc_libyuv_dir",
415 ] 422 ]
416 } else { 423 } else {
417 # Need to add a directory normally exported by libyuv. 424 # Need to add a directory normally exported by libyuv.
418 include_dirs = [ "$rtc_libyuv_dir/include" ] 425 include_dirs = [ "$rtc_libyuv_dir/include" ]
419 } 426 }
420 } 427 }
421 } 428 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/Metal/RTCMTLNV12Renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698