| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, # variables | 8 }, # variables |
| 9 'targets': [ | 9 'targets': [ |
| 10 # A library of various utils for integration with libjingle. | 10 # A library of various utils for integration with libjingle. |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 '../base/base.gyp:base', | 149 '../base/base.gyp:base', |
| 150 ], | 150 ], |
| 151 }, | 151 }, |
| 152 { | 152 { |
| 153 'target_name': 'jingle_unittests', | 153 'target_name': 'jingle_unittests', |
| 154 'type': 'executable', | 154 'type': 'executable', |
| 155 'sources': [ | 155 'sources': [ |
| 156 'glue/channel_socket_adapter_unittest.cc', | 156 'glue/channel_socket_adapter_unittest.cc', |
| 157 'glue/jingle_glue_mock_objects.cc', | 157 'glue/jingle_glue_mock_objects.cc', |
| 158 'glue/jingle_glue_mock_objects.h', | 158 'glue/jingle_glue_mock_objects.h', |
| 159 'glue/logging_unittest.cc', |
| 159 'glue/pseudotcp_adapter_unittest.cc', | 160 'glue/pseudotcp_adapter_unittest.cc', |
| 160 'glue/thread_wrapper_unittest.cc', | 161 'glue/thread_wrapper_unittest.cc', |
| 161 'notifier/base/chrome_async_socket_unittest.cc', | 162 'notifier/base/chrome_async_socket_unittest.cc', |
| 162 'notifier/base/fake_ssl_client_socket_unittest.cc', | 163 'notifier/base/fake_ssl_client_socket_unittest.cc', |
| 163 'notifier/base/proxy_resolving_client_socket_unittest.cc', | 164 'notifier/base/proxy_resolving_client_socket_unittest.cc', |
| 164 'notifier/base/task_pump_unittest.cc', | 165 'notifier/base/task_pump_unittest.cc', |
| 165 'notifier/base/xmpp_connection_unittest.cc', | 166 'notifier/base/xmpp_connection_unittest.cc', |
| 166 'notifier/base/weak_xmpp_client_unittest.cc', | 167 'notifier/base/weak_xmpp_client_unittest.cc', |
| 167 'notifier/communicator/xmpp_connection_generator_unittest.cc', | 168 'notifier/communicator/xmpp_connection_generator_unittest.cc', |
| 168 'notifier/listener/mediator_thread_mock.cc', | 169 'notifier/listener/mediator_thread_mock.cc', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 186 '../base/base.gyp:test_support_base', | 187 '../base/base.gyp:test_support_base', |
| 187 '../net/net.gyp:net', | 188 '../net/net.gyp:net', |
| 188 '../net/net.gyp:net_test_support', | 189 '../net/net.gyp:net_test_support', |
| 189 '../testing/gmock.gyp:gmock', | 190 '../testing/gmock.gyp:gmock', |
| 190 '../testing/gtest.gyp:gtest', | 191 '../testing/gtest.gyp:gtest', |
| 191 '../third_party/libjingle/libjingle.gyp:libjingle', | 192 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 192 ], | 193 ], |
| 193 }, | 194 }, |
| 194 ], | 195 ], |
| 195 } | 196 } |
| OLD | NEW |