OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 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': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 15 matching lines...) Expand all Loading... |
26 '<(webrtc_root)/p2p/p2p.gyp:rtc_p2p', | 26 '<(webrtc_root)/p2p/p2p.gyp:rtc_p2p', |
27 ], | 27 ], |
28 'direct_dependent_settings': { | 28 'direct_dependent_settings': { |
29 'include_dirs': [ | 29 'include_dirs': [ |
30 '<(libyuv_dir)/include', | 30 '<(libyuv_dir)/include', |
31 ], | 31 ], |
32 }, | 32 }, |
33 'sources': [ | 33 'sources': [ |
34 'base/audioframe.h', | 34 'base/audioframe.h', |
35 'base/audiosource.h', | 35 'base/audiosource.h', |
| 36 'base/capturemanager.cc', |
| 37 'base/capturemanager.h', |
36 'base/codec.cc', | 38 'base/codec.cc', |
37 'base/codec.h', | 39 'base/codec.h', |
38 'base/cpuid.cc', | 40 'base/cpuid.cc', |
39 'base/cpuid.h', | 41 'base/cpuid.h', |
40 'base/cryptoparams.h', | 42 'base/cryptoparams.h', |
41 'base/device.h', | 43 'base/device.h', |
42 'base/fakescreencapturerfactory.h', | 44 'base/fakescreencapturerfactory.h', |
43 'base/hybriddataengine.h', | 45 'base/hybriddataengine.h', |
44 'base/mediachannel.h', | 46 'base/mediachannel.h', |
45 'base/mediacommon.h', | 47 'base/mediacommon.h', |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 }], | 209 }], |
208 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 210 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
209 'defines': [ | 211 'defines': [ |
210 'CARBON_DEPRECATED=YES', | 212 'CARBON_DEPRECATED=YES', |
211 ], | 213 ], |
212 }], | 214 }], |
213 ], | 215 ], |
214 }, # target rtc_media | 216 }, # target rtc_media |
215 ], # targets. | 217 ], # targets. |
216 } | 218 } |
OLD | NEW |