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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'base/videobroadcaster.cc', | 54 'base/videobroadcaster.cc', |
55 'base/videobroadcaster.h', | 55 'base/videobroadcaster.h', |
56 'base/videocapturer.cc', | 56 'base/videocapturer.cc', |
57 'base/videocapturer.h', | 57 'base/videocapturer.h', |
58 'base/videocapturerfactory.h', | 58 'base/videocapturerfactory.h', |
59 'base/videocommon.cc', | 59 'base/videocommon.cc', |
60 'base/videocommon.h', | 60 'base/videocommon.h', |
61 'base/videoframe.h', | 61 'base/videoframe.h', |
62 'base/videosourcebase.cc', | 62 'base/videosourcebase.cc', |
63 'base/videosourcebase.h', | 63 'base/videosourcebase.h', |
64 'devices/videorendererfactory.h', | |
65 'engine/nullwebrtcvideoengine.h', | 64 'engine/nullwebrtcvideoengine.h', |
66 'engine/payload_type_mapper.cc', | 65 'engine/payload_type_mapper.cc', |
67 'engine/payload_type_mapper.h', | 66 'engine/payload_type_mapper.h', |
68 'engine/simulcast.cc', | 67 'engine/simulcast.cc', |
69 'engine/simulcast.h', | 68 'engine/simulcast.h', |
70 'engine/webrtccommon.h', | 69 'engine/webrtccommon.h', |
71 'engine/webrtcmediaengine.cc', | 70 'engine/webrtcmediaengine.cc', |
72 'engine/webrtcmediaengine.h', | 71 'engine/webrtcmediaengine.h', |
73 'engine/webrtcmediaengine.cc', | 72 'engine/webrtcmediaengine.cc', |
74 'engine/webrtcvideocapturer.cc', | 73 'engine/webrtcvideocapturer.cc', |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 }], | 141 }], |
143 ['OS=="linux" and use_gtk==1', { | 142 ['OS=="linux" and use_gtk==1', { |
144 'sources': [ | 143 'sources': [ |
145 'devices/gtkvideorenderer.cc', | 144 'devices/gtkvideorenderer.cc', |
146 'devices/gtkvideorenderer.h', | 145 'devices/gtkvideorenderer.h', |
147 ], | 146 ], |
148 'cflags': [ | 147 'cflags': [ |
149 '<!@(pkg-config --cflags gobject-2.0 gthread-2.0 gtk+-2.0)', | 148 '<!@(pkg-config --cflags gobject-2.0 gthread-2.0 gtk+-2.0)', |
150 ], | 149 ], |
151 }], | 150 }], |
152 ['OS=="win"', { | |
153 'sources': [ | |
154 'devices/gdivideorenderer.cc', | |
155 'devices/gdivideorenderer.h', | |
156 ], | |
157 'msvs_settings': { | |
158 'VCLibrarianTool': { | |
159 'AdditionalDependencies': [ | |
160 'd3d9.lib', | |
161 'gdi32.lib', | |
162 'strmiids.lib', | |
163 ], | |
164 }, | |
165 }, | |
166 }], | |
167 ], | 151 ], |
168 }, # target rtc_media | 152 }, # target rtc_media |
169 ], # targets. | 153 ], # targets. |
170 } | 154 } |
OLD | NEW |