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 20 matching lines...) Expand all Loading... |
31 'protocol/fake_authenticator.cc', | 31 'protocol/fake_authenticator.cc', |
32 'protocol/fake_authenticator.h', | 32 'protocol/fake_authenticator.h', |
33 'protocol/fake_session.cc', | 33 'protocol/fake_session.cc', |
34 'protocol/fake_session.h', | 34 'protocol/fake_session.h', |
35 'protocol/protocol_mock_objects.cc', | 35 'protocol/protocol_mock_objects.cc', |
36 'protocol/protocol_mock_objects.h', | 36 'protocol/protocol_mock_objects.h', |
37 'signaling/fake_signal_strategy.cc', | 37 'signaling/fake_signal_strategy.cc', |
38 'signaling/fake_signal_strategy.h', | 38 'signaling/fake_signal_strategy.h', |
39 'signaling/mock_signal_strategy.cc', | 39 'signaling/mock_signal_strategy.cc', |
40 'signaling/mock_signal_strategy.h', | 40 'signaling/mock_signal_strategy.h', |
| 41 'test/fake_network_dispatcher.cc', |
| 42 'test/fake_network_dispatcher.h', |
| 43 'test/fake_network_manager.cc', |
| 44 'test/fake_network_manager.h', |
| 45 'test/fake_port_allocator.cc', |
| 46 'test/fake_port_allocator.h', |
| 47 'test/fake_socket_factory.cc', |
| 48 'test/fake_socket_factory.h', |
| 49 'test/leaky_bucket.cc', |
| 50 'test/leaky_bucket.h', |
41 ], | 51 ], |
42 'conditions': [ | 52 'conditions': [ |
43 ['enable_remoting_host == 0', { | 53 ['enable_remoting_host == 0', { |
44 'dependencies!': [ | 54 'dependencies!': [ |
45 'remoting_host', | 55 'remoting_host', |
46 ], | 56 ], |
47 'sources/': [ | 57 'sources/': [ |
48 ['exclude', '^host/'], | 58 ['exclude', '^host/'], |
49 ] | 59 ] |
50 }], | 60 }], |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 'dependencies': [ | 411 'dependencies': [ |
402 '../base/allocator/allocator.gyp:allocator', | 412 '../base/allocator/allocator.gyp:allocator', |
403 ], | 413 ], |
404 }], | 414 }], |
405 ], # end of 'conditions' | 415 ], # end of 'conditions' |
406 }, # end of target 'remoting_perftests' | 416 }, # end of target 'remoting_perftests' |
407 ] | 417 ] |
408 }] | 418 }] |
409 ] | 419 ] |
410 } | 420 } |
OLD | NEW |