| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 125 } |
| 126 } | 126 } |
| 127 | 127 |
| 128 rtc_test("libjingle_xmpp_unittests") { | 128 rtc_test("libjingle_xmpp_unittests") { |
| 129 configs += [ ":libjingle_xmpp_unittests_config" ] | 129 configs += [ ":libjingle_xmpp_unittests_config" ] |
| 130 | 130 |
| 131 deps = [ | 131 deps = [ |
| 132 ":libjingle_xmpp", | 132 ":libjingle_xmpp", |
| 133 ":rtc_task_runner", | 133 ":rtc_task_runner", |
| 134 | 134 |
| 135 "//base/test:run_all_unittests", |
| 136 "//base/test:test_support", |
| 135 # TODO(kjellander): Refactor/remove this dependency. It is needed by | 137 # TODO(kjellander): Refactor/remove this dependency. It is needed by |
| 136 # third_party/webrtc_overrides/webrtc/base/win32socketinit.cc. | 138 # third_party/webrtc_overrides/webrtc/base/win32socketinit.cc. |
| 137 "//net", | 139 "//net", |
| 138 "//testing/gtest", | 140 "//testing/gtest", |
| 139 ] | 141 ] |
| 140 | 142 |
| 141 sources = [ | 143 sources = [ |
| 142 "run_all_unittests.cc", | |
| 143 "task_runner/task_unittest.cc", | 144 "task_runner/task_unittest.cc", |
| 144 "xmllite/qname_unittest.cc", | 145 "xmllite/qname_unittest.cc", |
| 145 "xmllite/xmlbuilder_unittest.cc", | 146 "xmllite/xmlbuilder_unittest.cc", |
| 146 "xmllite/xmlelement_unittest.cc", | 147 "xmllite/xmlelement_unittest.cc", |
| 147 "xmllite/xmlnsstack_unittest.cc", | 148 "xmllite/xmlnsstack_unittest.cc", |
| 148 "xmllite/xmlparser_unittest.cc", | 149 "xmllite/xmlparser_unittest.cc", |
| 149 "xmllite/xmlprinter_unittest.cc", | 150 "xmllite/xmlprinter_unittest.cc", |
| 150 "xmpp/fakexmppclient.h", | 151 "xmpp/fakexmppclient.h", |
| 151 "xmpp/jid_unittest.cc", | 152 "xmpp/jid_unittest.cc", |
| 152 "xmpp/util_unittest.cc", | 153 "xmpp/util_unittest.cc", |
| 153 "xmpp/util_unittest.h", | 154 "xmpp/util_unittest.h", |
| 154 "xmpp/xmppengine_unittest.cc", | 155 "xmpp/xmppengine_unittest.cc", |
| 155 "xmpp/xmpplogintask_unittest.cc", | 156 "xmpp/xmpplogintask_unittest.cc", |
| 156 "xmpp/xmppstanzaparser_unittest.cc", | 157 "xmpp/xmppstanzaparser_unittest.cc", |
| 157 ] | 158 ] |
| 158 } | 159 } |
| OLD | NEW |