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 19 matching lines...) Expand all Loading... |
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/audiorenderer.h', | 35 'base/audiorenderer.h', |
36 'base/capturemanager.cc', | 36 'base/capturemanager.cc', |
37 'base/capturemanager.h', | 37 'base/capturemanager.h', |
38 'base/codec.cc', | 38 'base/codec.cc', |
39 'base/codec.h', | 39 'base/codec.h', |
40 'base/constants.cc', | |
41 'base/constants.h', | |
42 'base/cpuid.cc', | 40 'base/cpuid.cc', |
43 'base/cpuid.h', | 41 'base/cpuid.h', |
44 'base/cryptoparams.h', | 42 'base/cryptoparams.h', |
45 'base/device.h', | 43 'base/device.h', |
46 'base/fakescreencapturerfactory.h', | 44 'base/fakescreencapturerfactory.h', |
47 'base/hybriddataengine.h', | 45 'base/hybriddataengine.h', |
48 'base/mediachannel.h', | 46 'base/mediachannel.h', |
49 'base/mediacommon.h', | 47 'base/mediacommon.h', |
| 48 'base/mediaconstants.cc', |
| 49 'base/mediaconstants.h', |
50 'base/mediaengine.cc', | 50 'base/mediaengine.cc', |
51 'base/mediaengine.h', | 51 'base/mediaengine.h', |
52 'base/rtpdataengine.cc', | 52 'base/rtpdataengine.cc', |
53 'base/rtpdataengine.h', | 53 'base/rtpdataengine.h', |
54 'base/rtpdump.cc', | 54 'base/rtpdump.cc', |
55 'base/rtpdump.h', | 55 'base/rtpdump.h', |
56 'base/rtputils.cc', | 56 'base/rtputils.cc', |
57 'base/rtputils.h', | 57 'base/rtputils.h', |
58 'base/screencastid.h', | 58 'base/screencastid.h', |
59 'base/streamparams.cc', | 59 'base/streamparams.cc', |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 }], | 292 }], |
293 ['OS=="android" and include_internal_device_management==1', { | 293 ['OS=="android" and include_internal_device_management==1', { |
294 'sources': [ | 294 'sources': [ |
295 'devices/mobiledevicemanager.cc', | 295 'devices/mobiledevicemanager.cc', |
296 ], | 296 ], |
297 }], | 297 }], |
298 ], | 298 ], |
299 }, # target rtc_media | 299 }, # target rtc_media |
300 ], # targets. | 300 ], # targets. |
301 } | 301 } |
OLD | NEW |