| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 deps = [ | 106 deps = [ |
| 107 ":notifier", | 107 ":notifier", |
| 108 "//base", | 108 "//base", |
| 109 "//testing/gmock", | 109 "//testing/gmock", |
| 110 ] | 110 ] |
| 111 } | 111 } |
| 112 | 112 |
| 113 # GYP version: jingle/jingle.gyp:jingle_unittests | 113 # GYP version: jingle/jingle.gyp:jingle_unittests |
| 114 test("jingle_unittests") { | 114 test("jingle_unittests") { |
| 115 sources = [ | 115 sources = [ |
| 116 "glue/channel_socket_adapter_unittest.cc", | |
| 117 "glue/chrome_async_socket_unittest.cc", | 116 "glue/chrome_async_socket_unittest.cc", |
| 118 "glue/fake_ssl_client_socket_unittest.cc", | 117 "glue/fake_ssl_client_socket_unittest.cc", |
| 119 "glue/jingle_glue_mock_objects.cc", | 118 "glue/jingle_glue_mock_objects.cc", |
| 120 "glue/jingle_glue_mock_objects.h", | 119 "glue/jingle_glue_mock_objects.h", |
| 121 "glue/logging_unittest.cc", | 120 "glue/logging_unittest.cc", |
| 122 "glue/mock_task.cc", | 121 "glue/mock_task.cc", |
| 123 "glue/mock_task.h", | 122 "glue/mock_task.h", |
| 124 "glue/proxy_resolving_client_socket_unittest.cc", | 123 "glue/proxy_resolving_client_socket_unittest.cc", |
| 125 "glue/pseudotcp_adapter_unittest.cc", | |
| 126 "glue/task_pump_unittest.cc", | 124 "glue/task_pump_unittest.cc", |
| 127 "glue/thread_wrapper_unittest.cc", | 125 "glue/thread_wrapper_unittest.cc", |
| 128 "notifier/base/weak_xmpp_client_unittest.cc", | 126 "notifier/base/weak_xmpp_client_unittest.cc", |
| 129 "notifier/base/xmpp_connection_unittest.cc", | 127 "notifier/base/xmpp_connection_unittest.cc", |
| 130 "notifier/communicator/connection_settings_unittest.cc", | 128 "notifier/communicator/connection_settings_unittest.cc", |
| 131 "notifier/communicator/login_settings_unittest.cc", | 129 "notifier/communicator/login_settings_unittest.cc", |
| 132 "notifier/communicator/single_login_attempt_unittest.cc", | 130 "notifier/communicator/single_login_attempt_unittest.cc", |
| 133 "notifier/listener/non_blocking_push_client_unittest.cc", | 131 "notifier/listener/non_blocking_push_client_unittest.cc", |
| 134 "notifier/listener/notification_defines_unittest.cc", | 132 "notifier/listener/notification_defines_unittest.cc", |
| 135 "notifier/listener/push_client_unittest.cc", | 133 "notifier/listener/push_client_unittest.cc", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 ] | 187 ] |
| 190 deps = [ | 188 deps = [ |
| 191 "//base", | 189 "//base", |
| 192 "//net", | 190 "//net", |
| 193 ] | 191 ] |
| 194 } | 192 } |
| 195 | 193 |
| 196 source_set("notifier_test_util") { | 194 source_set("notifier_test_util") { |
| 197 } | 195 } |
| 198 } | 196 } |
| OLD | NEW |