Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: webrtc/api/api_tests.gyp

Issue 1886623002: Add QuicDataChannel and QuicDataTransport classes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix minor mistakes Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 '../build/isolate.gypi', 198 '../build/isolate.gypi',
187 ], 199 ],
188 'sources': [ 200 'sources': [
189 'peerconnection_unittests.isolate', 201 'peerconnection_unittests.isolate',
190 ], 202 ],
191 }, 203 },
192 ], # targets 204 ], # targets
193 }], # test_isolation_mode != "noop" 205 }], # test_isolation_mode != "noop"
194 ], # conditions 206 ], # conditions
195 } 207 }
OLDNEW
« no previous file with comments | « webrtc/api/api.gyp ('k') | webrtc/api/quicdatachannel.h » ('j') | webrtc/api/quicdatachannel.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698