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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'base/videoframefactory.cc', | 74 'base/videoframefactory.cc', |
75 'base/videoframefactory.h', | 75 'base/videoframefactory.h', |
76 'base/videorenderer.h', | 76 'base/videorenderer.h', |
77 'base/yuvframegenerator.cc', | 77 'base/yuvframegenerator.cc', |
78 'base/yuvframegenerator.h', | 78 'base/yuvframegenerator.h', |
79 'devices/deviceinfo.h', | 79 'devices/deviceinfo.h', |
80 'devices/devicemanager.cc', | 80 'devices/devicemanager.cc', |
81 'devices/devicemanager.h', | 81 'devices/devicemanager.h', |
82 'devices/dummydevicemanager.h', | 82 'devices/dummydevicemanager.h', |
83 'devices/videorendererfactory.h', | 83 'devices/videorendererfactory.h', |
| 84 'engine/nullwebrtcvideoengine.h', |
| 85 'engine/simulcast.cc', |
| 86 'engine/simulcast.h', |
| 87 'engine/webrtccommon.h', |
| 88 'engine/webrtcmediaengine.cc', |
| 89 'engine/webrtcmediaengine.h', |
| 90 'engine/webrtcmediaengine.cc', |
| 91 'engine/webrtcvideocapturer.cc', |
| 92 'engine/webrtcvideocapturer.h', |
| 93 'engine/webrtcvideocapturerfactory.h', |
| 94 'engine/webrtcvideocapturerfactory.cc', |
| 95 'engine/webrtcvideodecoderfactory.h', |
| 96 'engine/webrtcvideoencoderfactory.h', |
| 97 'engine/webrtcvideoengine2.cc', |
| 98 'engine/webrtcvideoengine2.h', |
| 99 'engine/webrtcvideoframe.cc', |
| 100 'engine/webrtcvideoframe.h', |
| 101 'engine/webrtcvideoframefactory.cc', |
| 102 'engine/webrtcvideoframefactory.h', |
| 103 'engine/webrtcvoe.h', |
| 104 'engine/webrtcvoiceengine.cc', |
| 105 'engine/webrtcvoiceengine.h', |
84 'sctp/sctpdataengine.cc', | 106 'sctp/sctpdataengine.cc', |
85 'sctp/sctpdataengine.h', | 107 'sctp/sctpdataengine.h', |
86 'webrtc/nullwebrtcvideoengine.h', | |
87 'webrtc/simulcast.cc', | |
88 'webrtc/simulcast.h', | |
89 'webrtc/webrtccommon.h', | |
90 'webrtc/webrtcmediaengine.cc', | |
91 'webrtc/webrtcmediaengine.h', | |
92 'webrtc/webrtcmediaengine.cc', | |
93 'webrtc/webrtcvideocapturer.cc', | |
94 'webrtc/webrtcvideocapturer.h', | |
95 'webrtc/webrtcvideocapturerfactory.h', | |
96 'webrtc/webrtcvideocapturerfactory.cc', | |
97 'webrtc/webrtcvideodecoderfactory.h', | |
98 'webrtc/webrtcvideoencoderfactory.h', | |
99 'webrtc/webrtcvideoengine2.cc', | |
100 'webrtc/webrtcvideoengine2.h', | |
101 'webrtc/webrtcvideoframe.cc', | |
102 'webrtc/webrtcvideoframe.h', | |
103 'webrtc/webrtcvideoframefactory.cc', | |
104 'webrtc/webrtcvideoframefactory.h', | |
105 'webrtc/webrtcvoe.h', | |
106 'webrtc/webrtcvoiceengine.cc', | |
107 'webrtc/webrtcvoiceengine.h', | |
108 ], | 108 ], |
109 # TODO(kjellander): Make the code compile without disabling these flags. | 109 # TODO(kjellander): Make the code compile without disabling these flags. |
110 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 | 110 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 |
111 'cflags': [ | 111 'cflags': [ |
112 '-Wno-deprecated-declarations', | 112 '-Wno-deprecated-declarations', |
113 ], | 113 ], |
114 'cflags!': [ | 114 'cflags!': [ |
115 '-Wextra', | 115 '-Wextra', |
116 ], | 116 ], |
117 'cflags_cc!': [ | 117 'cflags_cc!': [ |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 }], | 278 }], |
279 ['OS=="android"', { | 279 ['OS=="android"', { |
280 'sources': [ | 280 'sources': [ |
281 'devices/mobiledevicemanager.cc', | 281 'devices/mobiledevicemanager.cc', |
282 ], | 282 ], |
283 }], | 283 }], |
284 ], | 284 ], |
285 }, # target rtc_media | 285 }, # target rtc_media |
286 ], # targets. | 286 ], # targets. |
287 } | 287 } |
OLD | NEW |