| OLD | NEW |
| 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 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("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 import("//remoting/remoting_enable.gni") | 10 import("//remoting/remoting_enable.gni") |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "//third_party/webrtc/modules/desktop_capture", | 286 "//third_party/webrtc/modules/desktop_capture", |
| 287 ] | 287 ] |
| 288 } | 288 } |
| 289 } | 289 } |
| 290 | 290 |
| 291 # The host portions of the remoting unit tests. | 291 # The host portions of the remoting unit tests. |
| 292 source_set("unit_tests") { | 292 source_set("unit_tests") { |
| 293 testonly = true | 293 testonly = true |
| 294 | 294 |
| 295 sources = [ | 295 sources = [ |
| 296 "audio_pump_unittest.cc", | |
| 297 "audio_silence_detector_unittest.cc", | 296 "audio_silence_detector_unittest.cc", |
| 298 "backoff_timer_unittest.cc", | 297 "backoff_timer_unittest.cc", |
| 299 "chromeos/aura_desktop_capturer_unittest.cc", | 298 "chromeos/aura_desktop_capturer_unittest.cc", |
| 300 "chromeos/clipboard_aura_unittest.cc", | 299 "chromeos/clipboard_aura_unittest.cc", |
| 301 "chromoting_host_context_unittest.cc", | 300 "chromoting_host_context_unittest.cc", |
| 302 "chromoting_host_unittest.cc", | 301 "chromoting_host_unittest.cc", |
| 303 "client_session_unittest.cc", | 302 "client_session_unittest.cc", |
| 304 "config_file_watcher_unittest.cc", | 303 "config_file_watcher_unittest.cc", |
| 305 "daemon_process_unittest.cc", | 304 "daemon_process_unittest.cc", |
| 306 "desktop_process_unittest.cc", | 305 "desktop_process_unittest.cc", |
| (...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1658 root_build_dir), | 1657 root_build_dir), |
| 1659 rebase_path(outputs[0], root_build_dir), | 1658 rebase_path(outputs[0], root_build_dir), |
| 1660 ] | 1659 ] |
| 1661 } | 1660 } |
| 1662 } else { | 1661 } else { |
| 1663 group("remoting_host_installation") { | 1662 group("remoting_host_installation") { |
| 1664 } | 1663 } |
| 1665 } | 1664 } |
| 1666 } | 1665 } |
| 1667 } | 1666 } |
| OLD | NEW |