| 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/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", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "xmpp/xmppstanzaparser.cc", | 85 "xmpp/xmppstanzaparser.cc", |
| 86 "xmpp/xmppstanzaparser.h", | 86 "xmpp/xmppstanzaparser.h", |
| 87 "xmpp/xmpptask.cc", | 87 "xmpp/xmpptask.cc", |
| 88 "xmpp/xmpptask.h", | 88 "xmpp/xmpptask.h", |
| 89 ] | 89 ] |
| 90 | 90 |
| 91 defines = [] | 91 defines = [] |
| 92 | 92 |
| 93 deps = [ | 93 deps = [ |
| 94 ":rtc_xmllite", | 94 ":rtc_xmllite", |
| 95 "//third_party/webrtc/base:rtc_base", | 95 "//third_party/webrtc/base:rtc_base_approved", |
| 96 ] | 96 ] |
| 97 public_deps = [ | 97 public_deps = [ |
| 98 ":rtc_task_runner", | 98 ":rtc_task_runner", |
| 99 "//third_party/expat", | 99 "//third_party/expat", |
| 100 ] | 100 ] |
| 101 configs += [ ":rtc_xmpp_warnings_config" ] | 101 configs += [ ":rtc_xmpp_warnings_config" ] |
| 102 | 102 |
| 103 if (is_nacl) { | 103 if (is_nacl) { |
| 104 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 104 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 105 } | 105 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 "xmllite/xmlprinter_unittest.cc", | 149 "xmllite/xmlprinter_unittest.cc", |
| 150 "xmpp/fakexmppclient.h", | 150 "xmpp/fakexmppclient.h", |
| 151 "xmpp/jid_unittest.cc", | 151 "xmpp/jid_unittest.cc", |
| 152 "xmpp/util_unittest.cc", | 152 "xmpp/util_unittest.cc", |
| 153 "xmpp/util_unittest.h", | 153 "xmpp/util_unittest.h", |
| 154 "xmpp/xmppengine_unittest.cc", | 154 "xmpp/xmppengine_unittest.cc", |
| 155 "xmpp/xmpplogintask_unittest.cc", | 155 "xmpp/xmpplogintask_unittest.cc", |
| 156 "xmpp/xmppstanzaparser_unittest.cc", | 156 "xmpp/xmppstanzaparser_unittest.cc", |
| 157 ] | 157 ] |
| 158 } | 158 } |
| OLD | NEW |