Chromium Code Reviews| 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 # GN version: //remoting:test_support | 8 # GN version: //remoting:test_support |
| 9 'target_name': 'remoting_test_support', | 9 'target_name': 'remoting_test_support', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 49 'signaling/fake_signal_strategy.cc', | 49 'signaling/fake_signal_strategy.cc', |
| 50 'signaling/fake_signal_strategy.h', | 50 'signaling/fake_signal_strategy.h', |
| 51 'signaling/mock_signal_strategy.cc', | 51 'signaling/mock_signal_strategy.cc', |
| 52 'signaling/mock_signal_strategy.h', | 52 'signaling/mock_signal_strategy.h', |
| 53 'test/access_token_fetcher.cc', | 53 'test/access_token_fetcher.cc', |
| 54 'test/access_token_fetcher.h', | 54 'test/access_token_fetcher.h', |
| 55 'test/app_remoting_report_issue_request.cc', | 55 'test/app_remoting_report_issue_request.cc', |
| 56 'test/app_remoting_report_issue_request.h', | 56 'test/app_remoting_report_issue_request.h', |
| 57 'test/app_remoting_service_urls.cc', | 57 'test/app_remoting_service_urls.cc', |
| 58 'test/app_remoting_service_urls.h', | 58 'test/app_remoting_service_urls.h', |
| 59 'test/app_remoting_test_driver_environment.cc', | |
| 60 'test/app_remoting_test_driver_environment_app_details.cc', | |
|
joedow
2015/07/16 23:15:38
Does the ar_test_driver target still build with th
tonychun
2015/07/16 23:47:55
Yes it does.
| |
| 61 'test/app_remoting_test_driver_environment.h', | |
| 62 'test/chromoting_test_driver_environment.cc', | |
| 63 'test/chromoting_test_driver_environment.h', | |
| 64 'test/host_info.cc', | |
| 65 'test/host_info.h', | |
| 66 'test/host_list_fetcher.cc', | |
| 67 'test/host_list_fetcher.h', | |
| 59 'test/fake_access_token_fetcher.cc', | 68 'test/fake_access_token_fetcher.cc', |
| 60 'test/fake_access_token_fetcher.h', | 69 'test/fake_access_token_fetcher.h', |
| 61 'test/fake_app_remoting_report_issue_request.cc', | 70 'test/fake_app_remoting_report_issue_request.cc', |
| 62 'test/fake_app_remoting_report_issue_request.h', | 71 'test/fake_app_remoting_report_issue_request.h', |
| 72 'test/fake_host_list_fetcher.cc', | |
| 73 'test/fake_host_list_fetcher.h', | |
| 63 'test/fake_network_dispatcher.cc', | 74 'test/fake_network_dispatcher.cc', |
| 64 'test/fake_network_dispatcher.h', | 75 'test/fake_network_dispatcher.h', |
| 65 'test/fake_network_manager.cc', | 76 'test/fake_network_manager.cc', |
| 66 'test/fake_network_manager.h', | 77 'test/fake_network_manager.h', |
| 67 'test/fake_port_allocator.cc', | 78 'test/fake_port_allocator.cc', |
| 68 'test/fake_port_allocator.h', | 79 'test/fake_port_allocator.h', |
| 80 'test/fake_refresh_token_store.cc', | |
| 81 'test/fake_refresh_token_store.h', | |
| 69 'test/fake_remote_host_info_fetcher.cc', | 82 'test/fake_remote_host_info_fetcher.cc', |
| 70 'test/fake_remote_host_info_fetcher.h', | 83 'test/fake_remote_host_info_fetcher.h', |
| 71 'test/fake_socket_factory.cc', | 84 'test/fake_socket_factory.cc', |
| 72 'test/fake_socket_factory.h', | 85 'test/fake_socket_factory.h', |
| 73 'test/host_info.cc', | 86 'test/host_info.cc', |
| 74 'test/host_info.h', | 87 'test/host_info.h', |
| 75 'test/host_list_fetcher.cc', | 88 'test/host_list_fetcher.cc', |
| 76 'test/host_list_fetcher.h', | 89 'test/host_list_fetcher.h', |
| 77 'test/leaky_bucket.cc', | 90 'test/leaky_bucket.cc', |
| 78 'test/leaky_bucket.h', | 91 'test/leaky_bucket.h', |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 103 ], | 116 ], |
| 104 }, | 117 }, |
| 105 { | 118 { |
| 106 'target_name': 'chromoting_test_driver', | 119 'target_name': 'chromoting_test_driver', |
| 107 'type': '<(gtest_target_type)', | 120 'type': '<(gtest_target_type)', |
| 108 'dependencies': [ | 121 'dependencies': [ |
| 109 'remoting_test_support', | 122 'remoting_test_support', |
| 110 '../testing/gtest.gyp:gtest', | 123 '../testing/gtest.gyp:gtest', |
| 111 ], | 124 ], |
| 112 'sources': [ | 125 'sources': [ |
| 126 'test/chromoting_test_driver_environment.cc', | |
| 127 'test/chromoting_test_driver_environment.h', | |
| 113 'test/chromoting_test_driver.cc', | 128 'test/chromoting_test_driver.cc', |
| 129 'test/host_info.cc', | |
| 130 'test/host_info.h', | |
| 131 'test/host_list_fetcher.cc', | |
| 132 'test/host_list_fetcher.h', | |
|
joedow
2015/07/16 23:15:38
I don't think you need these since they are alread
tonychun
2015/07/16 23:47:55
Removed.
| |
| 114 ], | 133 ], |
| 115 }, # end of target 'chromoting_test_driver' | 134 }, # end of target 'chromoting_test_driver' |
| 116 { | 135 { |
| 117 'target_name': 'ar_test_driver_common', | 136 'target_name': 'ar_test_driver_common', |
| 118 'type': 'static_library', | 137 'type': 'static_library', |
| 119 'dependencies': [ | 138 'dependencies': [ |
| 120 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', | 139 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', |
| 121 '../testing/gtest.gyp:gtest', | 140 '../testing/gtest.gyp:gtest', |
| 122 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | 141 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
| 123 'remoting_test_support', | 142 'remoting_test_support', |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 313 'signaling/jid_util_unittest.cc', | 332 'signaling/jid_util_unittest.cc', |
| 314 'signaling/log_to_server_unittest.cc', | 333 'signaling/log_to_server_unittest.cc', |
| 315 'signaling/push_notification_subscriber_unittest.cc', | 334 'signaling/push_notification_subscriber_unittest.cc', |
| 316 'signaling/server_log_entry_unittest.cc', | 335 'signaling/server_log_entry_unittest.cc', |
| 317 'signaling/server_log_entry_unittest.h', | 336 'signaling/server_log_entry_unittest.h', |
| 318 'signaling/xmpp_login_handler_unittest.cc', | 337 'signaling/xmpp_login_handler_unittest.cc', |
| 319 'signaling/xmpp_stream_parser_unittest.cc', | 338 'signaling/xmpp_stream_parser_unittest.cc', |
| 320 'signaling/xmpp_signal_strategy_unittest.cc', | 339 'signaling/xmpp_signal_strategy_unittest.cc', |
| 321 'test/access_token_fetcher_unittest.cc', | 340 'test/access_token_fetcher_unittest.cc', |
| 322 'test/app_remoting_report_issue_request_unittest.cc', | 341 'test/app_remoting_report_issue_request_unittest.cc', |
| 342 'test/app_remoting_test_driver_environment_unittest.cc', | |
|
joedow
2015/07/16 23:15:38
This file is already included (line 359)
tonychun
2015/07/16 23:47:55
Removed.
| |
| 343 'test/chromoting_test_driver_environment_unittest.cc', | |
| 323 'test/host_list_fetcher_unittest.cc', | 344 'test/host_list_fetcher_unittest.cc', |
| 324 'test/remote_host_info_fetcher_unittest.cc', | 345 'test/remote_host_info_fetcher_unittest.cc', |
| 325 'test/test_chromoting_client_unittest.cc', | 346 'test/test_chromoting_client_unittest.cc', |
| 326 'test/test_video_renderer_unittest.cc', | 347 'test/test_video_renderer_unittest.cc', |
| 327 | 348 |
| 328 # TODO(sergeyu): app_remoting_test_driver_environment_unittest.cc | 349 # TODO(sergeyu): app_remoting_test_driver_environment_unittest.cc |
| 329 # depends on ar_test_driver_common target and that target implicitly | 350 # depends on ar_test_driver_common target and that target implicitly |
| 330 # depends on app_remoting_test_driver_environment_app_details.cc to | 351 # depends on app_remoting_test_driver_environment_app_details.cc to |
| 331 # allow some parameters to be overridden (i.e. *app_details.cc file can | 352 # allow some parameters to be overridden (i.e. *app_details.cc file can |
| 332 # be replace with a different one). This means that app_deails.cc file | 353 # be replace with a different one). This means that app_deails.cc file |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 597 '../build/isolate.gypi', | 618 '../build/isolate.gypi', |
| 598 ], | 619 ], |
| 599 'sources': [ | 620 'sources': [ |
| 600 'remoting_unittests.isolate', | 621 'remoting_unittests.isolate', |
| 601 ], | 622 ], |
| 602 }, | 623 }, |
| 603 ], | 624 ], |
| 604 }], | 625 }], |
| 605 ] # end of 'conditions' | 626 ] # end of 'conditions' |
| 606 } | 627 } |
| OLD | NEW |