| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # TODO(kjellander): Remove remaining dependencies on the WebRTC codebase. | 5 # TODO(kjellander): Remove remaining dependencies on the WebRTC codebase. |
| 6 import("../webrtc/build/webrtc.gni") | 6 import("../webrtc/webrtc.gni") |
| 7 | 7 |
| 8 group("libjingle_xmpp") { | 8 group("libjingle_xmpp") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":rtc_xmllite", | 10 ":rtc_xmllite", |
| 11 ":rtc_xmpp", | 11 ":rtc_xmpp", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 rtc_static_library("rtc_xmllite") { | 15 rtc_static_library("rtc_xmllite") { |
| 16 sources = [ | 16 sources = [ |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 "xmllite/xmlprinter_unittest.cc", | 135 "xmllite/xmlprinter_unittest.cc", |
| 136 "xmpp/fakexmppclient.h", | 136 "xmpp/fakexmppclient.h", |
| 137 "xmpp/jid_unittest.cc", | 137 "xmpp/jid_unittest.cc", |
| 138 "xmpp/util_unittest.cc", | 138 "xmpp/util_unittest.cc", |
| 139 "xmpp/util_unittest.h", | 139 "xmpp/util_unittest.h", |
| 140 "xmpp/xmppengine_unittest.cc", | 140 "xmpp/xmppengine_unittest.cc", |
| 141 "xmpp/xmpplogintask_unittest.cc", | 141 "xmpp/xmpplogintask_unittest.cc", |
| 142 "xmpp/xmppstanzaparser_unittest.cc", | 142 "xmpp/xmppstanzaparser_unittest.cc", |
| 143 ] | 143 ] |
| 144 } | 144 } |
| OLD | NEW |