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

Side by Side Diff: webrtc/sdk/sdk.gyp

Issue 2008693002: iOS: Replace find with actual filenames listed. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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 | no next file » | 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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 'objc/Framework/Classes/RTCSSLAdapter.mm', 219 'objc/Framework/Classes/RTCSSLAdapter.mm',
220 'objc/Framework/Classes/RTCTracing.mm', 220 'objc/Framework/Classes/RTCTracing.mm',
221 'objc/Framework/Headers/WebRTC/RTCFieldTrials.h', 221 'objc/Framework/Headers/WebRTC/RTCFieldTrials.h',
222 'objc/Framework/Headers/WebRTC/RTCLogging.h', 222 'objc/Framework/Headers/WebRTC/RTCLogging.h',
223 'objc/Framework/Headers/WebRTC/RTCSSLAdapter.h', 223 'objc/Framework/Headers/WebRTC/RTCSSLAdapter.h',
224 'objc/Framework/Headers/WebRTC/RTCTracing.h', 224 'objc/Framework/Headers/WebRTC/RTCTracing.h',
225 'objc/Framework/Headers/WebRTC/WebRTC.h', 225 'objc/Framework/Headers/WebRTC/WebRTC.h',
226 'objc/Framework/Modules/module.modulemap', 226 'objc/Framework/Modules/module.modulemap',
227 ], 227 ],
228 'mac_framework_headers': [ 228 'mac_framework_headers': [
229 '<!@(find -E objc/Framework/Headers -regex ".*(h)")', 229 'objc/Framework/Headers/WebRTC/WebRTC.h',
tkchin_webrtc 2016/05/23 21:28:08 alphabetize
kjellander_webrtc 2016/05/24 05:11:55 Done.
230 'objc/Framework/Headers/WebRTC/RTCIceCandidate.h',
231 'objc/Framework/Headers/WebRTC/RTCSSLAdapter.h',
232 'objc/Framework/Headers/WebRTC/RTCTracing.h',
233 'objc/Framework/Headers/WebRTC/RTCNSGLVideoView.h',
234 'objc/Framework/Headers/WebRTC/RTCConfiguration.h',
235 'objc/Framework/Headers/WebRTC/RTCAudioTrack.h',
236 'objc/Framework/Headers/WebRTC/RTCStatsReport.h',
237 'objc/Framework/Headers/WebRTC/RTCDataChannel.h',
238 'objc/Framework/Headers/WebRTC/RTCRtpReceiver.h',
239 'objc/Framework/Headers/WebRTC/RTCVideoTrack.h',
240 'objc/Framework/Headers/WebRTC/RTCIceServer.h',
241 'objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h',
242 'objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h',
243 'objc/Framework/Headers/WebRTC/RTCDispatcher.h',
244 'objc/Framework/Headers/WebRTC/RTCMediaStream.h',
245 'objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h',
246 'objc/Framework/Headers/WebRTC/RTCFileLogger.h',
247 'objc/Framework/Headers/WebRTC/RTCFieldTrials.h',
248 'objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h',
249 'objc/Framework/Headers/WebRTC/RTCRtpEncodingParameters.h',
250 'objc/Framework/Headers/WebRTC/RTCEAGLVideoView.h',
251 'objc/Framework/Headers/WebRTC/RTCRtpCodecParameters.h',
252 'objc/Framework/Headers/WebRTC/RTCLogging.h',
253 'objc/Framework/Headers/WebRTC/RTCMediaConstraints.h',
254 'objc/Framework/Headers/WebRTC/RTCVideoRenderer.h',
255 'objc/Framework/Headers/WebRTC/RTCVideoFrame.h',
256 'objc/Framework/Headers/WebRTC/RTCSessionDescription.h',
257 'objc/Framework/Headers/WebRTC/RTCMediaStreamTrack.h',
258 'objc/Framework/Headers/WebRTC/RTCMacros.h',
259 'objc/Framework/Headers/WebRTC/RTCPeerConnection.h',
260 'objc/Framework/Headers/WebRTC/RTCRtpParameters.h',
261 'objc/Framework/Headers/WebRTC/RTCRtpSender.h',
262 'objc/Framework/Headers/WebRTC/RTCVideoSource.h',
230 ], 263 ],
231 'dependencies': [ 264 'dependencies': [
232 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa ult', 265 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa ult',
233 'rtc_sdk_peerconnection_objc', 266 'rtc_sdk_peerconnection_objc',
234 ], 267 ],
235 'xcode_settings': { 268 'xcode_settings': {
236 'CODE_SIGNING_REQUIRED': 'NO', 269 'CODE_SIGNING_REQUIRED': 'NO',
237 'CODE_SIGN_IDENTITY': '', 270 'CODE_SIGN_IDENTITY': '',
238 'DEFINES_MODULE': 'YES', 271 'DEFINES_MODULE': 'YES',
239 'INFOPLIST_FILE': 'objc/Framework/Info.plist', 272 'INFOPLIST_FILE': 'objc/Framework/Info.plist',
(...skipping 25 matching lines...) Expand all
265 'mac_framework_headers!': [ 298 'mac_framework_headers!': [
266 'objc/Framework/Headers/WebRTC/RTCFileLogger.h', 299 'objc/Framework/Headers/WebRTC/RTCFileLogger.h',
267 ], 300 ],
268 }], 301 }],
269 ], # conditions 302 ], # conditions
270 }, # rtc_sdk_framework_objc 303 }, # rtc_sdk_framework_objc
271 ], # targets 304 ], # targets
272 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7") 305 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")
273 ], 306 ],
274 } 307 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698