Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Side by Side Diff: remoting/remoting_test.gypi

Issue 976233003: Adding the base ChromotingInstance implementation and unittests. This class will be used by the ap… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing a unit test name Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 # GN version: //remoting:test_support 8 # GN version: //remoting:test_support
9 'target_name': 'remoting_test_common', 9 'target_name': 'remoting_test_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 13 matching lines...) Expand all
24 # Note: sources list duplicated in GN build. 24 # Note: sources list duplicated in GN build.
25 'host/fake_desktop_capturer.cc', 25 'host/fake_desktop_capturer.cc',
26 'host/fake_desktop_capturer.h', 26 'host/fake_desktop_capturer.h',
27 'host/fake_desktop_environment.cc', 27 'host/fake_desktop_environment.cc',
28 'host/fake_desktop_environment.h', 28 'host/fake_desktop_environment.h',
29 'host/fake_host_status_monitor.h', 29 'host/fake_host_status_monitor.h',
30 'host/fake_mouse_cursor_monitor.cc', 30 'host/fake_mouse_cursor_monitor.cc',
31 'host/fake_mouse_cursor_monitor.h', 31 'host/fake_mouse_cursor_monitor.h',
32 'protocol/fake_authenticator.cc', 32 'protocol/fake_authenticator.cc',
33 'protocol/fake_authenticator.h', 33 'protocol/fake_authenticator.h',
34 'protocol/fake_connection_to_host.cc',
35 'protocol/fake_connection_to_host.h',
34 'protocol/fake_datagram_socket.cc', 36 'protocol/fake_datagram_socket.cc',
35 'protocol/fake_datagram_socket.h', 37 'protocol/fake_datagram_socket.h',
36 'protocol/fake_session.cc', 38 'protocol/fake_session.cc',
37 'protocol/fake_session.h', 39 'protocol/fake_session.h',
38 'protocol/fake_stream_socket.cc', 40 'protocol/fake_stream_socket.cc',
39 'protocol/fake_stream_socket.h', 41 'protocol/fake_stream_socket.h',
40 'protocol/protocol_mock_objects.cc', 42 'protocol/protocol_mock_objects.cc',
41 'protocol/protocol_mock_objects.h', 43 'protocol/protocol_mock_objects.h',
42 'protocol/test_event_matchers.h', 44 'protocol/test_event_matchers.h',
43 'signaling/fake_signal_strategy.cc', 45 'signaling/fake_signal_strategy.cc',
44 'signaling/fake_signal_strategy.h', 46 'signaling/fake_signal_strategy.h',
45 'signaling/mock_signal_strategy.cc', 47 'signaling/mock_signal_strategy.cc',
46 'signaling/mock_signal_strategy.h', 48 'signaling/mock_signal_strategy.h',
47 'test/access_token_fetcher.cc', 49 'test/access_token_fetcher.cc',
50 'test/access_token_fetcher.h',
48 'test/app_remoting_test_driver_environment.cc', 51 'test/app_remoting_test_driver_environment.cc',
52 'test/app_remoting_test_driver_environment.h',
53 'test/chromoting_instance.cc',
54 'test/chromoting_instance.h',
49 'test/fake_access_token_fetcher.cc', 55 'test/fake_access_token_fetcher.cc',
56 'test/fake_access_token_fetcher.h',
50 'test/fake_network_dispatcher.cc', 57 'test/fake_network_dispatcher.cc',
51 'test/fake_network_dispatcher.h', 58 'test/fake_network_dispatcher.h',
52 'test/fake_network_manager.cc', 59 'test/fake_network_manager.cc',
53 'test/fake_network_manager.h', 60 'test/fake_network_manager.h',
54 'test/fake_port_allocator.cc', 61 'test/fake_port_allocator.cc',
55 'test/fake_port_allocator.h', 62 'test/fake_port_allocator.h',
56 'test/fake_remote_host_info_fetcher.cc', 63 'test/fake_remote_host_info_fetcher.cc',
64 'test/fake_remote_host_info_fetcher.h',
57 'test/fake_socket_factory.cc', 65 'test/fake_socket_factory.cc',
58 'test/fake_socket_factory.h', 66 'test/fake_socket_factory.h',
59 'test/leaky_bucket.cc', 67 'test/leaky_bucket.cc',
60 'test/leaky_bucket.h', 68 'test/leaky_bucket.h',
61 'test/mock_access_token_fetcher.cc', 69 'test/mock_access_token_fetcher.cc',
70 'test/mock_access_token_fetcher.h',
62 'test/refresh_token_store.cc', 71 'test/refresh_token_store.cc',
72 'test/refresh_token_store.h',
73 'test/remote_connection_observer.h',
63 'test/remote_host_info.cc', 74 'test/remote_host_info.cc',
75 'test/remote_host_info.h',
64 'test/remote_host_info_fetcher.cc', 76 'test/remote_host_info_fetcher.cc',
77 'test/remote_host_info_fetcher.h',
78 'test/video_renderer.cc',
79 'test/video_renderer.h',
65 ], 80 ],
66 'conditions': [ 81 'conditions': [
67 ['enable_remoting_host == 0', { 82 ['enable_remoting_host == 0', {
68 'dependencies!': [ 83 'dependencies!': [
69 'remoting_host', 84 'remoting_host',
70 ], 85 ],
71 'sources/': [ 86 'sources/': [
72 ['exclude', '^host/'], 87 ['exclude', '^host/'],
73 ] 88 ]
74 }], 89 }],
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 'protocol/third_party_authenticator_unittest.cc', 247 'protocol/third_party_authenticator_unittest.cc',
233 'protocol/v2_authenticator_unittest.cc', 248 'protocol/v2_authenticator_unittest.cc',
234 'signaling/fake_signal_strategy.cc', 249 'signaling/fake_signal_strategy.cc',
235 'signaling/fake_signal_strategy.h', 250 'signaling/fake_signal_strategy.h',
236 'signaling/iq_sender_unittest.cc', 251 'signaling/iq_sender_unittest.cc',
237 'signaling/log_to_server_unittest.cc', 252 'signaling/log_to_server_unittest.cc',
238 'signaling/server_log_entry_unittest.cc', 253 'signaling/server_log_entry_unittest.cc',
239 'signaling/server_log_entry_unittest.h', 254 'signaling/server_log_entry_unittest.h',
240 'test/access_token_fetcher_unittest.cc', 255 'test/access_token_fetcher_unittest.cc',
241 'test/app_remoting_test_driver_environment_unittest.cc', 256 'test/app_remoting_test_driver_environment_unittest.cc',
257 'test/chromoting_instance_unittest.cc',
242 'test/remote_host_info_fetcher_unittest.cc', 258 'test/remote_host_info_fetcher_unittest.cc',
243 ], 259 ],
244 'conditions': [ 260 'conditions': [
245 [ 'OS=="win"', { 261 [ 'OS=="win"', {
246 'defines': [ 262 'defines': [
247 '_ATL_NO_EXCEPTIONS', 263 '_ATL_NO_EXCEPTIONS',
248 ], 264 ],
249 'include_dirs': [ 265 'include_dirs': [
250 '../breakpad/src', 266 '../breakpad/src',
251 ], 267 ],
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 'dependencies': [ 448 'dependencies': [
433 '../base/allocator/allocator.gyp:allocator', 449 '../base/allocator/allocator.gyp:allocator',
434 ], 450 ],
435 }], 451 }],
436 ], # end of 'conditions' 452 ], # end of 'conditions'
437 }, # end of target 'remoting_perftests' 453 }, # end of target 'remoting_perftests'
438 ] 454 ]
439 }] 455 }]
440 ] 456 ]
441 } 457 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698