OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 'VCCLCompilerTool': { | 106 'VCCLCompilerTool': { |
107 'AdditionalOptions': [ | 107 'AdditionalOptions': [ |
108 # Disable warnings failing when compiling with Clang on Windows. | 108 # Disable warnings failing when compiling with Clang on Windows. |
109 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 | 109 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 |
110 '-Wno-sign-compare', | 110 '-Wno-sign-compare', |
111 '-Wno-unused-function', | 111 '-Wno-unused-function', |
112 ], | 112 ], |
113 }, | 113 }, |
114 }, | 114 }, |
115 }], | 115 }], |
| 116 ['use_quic==1', { |
| 117 'dependencies': [ |
| 118 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', |
| 119 ], |
| 120 'sources': [ |
| 121 'quicdatachannel_unittest.cc', |
| 122 'quicdatatransport_unittest.cc', |
| 123 ], |
| 124 'export_dependent_settings': [ |
| 125 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', |
| 126 ], |
| 127 }], |
116 ], # conditions | 128 ], # conditions |
117 }, # target peerconnection_unittests | 129 }, # target peerconnection_unittests |
118 ], # targets | 130 ], # targets |
119 'conditions': [ | 131 'conditions': [ |
120 ['OS=="android"', { | 132 ['OS=="android"', { |
121 'targets': [ | 133 'targets': [ |
122 { | 134 { |
123 'target_name': 'libjingle_peerconnection_android_unittest', | 135 'target_name': 'libjingle_peerconnection_android_unittest', |
124 'type': 'none', | 136 'type': 'none', |
125 'dependencies': [ | 137 'dependencies': [ |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 '../build/isolate.gypi', | 227 '../build/isolate.gypi', |
216 ], | 228 ], |
217 'sources': [ | 229 'sources': [ |
218 'peerconnection_unittests.isolate', | 230 'peerconnection_unittests.isolate', |
219 ], | 231 ], |
220 }, | 232 }, |
221 ], # targets | 233 ], # targets |
222 }], # test_isolation_mode != "noop" | 234 }], # test_isolation_mode != "noop" |
223 ], # conditions | 235 ], # conditions |
224 } | 236 } |
OLD | NEW |