| 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", | 9 jingle_includes = exec_script("//build/gypi_to_gn.py", |
| 10 [ rebase_path("jingle.gypi") ], | 10 [ rebase_path("jingle.gypi") ], |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "notifier/listener/xml_element_util.h", | 85 "notifier/listener/xml_element_util.h", |
| 86 "notifier/listener/xmpp_push_client.cc", | 86 "notifier/listener/xmpp_push_client.cc", |
| 87 "notifier/listener/xmpp_push_client.h", | 87 "notifier/listener/xmpp_push_client.h", |
| 88 ] | 88 ] |
| 89 defines = [ "_CRT_SECURE_NO_WARNINGS" ] | 89 defines = [ "_CRT_SECURE_NO_WARNINGS" ] |
| 90 | 90 |
| 91 public_deps = [ | 91 public_deps = [ |
| 92 "//third_party/libjingle", | 92 "//third_party/libjingle", |
| 93 ] | 93 ] |
| 94 deps = [ | 94 deps = [ |
| 95 ":jingle_glue", |
| 95 "//base", | 96 "//base", |
| 96 "//net", | 97 "//net", |
| 97 "//third_party/expat", | 98 "//third_party/expat", |
| 98 "//url", | 99 "//url", |
| 99 ":jingle_glue", | |
| 100 ] | 100 ] |
| 101 } | 101 } |
| 102 | 102 |
| 103 # GYP version: jingle/jingle.gyp:notifier_test_util | 103 # GYP version: jingle/jingle.gyp:notifier_test_util |
| 104 static_library("notifier_test_util") { | 104 static_library("notifier_test_util") { |
| 105 testonly = true | 105 testonly = true |
| 106 sources = [ | 106 sources = [ |
| 107 "notifier/base/fake_base_task.cc", | 107 "notifier/base/fake_base_task.cc", |
| 108 "notifier/base/fake_base_task.h", | 108 "notifier/base/fake_base_task.h", |
| 109 "notifier/listener/fake_push_client.cc", | 109 "notifier/listener/fake_push_client.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 ] | 207 ] |
| 208 deps = [ | 208 deps = [ |
| 209 "//base", | 209 "//base", |
| 210 "//net", | 210 "//net", |
| 211 ] | 211 ] |
| 212 } | 212 } |
| 213 | 213 |
| 214 source_set("notifier_test_util") { | 214 source_set("notifier_test_util") { |
| 215 } | 215 } |
| 216 } | 216 } |
| OLD | NEW |