| 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("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 enable_remoting_host = is_win || is_mac || is_chromeos || use_x11 | 10 enable_remoting_host = is_win || is_mac || is_chromeos || use_x11 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 sources = [ | 21 sources = [ |
| 22 # Files from remoting_test_common not in separate test_support targets. | 22 # Files from remoting_test_common not in separate test_support targets. |
| 23 "signaling/fake_signal_strategy.cc", | 23 "signaling/fake_signal_strategy.cc", |
| 24 "signaling/fake_signal_strategy.h", | 24 "signaling/fake_signal_strategy.h", |
| 25 "signaling/mock_signal_strategy.cc", | 25 "signaling/mock_signal_strategy.cc", |
| 26 "signaling/mock_signal_strategy.h", | 26 "signaling/mock_signal_strategy.h", |
| 27 "test/access_token_fetcher.cc", | 27 "test/access_token_fetcher.cc", |
| 28 "test/access_token_fetcher.h", | 28 "test/access_token_fetcher.h", |
| 29 "test/app_remoting_test_driver_environment.cc", | 29 "test/app_remoting_test_driver_environment.cc", |
| 30 "test/app_remoting_test_driver_environment.h", | 30 "test/app_remoting_test_driver_environment.h", |
| 31 "test/app_remoting_test_driver_environment_app_details.cc", |
| 31 "test/fake_access_token_fetcher.cc", | 32 "test/fake_access_token_fetcher.cc", |
| 32 "test/fake_access_token_fetcher.h", | 33 "test/fake_access_token_fetcher.h", |
| 33 "test/fake_network_dispatcher.cc", | 34 "test/fake_network_dispatcher.cc", |
| 34 "test/fake_network_dispatcher.h", | 35 "test/fake_network_dispatcher.h", |
| 35 "test/fake_network_manager.cc", | 36 "test/fake_network_manager.cc", |
| 36 "test/fake_network_manager.h", | 37 "test/fake_network_manager.h", |
| 37 "test/fake_port_allocator.cc", | 38 "test/fake_port_allocator.cc", |
| 38 "test/fake_port_allocator.h", | 39 "test/fake_port_allocator.h", |
| 39 "test/fake_remote_host_info_fetcher.cc", | 40 "test/fake_remote_host_info_fetcher.cc", |
| 40 "test/fake_remote_host_info_fetcher.h", | 41 "test/fake_remote_host_info_fetcher.h", |
| 41 "test/fake_socket_factory.cc", | 42 "test/fake_socket_factory.cc", |
| 42 "test/fake_socket_factory.h", | 43 "test/fake_socket_factory.h", |
| 43 "test/leaky_bucket.cc", | 44 "test/leaky_bucket.cc", |
| 44 "test/leaky_bucket.h", | 45 "test/leaky_bucket.h", |
| 45 "test/mock_access_token_fetcher.cc", | 46 "test/mock_access_token_fetcher.cc", |
| 46 "test/mock_access_token_fetcher.h", | 47 "test/mock_access_token_fetcher.h", |
| 47 "test/refresh_token_store.cc", | 48 "test/refresh_token_store.cc", |
| 48 "test/refresh_token_store.h", | 49 "test/refresh_token_store.h", |
| 50 "test/remote_application_details.h", |
| 49 "test/remote_connection_observer.h", | 51 "test/remote_connection_observer.h", |
| 50 "test/remote_host_info.cc", | 52 "test/remote_host_info.cc", |
| 51 "test/remote_host_info.h", | 53 "test/remote_host_info.h", |
| 52 "test/remote_host_info_fetcher.cc", | 54 "test/remote_host_info_fetcher.cc", |
| 53 "test/remote_host_info_fetcher.h", | 55 "test/remote_host_info_fetcher.h", |
| 54 "test/test_chromoting_client.cc", | 56 "test/test_chromoting_client.cc", |
| 55 "test/test_chromoting_client.h", | 57 "test/test_chromoting_client.h", |
| 56 "test/test_video_renderer.cc", | 58 "test/test_video_renderer.cc", |
| 57 "test/test_video_renderer.h", | 59 "test/test_video_renderer.h", |
| 58 ] | 60 ] |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 deps += [ | 127 deps += [ |
| 126 "//third_party/libjingle:libjingle_webrtc", | 128 "//third_party/libjingle:libjingle_webrtc", |
| 127 "//third_party/libjingle:libpeerconnection", | 129 "//third_party/libjingle:libpeerconnection", |
| 128 ] | 130 ] |
| 129 } | 131 } |
| 130 } | 132 } |
| 131 } else { | 133 } else { |
| 132 group("remoting_unittests") { | 134 group("remoting_unittests") { |
| 133 } | 135 } |
| 134 } | 136 } |
| OLD | NEW |