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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'test/fake_network_dispatcher.cc', | 44 'test/fake_network_dispatcher.cc', |
45 'test/fake_network_dispatcher.h', | 45 'test/fake_network_dispatcher.h', |
46 'test/fake_network_manager.cc', | 46 'test/fake_network_manager.cc', |
47 'test/fake_network_manager.h', | 47 'test/fake_network_manager.h', |
48 'test/fake_port_allocator.cc', | 48 'test/fake_port_allocator.cc', |
49 'test/fake_port_allocator.h', | 49 'test/fake_port_allocator.h', |
50 'test/fake_socket_factory.cc', | 50 'test/fake_socket_factory.cc', |
51 'test/fake_socket_factory.h', | 51 'test/fake_socket_factory.h', |
52 'test/leaky_bucket.cc', | 52 'test/leaky_bucket.cc', |
53 'test/leaky_bucket.h', | 53 'test/leaky_bucket.h', |
| 54 'test/access_token_fetcher.cc', |
| 55 'test/app_remoting_test_driver_environment.cc', |
| 56 'test/mock_access_token_fetcher.cc', |
| 57 'test/refresh_token_storage.cc', |
54 ], | 58 ], |
55 'conditions': [ | 59 'conditions': [ |
56 ['enable_remoting_host == 0', { | 60 ['enable_remoting_host == 0', { |
57 'dependencies!': [ | 61 'dependencies!': [ |
58 'remoting_host', | 62 'remoting_host', |
59 ], | 63 ], |
60 'sources/': [ | 64 'sources/': [ |
61 ['exclude', '^host/'], | 65 ['exclude', '^host/'], |
62 ] | 66 ] |
63 }], | 67 }], |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 'protocol/ppapi_module_stub.cc', | 215 'protocol/ppapi_module_stub.cc', |
212 'protocol/ssl_hmac_channel_authenticator_unittest.cc', | 216 'protocol/ssl_hmac_channel_authenticator_unittest.cc', |
213 'protocol/third_party_authenticator_unittest.cc', | 217 'protocol/third_party_authenticator_unittest.cc', |
214 'protocol/v2_authenticator_unittest.cc', | 218 'protocol/v2_authenticator_unittest.cc', |
215 'signaling/fake_signal_strategy.cc', | 219 'signaling/fake_signal_strategy.cc', |
216 'signaling/fake_signal_strategy.h', | 220 'signaling/fake_signal_strategy.h', |
217 'signaling/iq_sender_unittest.cc', | 221 'signaling/iq_sender_unittest.cc', |
218 'signaling/log_to_server_unittest.cc', | 222 'signaling/log_to_server_unittest.cc', |
219 'signaling/server_log_entry_unittest.cc', | 223 'signaling/server_log_entry_unittest.cc', |
220 'signaling/server_log_entry_unittest.h', | 224 'signaling/server_log_entry_unittest.h', |
| 225 'test/access_token_fetcher_unittest.cc', |
| 226 'test/app_remoting_test_driver_environment_unittest.cc' |
221 ], | 227 ], |
222 'conditions': [ | 228 'conditions': [ |
223 [ 'OS=="win"', { | 229 [ 'OS=="win"', { |
224 'defines': [ | 230 'defines': [ |
225 '_ATL_NO_EXCEPTIONS', | 231 '_ATL_NO_EXCEPTIONS', |
226 ], | 232 ], |
227 'include_dirs': [ | 233 'include_dirs': [ |
228 '../breakpad/src', | 234 '../breakpad/src', |
229 ], | 235 ], |
230 'link_settings': { | 236 'link_settings': { |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 'dependencies': [ | 428 'dependencies': [ |
423 '../base/allocator/allocator.gyp:allocator', | 429 '../base/allocator/allocator.gyp:allocator', |
424 ], | 430 ], |
425 }], | 431 }], |
426 ], # end of 'conditions' | 432 ], # end of 'conditions' |
427 }, # end of target 'remoting_perftests' | 433 }, # end of target 'remoting_perftests' |
428 ] | 434 ] |
429 }] | 435 }] |
430 ] | 436 ] |
431 } | 437 } |
OLD | NEW |