| 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/xmllite", |
| 104 "//third_party/webrtc/libjingle/xmpp", | 104 "//third_party/xmpp", |
| 105 ] | 105 ] |
| 106 deps = [ | 106 deps = [ |
| 107 ":jingle_glue", | 107 ":jingle_glue", |
| 108 "//base", | 108 "//base", |
| 109 "//net", | 109 "//net", |
| 110 "//third_party/expat", | 110 "//third_party/expat", |
| 111 "//url", | 111 "//url", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| 114 | 114 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 # Should we -std=c++0x or -std=gnu++0x? | 166 # Should we -std=c++0x or -std=gnu++0x? |
| 167 "glue/chrome_async_socket_unittest.cc", | 167 "glue/chrome_async_socket_unittest.cc", |
| 168 "notifier/base/xmpp_connection_unittest.cc", | 168 "notifier/base/xmpp_connection_unittest.cc", |
| 169 ] | 169 ] |
| 170 } | 170 } |
| 171 | 171 |
| 172 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 172 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 173 | 173 |
| 174 public_deps = [ | 174 public_deps = [ |
| 175 "//third_party/libjingle", | 175 "//third_party/libjingle", |
| 176 "//third_party/webrtc/libjingle/xmllite", | 176 "//third_party/xmllite", |
| 177 "//third_party/webrtc/libjingle/xmpp", | 177 "//third_party/xmpp", |
| 178 ] | 178 ] |
| 179 deps = [ | 179 deps = [ |
| 180 ":jingle_glue", | 180 ":jingle_glue", |
| 181 ":notifier", | 181 ":notifier", |
| 182 ":notifier_test_util", | 182 ":notifier_test_util", |
| 183 "//base", | 183 "//base", |
| 184 "//base/test:run_all_unittests", | 184 "//base/test:run_all_unittests", |
| 185 "//base/test:test_support", | 185 "//base/test:test_support", |
| 186 "//net", | 186 "//net", |
| 187 "//net:test_support", | 187 "//net:test_support", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 209 ] | 209 ] |
| 210 deps = [ | 210 deps = [ |
| 211 "//base", | 211 "//base", |
| 212 "//net", | 212 "//net", |
| 213 ] | 213 ] |
| 214 } | 214 } |
| 215 | 215 |
| 216 source_set("notifier_test_util") { | 216 source_set("notifier_test_util") { |
| 217 } | 217 } |
| 218 } | 218 } |
| OLD | NEW |