Chromium Code Reviews| 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 source_set("test_support") { | 5 source_set("test_support") { |
| 6 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "access_token_fetcher.cc", | 9 "access_token_fetcher.cc", |
| 10 "access_token_fetcher.h", | 10 "access_token_fetcher.h", |
| 11 "app_remoting_report_issue_request.cc", | 11 "app_remoting_report_issue_request.cc", |
| 12 "app_remoting_report_issue_request.h", | 12 "app_remoting_report_issue_request.h", |
| 13 "app_remoting_service_urls.cc", | 13 "app_remoting_service_urls.cc", |
| 14 "app_remoting_service_urls.h", | 14 "app_remoting_service_urls.h", |
| 15 "fake_access_token_fetcher.cc", | 15 "fake_access_token_fetcher.cc", |
| 16 "fake_access_token_fetcher.h", | 16 "fake_access_token_fetcher.h", |
| 17 "fake_app_remoting_report_issue_request.cc", | 17 "fake_app_remoting_report_issue_request.cc", |
| 18 "fake_app_remoting_report_issue_request.h", | 18 "fake_app_remoting_report_issue_request.h", |
| 19 "fake_network_dispatcher.cc", | 19 "fake_network_dispatcher.cc", |
| 20 "fake_network_dispatcher.h", | 20 "fake_network_dispatcher.h", |
| 21 "fake_network_manager.cc", | 21 "fake_network_manager.cc", |
| 22 "fake_network_manager.h", | 22 "fake_network_manager.h", |
| 23 "fake_port_allocator.cc", | 23 "fake_port_allocator.cc", |
| 24 "fake_port_allocator.h", | 24 "fake_port_allocator.h", |
| 25 "fake_refresh_token_store.cc", | |
| 26 "fake_refresh_token_store.h", | |
|
Sergey Ulanov
2015/07/20 19:37:13
Please add here all other files that you are addin
tonychun
2015/07/22 23:07:41
Done.
| |
| 25 "fake_remote_host_info_fetcher.cc", | 27 "fake_remote_host_info_fetcher.cc", |
| 26 "fake_remote_host_info_fetcher.h", | 28 "fake_remote_host_info_fetcher.h", |
| 27 "fake_socket_factory.cc", | 29 "fake_socket_factory.cc", |
| 28 "fake_socket_factory.h", | 30 "fake_socket_factory.h", |
| 29 "host_info.cc", | 31 "host_info.cc", |
| 30 "host_info.h", | 32 "host_info.h", |
| 31 "host_list_fetcher.cc", | 33 "host_list_fetcher.cc", |
| 32 "host_list_fetcher.h", | 34 "host_list_fetcher.h", |
| 33 "leaky_bucket.cc", | 35 "leaky_bucket.cc", |
| 34 "leaky_bucket.h", | 36 "leaky_bucket.h", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 145 ":test_support", | 147 ":test_support", |
| 146 ":ar_test_driver_common", | 148 ":ar_test_driver_common", |
| 147 "//base", | 149 "//base", |
| 148 "//net:test_support", | 150 "//net:test_support", |
| 149 "//testing/gmock", | 151 "//testing/gmock", |
| 150 "//testing/gtest", | 152 "//testing/gtest", |
| 151 "//third_party/libyuv", | 153 "//third_party/libyuv", |
| 152 "//third_party/webrtc/modules/desktop_capture", | 154 "//third_party/webrtc/modules/desktop_capture", |
| 153 ] | 155 ] |
| 154 } | 156 } |
| OLD | NEW |