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