| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//remoting/remoting_version.gni") | 7 import("//remoting/remoting_version.gni") |
| 8 import("//remoting/remoting_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "signaling/mock_signal_strategy.h", | 83 "signaling/mock_signal_strategy.h", |
| 84 "test/access_token_fetcher.cc", | 84 "test/access_token_fetcher.cc", |
| 85 "test/access_token_fetcher.h", | 85 "test/access_token_fetcher.h", |
| 86 "test/app_remoting_report_issue_request.cc", | 86 "test/app_remoting_report_issue_request.cc", |
| 87 "test/app_remoting_report_issue_request.h", | 87 "test/app_remoting_report_issue_request.h", |
| 88 "test/app_remoting_service_urls.cc", | 88 "test/app_remoting_service_urls.cc", |
| 89 "test/app_remoting_service_urls.h", | 89 "test/app_remoting_service_urls.h", |
| 90 "test/app_remoting_test_driver_environment.cc", | 90 "test/app_remoting_test_driver_environment.cc", |
| 91 "test/app_remoting_test_driver_environment.h", | 91 "test/app_remoting_test_driver_environment.h", |
| 92 "test/app_remoting_test_driver_environment_app_details.cc", | 92 "test/app_remoting_test_driver_environment_app_details.cc", |
| 93 "test/chromoting_test_driver_environment.cc", |
| 94 "test/chromoting_test_driver_environment.h", |
| 93 "test/fake_access_token_fetcher.cc", | 95 "test/fake_access_token_fetcher.cc", |
| 94 "test/fake_access_token_fetcher.h", | 96 "test/fake_access_token_fetcher.h", |
| 95 "test/fake_app_remoting_report_issue_request.cc", | 97 "test/fake_app_remoting_report_issue_request.cc", |
| 96 "test/fake_app_remoting_report_issue_request.h", | 98 "test/fake_app_remoting_report_issue_request.h", |
| 99 "test/fake_host_list_fetcher.cc", |
| 100 "test/fake_host_list_fetcher.h", |
| 97 "test/fake_network_dispatcher.cc", | 101 "test/fake_network_dispatcher.cc", |
| 98 "test/fake_network_dispatcher.h", | 102 "test/fake_network_dispatcher.h", |
| 99 "test/fake_network_manager.cc", | 103 "test/fake_network_manager.cc", |
| 100 "test/fake_network_manager.h", | 104 "test/fake_network_manager.h", |
| 101 "test/fake_port_allocator.cc", | 105 "test/fake_port_allocator.cc", |
| 102 "test/fake_port_allocator.h", | 106 "test/fake_port_allocator.h", |
| 107 "test/fake_refresh_token_store.cc", |
| 108 "test/fake_refresh_token_store.h", |
| 103 "test/fake_remote_host_info_fetcher.cc", | 109 "test/fake_remote_host_info_fetcher.cc", |
| 104 "test/fake_remote_host_info_fetcher.h", | 110 "test/fake_remote_host_info_fetcher.h", |
| 105 "test/fake_socket_factory.cc", | 111 "test/fake_socket_factory.cc", |
| 106 "test/fake_socket_factory.h", | 112 "test/fake_socket_factory.h", |
| 113 "test/host_list_fetcher.cc", |
| 114 "test/host_list_fetcher.h", |
| 107 "test/leaky_bucket.cc", | 115 "test/leaky_bucket.cc", |
| 108 "test/leaky_bucket.h", | 116 "test/leaky_bucket.h", |
| 109 "test/mock_access_token_fetcher.cc", | 117 "test/mock_access_token_fetcher.cc", |
| 110 "test/mock_access_token_fetcher.h", | 118 "test/mock_access_token_fetcher.h", |
| 111 "test/refresh_token_store.cc", | 119 "test/refresh_token_store.cc", |
| 112 "test/refresh_token_store.h", | 120 "test/refresh_token_store.h", |
| 113 "test/remote_application_details.h", | 121 "test/remote_application_details.h", |
| 114 "test/remote_connection_observer.h", | 122 "test/remote_connection_observer.h", |
| 115 "test/remote_host_info.cc", | 123 "test/remote_host_info.cc", |
| 116 "test/remote_host_info.h", | 124 "test/remote_host_info.h", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 } | 280 } |
| 273 } | 281 } |
| 274 | 282 |
| 275 group("remoting_key_tester_pexe") { | 283 group("remoting_key_tester_pexe") { |
| 276 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. | 284 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. |
| 277 #sources = [ | 285 #sources = [ |
| 278 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", | 286 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", |
| 279 #] | 287 #] |
| 280 } | 288 } |
| 281 } | 289 } |
| OLD | NEW |