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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'remoting_test_common', | 8 'target_name': 'remoting_test_common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 23 matching lines...) Expand all Loading... |
34 'protocol/fake_session.cc', | 34 'protocol/fake_session.cc', |
35 'protocol/fake_session.h', | 35 'protocol/fake_session.h', |
36 'protocol/fake_stream_socket.cc', | 36 'protocol/fake_stream_socket.cc', |
37 'protocol/fake_stream_socket.h', | 37 'protocol/fake_stream_socket.h', |
38 'protocol/protocol_mock_objects.cc', | 38 'protocol/protocol_mock_objects.cc', |
39 'protocol/protocol_mock_objects.h', | 39 'protocol/protocol_mock_objects.h', |
40 'signaling/fake_signal_strategy.cc', | 40 'signaling/fake_signal_strategy.cc', |
41 'signaling/fake_signal_strategy.h', | 41 'signaling/fake_signal_strategy.h', |
42 'signaling/mock_signal_strategy.cc', | 42 'signaling/mock_signal_strategy.cc', |
43 'signaling/mock_signal_strategy.h', | 43 'signaling/mock_signal_strategy.h', |
| 44 'test/access_token_fetcher.cc', |
| 45 'test/app_remoting_test_driver_environment.cc', |
| 46 'test/fake_access_token_fetcher.cc', |
44 'test/fake_network_dispatcher.cc', | 47 'test/fake_network_dispatcher.cc', |
45 'test/fake_network_dispatcher.h', | 48 'test/fake_network_dispatcher.h', |
46 'test/fake_network_manager.cc', | 49 'test/fake_network_manager.cc', |
47 'test/fake_network_manager.h', | 50 'test/fake_network_manager.h', |
48 'test/fake_port_allocator.cc', | 51 'test/fake_port_allocator.cc', |
49 'test/fake_port_allocator.h', | 52 'test/fake_port_allocator.h', |
50 'test/fake_socket_factory.cc', | 53 'test/fake_socket_factory.cc', |
51 'test/fake_socket_factory.h', | 54 'test/fake_socket_factory.h', |
52 'test/leaky_bucket.cc', | 55 'test/leaky_bucket.cc', |
53 'test/leaky_bucket.h', | 56 'test/leaky_bucket.h', |
| 57 'test/mock_access_token_fetcher.cc', |
| 58 'test/refresh_token_store.cc', |
54 ], | 59 ], |
55 'conditions': [ | 60 'conditions': [ |
56 ['enable_remoting_host == 0', { | 61 ['enable_remoting_host == 0', { |
57 'dependencies!': [ | 62 'dependencies!': [ |
58 'remoting_host', | 63 'remoting_host', |
59 ], | 64 ], |
60 'sources/': [ | 65 'sources/': [ |
61 ['exclude', '^host/'], | 66 ['exclude', '^host/'], |
62 ] | 67 ] |
63 }], | 68 }], |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 'protocol/ppapi_module_stub.cc', | 219 'protocol/ppapi_module_stub.cc', |
215 'protocol/ssl_hmac_channel_authenticator_unittest.cc', | 220 'protocol/ssl_hmac_channel_authenticator_unittest.cc', |
216 'protocol/third_party_authenticator_unittest.cc', | 221 'protocol/third_party_authenticator_unittest.cc', |
217 'protocol/v2_authenticator_unittest.cc', | 222 'protocol/v2_authenticator_unittest.cc', |
218 'signaling/fake_signal_strategy.cc', | 223 'signaling/fake_signal_strategy.cc', |
219 'signaling/fake_signal_strategy.h', | 224 'signaling/fake_signal_strategy.h', |
220 'signaling/iq_sender_unittest.cc', | 225 'signaling/iq_sender_unittest.cc', |
221 'signaling/log_to_server_unittest.cc', | 226 'signaling/log_to_server_unittest.cc', |
222 'signaling/server_log_entry_unittest.cc', | 227 'signaling/server_log_entry_unittest.cc', |
223 'signaling/server_log_entry_unittest.h', | 228 'signaling/server_log_entry_unittest.h', |
| 229 'test/access_token_fetcher_unittest.cc', |
| 230 'test/app_remoting_test_driver_environment_unittest.cc' |
224 ], | 231 ], |
225 'conditions': [ | 232 'conditions': [ |
226 [ 'OS=="win"', { | 233 [ 'OS=="win"', { |
227 'defines': [ | 234 'defines': [ |
228 '_ATL_NO_EXCEPTIONS', | 235 '_ATL_NO_EXCEPTIONS', |
229 ], | 236 ], |
230 'include_dirs': [ | 237 'include_dirs': [ |
231 '../breakpad/src', | 238 '../breakpad/src', |
232 ], | 239 ], |
233 'link_settings': { | 240 'link_settings': { |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 'dependencies': [ | 420 'dependencies': [ |
414 '../base/allocator/allocator.gyp:allocator', | 421 '../base/allocator/allocator.gyp:allocator', |
415 ], | 422 ], |
416 }], | 423 }], |
417 ], # end of 'conditions' | 424 ], # end of 'conditions' |
418 }, # end of target 'remoting_perftests' | 425 }, # end of target 'remoting_perftests' |
419 ] | 426 ] |
420 }] | 427 }] |
421 ] | 428 ] |
422 } | 429 } |
OLD | NEW |