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

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

Issue 1715883002: Remove DeviceManager and DeviceInfo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: address comments Created 4 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
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 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 'WARNING_CFLAGS': [ 222 'WARNING_CFLAGS': [
223 '-Wno-return-type', 223 '-Wno-return-type',
224 ], 224 ],
225 }, 225 },
226 }], 226 }],
227 ['OS=="mac"', { 227 ['OS=="mac"', {
228 'sources': [ 228 'sources': [
229 'objc/RTCNSGLVideoView.h', 229 'objc/RTCNSGLVideoView.h',
230 'objc/RTCNSGLVideoView.m', 230 'objc/RTCNSGLVideoView.m',
231 ], 231 ],
232 'link_settings': {
233 'xcode_settings': {
234 'OTHER_LDFLAGS': [
235 '-framework OpenGL',
236 ],
237 },
238 },
232 }], 239 }],
233 ], 240 ],
234 } 241 }
235 ], 242 ],
236 }], # OS=="ios" 243 }], # OS=="ios"
237 ], # conditions 244 ], # conditions
238 'targets': [ 245 'targets': [
239 { 246 {
240 'target_name': 'libjingle_peerconnection', 247 'target_name': 'libjingle_peerconnection',
241 'type': 'static_library', 248 'type': 'static_library',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 'AdditionalOptions': [ 358 'AdditionalOptions': [
352 '-Wno-sign-compare', 359 '-Wno-sign-compare',
353 ], 360 ],
354 }, 361 },
355 }, 362 },
356 }], 363 }],
357 ], 364 ],
358 }, # target libjingle_peerconnection 365 }, # target libjingle_peerconnection
359 ], # targets 366 ], # targets
360 } 367 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698