| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (enable_webrtc || !is_android) { | 8 if (enable_webrtc || !is_android) { |
| 9 jingle_includes = exec_script("//build/gypi_to_gn.py", | |
| 10 [ rebase_path("jingle.gypi") ], | |
| 11 "scope", | |
| 12 [ "jingle.gypi" ]) | |
| 13 | |
| 14 static_library("jingle_glue") { | 9 static_library("jingle_glue") { |
| 15 sources = jingle_includes.jingle_glue_sources | 10 sources = [ |
| 11 "glue/chrome_async_socket.cc", |
| 12 "glue/chrome_async_socket.h", |
| 13 "glue/fake_ssl_client_socket.cc", |
| 14 "glue/fake_ssl_client_socket.h", |
| 15 "glue/proxy_resolving_client_socket.cc", |
| 16 "glue/proxy_resolving_client_socket.h", |
| 17 "glue/resolving_client_socket_factory.h", |
| 18 "glue/task_pump.cc", |
| 19 "glue/task_pump.h", |
| 20 "glue/thread_wrapper.cc", |
| 21 "glue/thread_wrapper.h", |
| 22 "glue/utils.cc", |
| 23 "glue/utils.h", |
| 24 "glue/xmpp_client_socket_factory.cc", |
| 25 "glue/xmpp_client_socket_factory.h", |
| 26 ] |
| 16 public_deps = [ | 27 public_deps = [ |
| 17 "//third_party/libjingle", | 28 "//third_party/libjingle", |
| 18 ] | 29 ] |
| 19 deps = [ | 30 deps = [ |
| 20 "//base", | 31 "//base", |
| 21 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
| 22 "//net", | 33 "//net", |
| 23 ] | 34 ] |
| 24 | 35 |
| 25 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 36 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 ] | 208 ] |
| 198 deps = [ | 209 deps = [ |
| 199 "//base", | 210 "//base", |
| 200 "//net", | 211 "//net", |
| 201 ] | 212 ] |
| 202 } | 213 } |
| 203 | 214 |
| 204 source_set("notifier_test_util") { | 215 source_set("notifier_test_util") { |
| 205 } | 216 } |
| 206 } | 217 } |
| OLD | NEW |