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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'base/videoadapter.h', | 56 'base/videoadapter.h', |
57 'base/videobroadcaster.cc', | 57 'base/videobroadcaster.cc', |
58 'base/videobroadcaster.h', | 58 'base/videobroadcaster.h', |
59 'base/videocapturer.cc', | 59 'base/videocapturer.cc', |
60 'base/videocapturer.h', | 60 'base/videocapturer.h', |
61 'base/videocapturerfactory.h', | 61 'base/videocapturerfactory.h', |
62 'base/videocommon.cc', | 62 'base/videocommon.cc', |
63 'base/videocommon.h', | 63 'base/videocommon.h', |
64 'base/videoframe.cc', | 64 'base/videoframe.cc', |
65 'base/videoframe.h', | 65 'base/videoframe.h', |
| 66 'base/videoframefactory.cc', |
| 67 'base/videoframefactory.h', |
66 'base/videosourcebase.cc', | 68 'base/videosourcebase.cc', |
67 'base/videosourcebase.h', | 69 'base/videosourcebase.h', |
68 'devices/videorendererfactory.h', | 70 'devices/videorendererfactory.h', |
69 'engine/nullwebrtcvideoengine.h', | 71 'engine/nullwebrtcvideoengine.h', |
70 'engine/payload_type_mapper.cc', | 72 'engine/payload_type_mapper.cc', |
71 'engine/payload_type_mapper.h', | 73 'engine/payload_type_mapper.h', |
72 'engine/simulcast.cc', | 74 'engine/simulcast.cc', |
73 'engine/simulcast.h', | 75 'engine/simulcast.h', |
74 'engine/webrtccommon.h', | 76 'engine/webrtccommon.h', |
75 'engine/webrtcmediaengine.cc', | 77 'engine/webrtcmediaengine.cc', |
76 'engine/webrtcmediaengine.h', | 78 'engine/webrtcmediaengine.h', |
77 'engine/webrtcmediaengine.cc', | 79 'engine/webrtcmediaengine.cc', |
78 'engine/webrtcvideocapturer.cc', | 80 'engine/webrtcvideocapturer.cc', |
79 'engine/webrtcvideocapturer.h', | 81 'engine/webrtcvideocapturer.h', |
80 'engine/webrtcvideocapturerfactory.h', | 82 'engine/webrtcvideocapturerfactory.h', |
81 'engine/webrtcvideocapturerfactory.cc', | 83 'engine/webrtcvideocapturerfactory.cc', |
82 'engine/webrtcvideodecoderfactory.h', | 84 'engine/webrtcvideodecoderfactory.h', |
83 'engine/webrtcvideoencoderfactory.h', | 85 'engine/webrtcvideoencoderfactory.h', |
84 'engine/webrtcvideoengine2.cc', | 86 'engine/webrtcvideoengine2.cc', |
85 'engine/webrtcvideoengine2.h', | 87 'engine/webrtcvideoengine2.h', |
86 'engine/webrtcvideoframe.cc', | 88 'engine/webrtcvideoframe.cc', |
87 'engine/webrtcvideoframe.h', | 89 'engine/webrtcvideoframe.h', |
| 90 'engine/webrtcvideoframefactory.cc', |
| 91 'engine/webrtcvideoframefactory.h', |
88 'engine/webrtcvoe.h', | 92 'engine/webrtcvoe.h', |
89 'engine/webrtcvoiceengine.cc', | 93 'engine/webrtcvoiceengine.cc', |
90 'engine/webrtcvoiceengine.h', | 94 'engine/webrtcvoiceengine.h', |
91 'sctp/sctpdataengine.cc', | 95 'sctp/sctpdataengine.cc', |
92 'sctp/sctpdataengine.h', | 96 'sctp/sctpdataengine.h', |
93 ], | 97 ], |
94 # TODO(kjellander): Make the code compile without disabling these flags. | 98 # TODO(kjellander): Make the code compile without disabling these flags. |
95 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 | 99 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 |
96 'cflags': [ | 100 'cflags': [ |
97 '-Wno-deprecated-declarations', | 101 '-Wno-deprecated-declarations', |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'gdi32.lib', | 170 'gdi32.lib', |
167 'strmiids.lib', | 171 'strmiids.lib', |
168 ], | 172 ], |
169 }, | 173 }, |
170 }, | 174 }, |
171 }], | 175 }], |
172 ], | 176 ], |
173 }, # target rtc_media | 177 }, # target rtc_media |
174 ], # targets. | 178 ], # targets. |
175 } | 179 } |
OLD | NEW |