| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (enable_webrtc || !is_android) { | 9 if (enable_webrtc || !is_android) { |
| 10 static_library("jingle_glue") { | 10 static_library("jingle_glue") { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "notifier/listener/send_ping_task.h", | 93 "notifier/listener/send_ping_task.h", |
| 94 "notifier/listener/xml_element_util.cc", | 94 "notifier/listener/xml_element_util.cc", |
| 95 "notifier/listener/xml_element_util.h", | 95 "notifier/listener/xml_element_util.h", |
| 96 "notifier/listener/xmpp_push_client.cc", | 96 "notifier/listener/xmpp_push_client.cc", |
| 97 "notifier/listener/xmpp_push_client.h", | 97 "notifier/listener/xmpp_push_client.h", |
| 98 ] | 98 ] |
| 99 defines = [ "_CRT_SECURE_NO_WARNINGS" ] | 99 defines = [ "_CRT_SECURE_NO_WARNINGS" ] |
| 100 | 100 |
| 101 public_deps = [ | 101 public_deps = [ |
| 102 "//third_party/libjingle", | 102 "//third_party/libjingle", |
| 103 "//third_party/webrtc/libjingle/xmllite", | 103 "//third_party/libjingle_xmpp", |
| 104 "//third_party/webrtc/libjingle/xmpp", | |
| 105 ] | 104 ] |
| 106 deps = [ | 105 deps = [ |
| 107 ":jingle_glue", | 106 ":jingle_glue", |
| 108 "//base", | 107 "//base", |
| 109 "//net", | 108 "//net", |
| 110 "//third_party/expat", | 109 "//third_party/expat", |
| 111 "//url", | 110 "//url", |
| 112 ] | 111 ] |
| 113 } | 112 } |
| 114 | 113 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 # Should we -std=c++0x or -std=gnu++0x? | 165 # Should we -std=c++0x or -std=gnu++0x? |
| 167 "glue/chrome_async_socket_unittest.cc", | 166 "glue/chrome_async_socket_unittest.cc", |
| 168 "notifier/base/xmpp_connection_unittest.cc", | 167 "notifier/base/xmpp_connection_unittest.cc", |
| 169 ] | 168 ] |
| 170 } | 169 } |
| 171 | 170 |
| 172 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 171 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 173 | 172 |
| 174 public_deps = [ | 173 public_deps = [ |
| 175 "//third_party/libjingle", | 174 "//third_party/libjingle", |
| 176 "//third_party/webrtc/libjingle/xmllite", | 175 "//third_party/libjingle_xmpp", |
| 177 "//third_party/webrtc/libjingle/xmpp", | |
| 178 ] | 176 ] |
| 179 deps = [ | 177 deps = [ |
| 180 ":jingle_glue", | 178 ":jingle_glue", |
| 181 ":notifier", | 179 ":notifier", |
| 182 ":notifier_test_util", | 180 ":notifier_test_util", |
| 183 "//base", | 181 "//base", |
| 184 "//base/test:run_all_unittests", | 182 "//base/test:run_all_unittests", |
| 185 "//base/test:test_support", | 183 "//base/test:test_support", |
| 186 "//net", | 184 "//net", |
| 187 "//net:test_support", | 185 "//net:test_support", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 209 ] | 207 ] |
| 210 deps = [ | 208 deps = [ |
| 211 "//base", | 209 "//base", |
| 212 "//net", | 210 "//net", |
| 213 ] | 211 ] |
| 214 } | 212 } |
| 215 | 213 |
| 216 source_set("notifier_test_util") { | 214 source_set("notifier_test_util") { |
| 217 } | 215 } |
| 218 } | 216 } |
| OLD | NEW |