| 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 28 matching lines...) Expand all Loading... |
| 39 "test/fake_remote_host_info_fetcher.cc", | 39 "test/fake_remote_host_info_fetcher.cc", |
| 40 "test/fake_remote_host_info_fetcher.h", | 40 "test/fake_remote_host_info_fetcher.h", |
| 41 "test/fake_socket_factory.cc", | 41 "test/fake_socket_factory.cc", |
| 42 "test/fake_socket_factory.h", | 42 "test/fake_socket_factory.h", |
| 43 "test/leaky_bucket.cc", | 43 "test/leaky_bucket.cc", |
| 44 "test/leaky_bucket.h", | 44 "test/leaky_bucket.h", |
| 45 "test/mock_access_token_fetcher.cc", | 45 "test/mock_access_token_fetcher.cc", |
| 46 "test/mock_access_token_fetcher.h", | 46 "test/mock_access_token_fetcher.h", |
| 47 "test/refresh_token_store.cc", | 47 "test/refresh_token_store.cc", |
| 48 "test/refresh_token_store.h", | 48 "test/refresh_token_store.h", |
| 49 "test/remote_application_data.cc", |
| 50 "test/remote_application_data.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 |