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

Side by Side Diff: remoting/remoting_test.gypi

Issue 1212333011: Retrieved Hostlist information from Directory service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added unittests and cleaned up format of C++ code. Created 5 years, 5 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'protocol/test_event_matchers.h', 44 'protocol/test_event_matchers.h',
45 'signaling/fake_signal_strategy.cc', 45 'signaling/fake_signal_strategy.cc',
46 'signaling/fake_signal_strategy.h', 46 'signaling/fake_signal_strategy.h',
47 'signaling/mock_signal_strategy.cc', 47 'signaling/mock_signal_strategy.cc',
48 'signaling/mock_signal_strategy.h', 48 'signaling/mock_signal_strategy.h',
49 'test/access_token_fetcher.cc', 49 'test/access_token_fetcher.cc',
50 'test/access_token_fetcher.h', 50 'test/access_token_fetcher.h',
51 'test/app_remoting_test_driver_environment.cc', 51 'test/app_remoting_test_driver_environment.cc',
52 'test/app_remoting_test_driver_environment_app_details.cc', 52 'test/app_remoting_test_driver_environment_app_details.cc',
53 'test/app_remoting_test_driver_environment.h', 53 'test/app_remoting_test_driver_environment.h',
54 'test/chromoting_host_info.cc',
55 'test/chromoting_host_info.h',
56 'test/chromoting_host_list_fetcher.cc',
57 'test/chromoting_host_list_fetcher.h',
54 'test/fake_access_token_fetcher.cc', 58 'test/fake_access_token_fetcher.cc',
55 'test/fake_access_token_fetcher.h', 59 'test/fake_access_token_fetcher.h',
56 'test/fake_network_dispatcher.cc', 60 'test/fake_network_dispatcher.cc',
57 'test/fake_network_dispatcher.h', 61 'test/fake_network_dispatcher.h',
58 'test/fake_network_manager.cc', 62 'test/fake_network_manager.cc',
59 'test/fake_network_manager.h', 63 'test/fake_network_manager.h',
60 'test/fake_port_allocator.cc', 64 'test/fake_port_allocator.cc',
61 'test/fake_port_allocator.h', 65 'test/fake_port_allocator.h',
62 'test/fake_remote_host_info_fetcher.cc', 66 'test/fake_remote_host_info_fetcher.cc',
63 'test/fake_remote_host_info_fetcher.h', 67 'test/fake_remote_host_info_fetcher.h',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 # A chromoting version of remoting_test_driver_common 127 # A chromoting version of remoting_test_driver_common
124 'target_name': 'chromoting_test_driver', 128 'target_name': 'chromoting_test_driver',
125 'type': '<(gtest_target_type)', 129 'type': '<(gtest_target_type)',
126 'dependencies': [ 130 'dependencies': [
127 'remoting_test_driver_common', 131 'remoting_test_driver_common',
128 ], 132 ],
129 'defines': [ 133 'defines': [
130 'VERSION=<(version_full)', 134 'VERSION=<(version_full)',
131 ], 135 ],
132 'sources': [ 136 'sources': [
137 'test/chromoting_host_info.cc',
138 'test/chromoting_host_info.h',
139 'test/chromoting_host_list_fetcher.cc',
140 'test/chromoting_host_list_fetcher.h',
133 'test/chromoting_test_driver.cc', 141 'test/chromoting_test_driver.cc',
134 ], 142 ],
135 'include_dirs': [ 143 'include_dirs': [
136 '../testing/gtest/include', 144 '../testing/gtest/include',
137 ], 145 ],
138 }, # end of target 'chromoting_test_driver' 146 }, # end of target 'chromoting_test_driver'
139 { 147 {
140 'target_name': 'ar_test_driver_common', 148 'target_name': 'ar_test_driver_common',
141 'type': 'static_library', 149 'type': 'static_library',
142 'dependencies': [ 150 'dependencies': [
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 'signaling/jid_util_unittest.cc', 356 'signaling/jid_util_unittest.cc',
349 'signaling/log_to_server_unittest.cc', 357 'signaling/log_to_server_unittest.cc',
350 'signaling/push_notification_subscriber_unittest.cc', 358 'signaling/push_notification_subscriber_unittest.cc',
351 'signaling/server_log_entry_unittest.cc', 359 'signaling/server_log_entry_unittest.cc',
352 'signaling/server_log_entry_unittest.h', 360 'signaling/server_log_entry_unittest.h',
353 'signaling/xmpp_login_handler_unittest.cc', 361 'signaling/xmpp_login_handler_unittest.cc',
354 'signaling/xmpp_stream_parser_unittest.cc', 362 'signaling/xmpp_stream_parser_unittest.cc',
355 'signaling/xmpp_signal_strategy_unittest.cc', 363 'signaling/xmpp_signal_strategy_unittest.cc',
356 'test/access_token_fetcher_unittest.cc', 364 'test/access_token_fetcher_unittest.cc',
357 'test/app_remoting_test_driver_environment_unittest.cc', 365 'test/app_remoting_test_driver_environment_unittest.cc',
366 'test/chromoting_host_list_fetcher_unittest.cc',
358 'test/remote_host_info_fetcher_unittest.cc', 367 'test/remote_host_info_fetcher_unittest.cc',
359 'test/test_chromoting_client_unittest.cc', 368 'test/test_chromoting_client_unittest.cc',
360 ], 369 ],
361 'conditions': [ 370 'conditions': [
362 [ 'OS=="win"', { 371 [ 'OS=="win"', {
363 'defines': [ 372 'defines': [
364 '_ATL_NO_EXCEPTIONS', 373 '_ATL_NO_EXCEPTIONS',
365 ], 374 ],
366 'include_dirs': [ 375 'include_dirs': [
367 '../breakpad/src', 376 '../breakpad/src',
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 'dependencies': [ 614 'dependencies': [
606 'remoting_nacl.gyp:remoting_client_plugin_nacl', 615 'remoting_nacl.gyp:remoting_client_plugin_nacl',
607 'remoting_webapp_browser_test_main_html', 616 'remoting_webapp_browser_test_main_html',
608 ], 617 ],
609 'includes': [ 'remoting_webapp.gypi', ], 618 'includes': [ 'remoting_webapp.gypi', ],
610 }, # end of target 'remoting_webapp_browser_test' 619 }, # end of target 'remoting_webapp_browser_test'
611 ] 620 ]
612 }] 621 }]
613 ] # end of 'conditions' 622 ] # end of 'conditions'
614 } 623 }
OLDNEW
« no previous file with comments | « no previous file | remoting/test/chromoting_host_info.h » ('j') | remoting/test/chromoting_host_info.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698