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:26:33
Same comments as the other CL, please make sure al
tonychun
2015/07/17 16:25:49
Done.
| |
| 61 'test/app_remoting_test_driver_environment.h', | |
|
Sergey Ulanov
2015/07/16 23:42:09
Please remove these 3 files - it would fail to com
tonychun
2015/07/17 16:25:49
Done.
| |
| 62 'test/connection_setup_info.cc', | |
| 63 'test/connection_setup_info.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', |
| 63 'test/fake_network_dispatcher.cc', | 72 'test/fake_network_dispatcher.cc', |
| 64 'test/fake_network_dispatcher.h', | 73 'test/fake_network_dispatcher.h', |
| 65 'test/fake_network_manager.cc', | 74 'test/fake_network_manager.cc', |
| 66 'test/fake_network_manager.h', | 75 'test/fake_network_manager.h', |
| 67 'test/fake_port_allocator.cc', | 76 'test/fake_port_allocator.cc', |
| 68 'test/fake_port_allocator.h', | 77 'test/fake_port_allocator.h', |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 96 'dependencies!': [ | 105 'dependencies!': [ |
| 97 'remoting_host', | 106 'remoting_host', |
| 98 ], | 107 ], |
| 99 'sources/': [ | 108 'sources/': [ |
| 100 ['exclude', '^host/'], | 109 ['exclude', '^host/'], |
| 101 ] | 110 ] |
| 102 }], | 111 }], |
| 103 ], | 112 ], |
| 104 }, | 113 }, |
| 105 { | 114 { |
| 115 'target_name': 'remoting_test_driver_common', | |
|
joedow
2015/07/16 23:26:33
Pretty sure this was removed, please make sure thi
Sergey Ulanov
2015/07/16 23:42:09
I removed this target in my CL. It's not necessary
tonychun
2015/07/17 16:25:49
Done.
| |
| 116 'type': 'static_library', | |
| 117 'dependencies': [ | |
| 118 '../base/base.gyp:base', | |
| 119 '../base/base.gyp:test_support_base', | |
| 120 '../google_apis/google_apis.gyp:google_apis', | |
| 121 '../net/net.gyp:net', | |
| 122 '../remoting/remoting.gyp:remoting_base', | |
| 123 '../remoting/remoting.gyp:remoting_client', | |
| 124 '../remoting/remoting.gyp:remoting_protocol', | |
| 125 '../testing/gtest.gyp:gtest', | |
| 126 ], | |
| 127 'defines': [ | |
| 128 'VERSION=<(version_full)', | |
| 129 ], | |
| 130 'sources': [ | |
| 131 'test/access_token_fetcher.cc', | |
| 132 'test/access_token_fetcher.h', | |
| 133 'test/connection_setup_info.cc', | |
| 134 'test/connection_setup_info.h', | |
| 135 'test/refresh_token_store.cc', | |
| 136 'test/refresh_token_store.h', | |
| 137 'test/remote_connection_observer.h', | |
| 138 'test/test_chromoting_client.cc', | |
| 139 'test/test_chromoting_client.h', | |
| 140 'test/test_video_renderer.cc', | |
| 141 'test/test_video_renderer.h', | |
| 142 ], | |
| 143 }, # end of target 'remoting_test_driver_common' | |
| 144 { | |
| 145 # A chromoting version of remoting_test_driver_common | |
| 106 'target_name': 'chromoting_test_driver', | 146 'target_name': 'chromoting_test_driver', |
| 107 'type': '<(gtest_target_type)', | 147 'type': '<(gtest_target_type)', |
| 108 'dependencies': [ | 148 'dependencies': [ |
| 109 'remoting_test_support', | 149 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', |
| 110 '../testing/gtest.gyp:gtest', | 150 'remoting_test_driver_common', |
| 151 ], | |
| 152 'defines': [ | |
| 153 'VERSION=<(version_full)', | |
| 111 ], | 154 ], |
| 112 'sources': [ | 155 'sources': [ |
| 113 'test/chromoting_test_driver.cc', | 156 'test/chromoting_test_driver.cc', |
| 157 'test/host_info.cc', | |
| 158 'test/host_info.h', | |
| 159 'test/host_list_fetcher.cc', | |
| 160 'test/host_list_fetcher.h', | |
| 114 ], | 161 ], |
| 115 }, # end of target 'chromoting_test_driver' | 162 }, # end of target 'chromoting_test_driver' |
| 116 { | 163 { |
| 117 'target_name': 'ar_test_driver_common', | 164 'target_name': 'ar_test_driver_common', |
| 118 'type': 'static_library', | 165 'type': 'static_library', |
| 119 'dependencies': [ | 166 'dependencies': [ |
| 120 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', | 167 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', |
| 121 '../testing/gtest.gyp:gtest', | 168 '../testing/gtest.gyp:gtest', |
| 122 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | 169 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
| 123 'remoting_test_support', | 170 'remoting_test_support', |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 597 '../build/isolate.gypi', | 644 '../build/isolate.gypi', |
| 598 ], | 645 ], |
| 599 'sources': [ | 646 'sources': [ |
| 600 'remoting_unittests.isolate', | 647 'remoting_unittests.isolate', |
| 601 ], | 648 ], |
| 602 }, | 649 }, |
| 603 ], | 650 ], |
| 604 }], | 651 }], |
| 605 ] # end of 'conditions' | 652 ] # end of 'conditions' |
| 606 } | 653 } |
| OLD | NEW |