| 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', ], |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'rtc_xmpp', | 13 'target_name': 'rtc_xmpp', |
| 14 'type': 'static_library', | 14 'type': 'static_library', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 '<(webrtc_root)/base/base.gyp:rtc_base', | 16 '<(webrtc_root)/base/base.gyp:rtc_base', |
| 17 '<(webrtc_root)/libjingle/xmllite/xmllite.gyp:rtc_xmllite', | 17 '<(webrtc_root)/libjingle/xmllite/xmllite.gyp:rtc_xmllite', |
| 18 ], | 18 ], |
| 19 'defines': [ | 19 'defines': [ |
| 20 'FEATURE_ENABLE_SSL', | 20 'FEATURE_ENABLE_SSL', |
| 21 ], | 21 ], |
| 22 'cflags_cc!': [ | |
| 23 '-Wnon-virtual-dtor', | |
| 24 ], | |
| 25 'sources': [ | 22 'sources': [ |
| 26 'asyncsocket.h', | 23 'asyncsocket.h', |
| 27 'chatroommodule.h', | 24 'chatroommodule.h', |
| 28 'chatroommoduleimpl.cc', | 25 'chatroommoduleimpl.cc', |
| 29 'constants.cc', | 26 'constants.cc', |
| 30 'constants.h', | 27 'constants.h', |
| 31 'discoitemsquerytask.cc', | 28 'discoitemsquerytask.cc', |
| 32 'discoitemsquerytask.h', | 29 'discoitemsquerytask.h', |
| 33 'hangoutpubsubclient.cc', | 30 'hangoutpubsubclient.cc', |
| 34 'hangoutpubsubclient.h', | 31 'hangoutpubsubclient.h', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'xmppsocket.cc', | 88 'xmppsocket.cc', |
| 92 'xmppsocket.h', | 89 'xmppsocket.h', |
| 93 'xmppstanzaparser.cc', | 90 'xmppstanzaparser.cc', |
| 94 'xmppstanzaparser.h', | 91 'xmppstanzaparser.h', |
| 95 'xmpptask.cc', | 92 'xmpptask.cc', |
| 96 'xmpptask.h', | 93 'xmpptask.h', |
| 97 'xmppthread.cc', | 94 'xmppthread.cc', |
| 98 'xmppthread.h', | 95 'xmppthread.h', |
| 99 ], | 96 ], |
| 100 'direct_dependent_settings': { | 97 'direct_dependent_settings': { |
| 101 'cflags_cc!': [ | |
| 102 '-Wnon-virtual-dtor', | |
| 103 ], | |
| 104 'defines': [ | 98 'defines': [ |
| 105 'FEATURE_ENABLE_SSL', | 99 'FEATURE_ENABLE_SSL', |
| 106 'FEATURE_ENABLE_VOICEMAIL', | 100 'FEATURE_ENABLE_VOICEMAIL', |
| 107 ], | 101 ], |
| 108 }, | 102 }, |
| 109 'conditions': [ | 103 'conditions': [ |
| 110 ['build_expat==1', { | 104 ['build_expat==1', { |
| 111 'dependencies': [ | 105 'dependencies': [ |
| 112 '<(DEPTH)/third_party/expat/expat.gyp:expat', | 106 '<(DEPTH)/third_party/expat/expat.gyp:expat', |
| 113 ], | 107 ], |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 'xmpplogintask_unittest.cc', | 160 'xmpplogintask_unittest.cc', |
| 167 'xmppstanzaparser_unittest.cc', | 161 'xmppstanzaparser_unittest.cc', |
| 168 ], | 162 ], |
| 169 }, | 163 }, |
| 170 }, # target rtc_xmpp_unittest | 164 }, # target rtc_xmpp_unittest |
| 171 ], # targets | 165 ], # targets |
| 172 }], # include_tests==1 | 166 }], # include_tests==1 |
| 173 ], # conditions | 167 ], # conditions |
| 174 } | 168 } |
| 175 | 169 |
| OLD | NEW |