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

Side by Side Diff: remoting/remoting_test.gypi

Issue 1237093004: Support for connecting to localhost on the chromoting test driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactored App Remoting and Chromoting code to share StartConnection method. 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_report_issue_request.cc', 51 'test/app_remoting_report_issue_request.cc',
52 'test/app_remoting_report_issue_request.h', 52 'test/app_remoting_report_issue_request.h',
53 'test/app_remoting_service_urls.cc', 53 'test/app_remoting_service_urls.cc',
54 'test/app_remoting_service_urls.h', 54 'test/app_remoting_service_urls.h',
55 'test/app_remoting_test_driver_environment.cc', 55 'test/app_remoting_test_driver_environment.cc',
56 'test/app_remoting_test_driver_environment_app_details.cc', 56 'test/app_remoting_test_driver_environment_app_details.cc',
57 'test/app_remoting_test_driver_environment.h', 57 'test/app_remoting_test_driver_environment.h',
58 'test/connection_info.cc',
59 'test/connection_info.h',
58 'test/host_info.cc', 60 'test/host_info.cc',
59 'test/host_info.h', 61 'test/host_info.h',
60 'test/host_list_fetcher.cc', 62 'test/host_list_fetcher.cc',
61 'test/host_list_fetcher.h', 63 'test/host_list_fetcher.h',
62 'test/fake_access_token_fetcher.cc', 64 'test/fake_access_token_fetcher.cc',
63 'test/fake_access_token_fetcher.h', 65 'test/fake_access_token_fetcher.h',
64 'test/fake_app_remoting_report_issue_request.cc', 66 'test/fake_app_remoting_report_issue_request.cc',
65 'test/fake_app_remoting_report_issue_request.h', 67 'test/fake_app_remoting_report_issue_request.h',
66 'test/fake_network_dispatcher.cc', 68 'test/fake_network_dispatcher.cc',
67 'test/fake_network_dispatcher.h', 69 'test/fake_network_dispatcher.h',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 '../remoting/remoting.gyp:remoting_client', 115 '../remoting/remoting.gyp:remoting_client',
114 '../remoting/remoting.gyp:remoting_protocol', 116 '../remoting/remoting.gyp:remoting_protocol',
115 '../testing/gtest.gyp:gtest', 117 '../testing/gtest.gyp:gtest',
116 ], 118 ],
117 'defines': [ 119 'defines': [
118 'VERSION=<(version_full)', 120 'VERSION=<(version_full)',
119 ], 121 ],
120 'sources': [ 122 'sources': [
121 'test/access_token_fetcher.cc', 123 'test/access_token_fetcher.cc',
122 'test/access_token_fetcher.h', 124 'test/access_token_fetcher.h',
125 'test/connection_info.cc',
126 'test/connection_info.h',
joedow 2015/07/16 03:23:19 sync with Sergey on this as he has a change that w
tonychun 2015/07/16 23:12:08 I talked to Sergey and I'll take care of the merge
123 'test/refresh_token_store.cc', 127 'test/refresh_token_store.cc',
124 'test/refresh_token_store.h', 128 'test/refresh_token_store.h',
125 'test/remote_connection_observer.h', 129 'test/remote_connection_observer.h',
126 'test/test_chromoting_client.cc', 130 'test/test_chromoting_client.cc',
127 'test/test_chromoting_client.h', 131 'test/test_chromoting_client.h',
128 'test/test_video_renderer.cc', 132 'test/test_video_renderer.cc',
129 'test/test_video_renderer.h', 133 'test/test_video_renderer.h',
130 ], 134 ],
131 }, # end of target 'remoting_test_driver_common' 135 }, # end of target 'remoting_test_driver_common'
132 { 136 {
133 # A chromoting version of remoting_test_driver_common 137 # A chromoting version of remoting_test_driver_common
134 'target_name': 'chromoting_test_driver', 138 'target_name': 'chromoting_test_driver',
135 'type': '<(gtest_target_type)', 139 'type': '<(gtest_target_type)',
136 'dependencies': [ 140 'dependencies': [
141 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
137 'remoting_test_driver_common', 142 'remoting_test_driver_common',
138 ], 143 ],
139 'defines': [ 144 'defines': [
140 'VERSION=<(version_full)', 145 'VERSION=<(version_full)',
141 ], 146 ],
142 'sources': [ 147 'sources': [
148 'test/chromoting_test_driver.cc',
143 'test/host_info.cc', 149 'test/host_info.cc',
144 'test/host_info.h', 150 'test/host_info.h',
145 'test/host_list_fetcher.cc', 151 'test/host_list_fetcher.cc',
146 'test/host_list_fetcher.h', 152 'test/host_list_fetcher.h',
147 'test/chromoting_test_driver.cc',
148 ], 153 ],
149 'include_dirs': [ 154 'include_dirs': [
150 '../testing/gtest/include', 155 '../testing/gtest/include',
151 ], 156 ],
152 }, # end of target 'chromoting_test_driver' 157 }, # end of target 'chromoting_test_driver'
153 { 158 {
154 'target_name': 'ar_test_driver_common', 159 'target_name': 'ar_test_driver_common',
155 'type': 'static_library', 160 'type': 'static_library',
156 'dependencies': [ 161 'dependencies': [
157 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', 162 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 '../build/isolate.gypi', 657 '../build/isolate.gypi',
653 ], 658 ],
654 'sources': [ 659 'sources': [
655 'remoting_unittests.isolate', 660 'remoting_unittests.isolate',
656 ], 661 ],
657 }, 662 },
658 ], 663 ],
659 }], 664 }],
660 ] # end of 'conditions' 665 ] # end of 'conditions'
661 } 666 }
OLDNEW
« no previous file with comments | « no previous file | remoting/test/app_remoting_connection_helper.cc » ('j') | remoting/test/chromoting_test_driver.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698