OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 }], | 129 }], |
130 ['OS=="android"', { | 130 ['OS=="android"', { |
131 'cflags!': [ | 131 'cflags!': [ |
132 '-Wextra', | 132 '-Wextra', |
133 '-Wall', | 133 '-Wall', |
134 ], | 134 ], |
135 }], | 135 }], |
136 ], | 136 ], |
137 }, | 137 }, |
138 ], # targets | 138 ], # targets |
139 'conditions': [ | |
140 ['include_tests==1', { | |
141 'targets' : [ | |
142 { | |
143 'target_name': 'rtc_xmpp_unittest', | |
144 'type': 'none', | |
145 'direct_dependent_settings': { | |
146 'sources': [ | |
147 'fakexmppclient.h', | |
148 'hangoutpubsubclient_unittest.cc', | |
149 'jid_unittest.cc', | |
150 'mucroomconfigtask_unittest.cc', | |
151 'mucroomdiscoverytask_unittest.cc', | |
152 'mucroomlookuptask_unittest.cc', | |
153 'mucroomuniquehangoutidtask_unittest.cc', | |
154 'pingtask_unittest.cc', | |
155 'pubsubclient_unittest.cc', | |
156 'pubsubtasks_unittest.cc', | |
157 'util_unittest.cc', | |
158 'util_unittest.h', | |
159 'xmppengine_unittest.cc', | |
160 'xmpplogintask_unittest.cc', | |
161 'xmppstanzaparser_unittest.cc', | |
162 ], | |
163 }, | |
164 }, # target rtc_xmpp_unittest | |
165 ], # targets | |
166 }], # include_tests==1 | |
167 ], # conditions | |
168 } | 139 } |
169 | 140 |
OLD | NEW |