| 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("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 | 6 |
| 7 process_version("remoting_version") { | 7 process_version("remoting_version") { |
| 8 template_file = "//remoting/host/version.h.in" | 8 template_file = "//remoting/host/version.h.in" |
| 9 sources = [ | 9 sources = [ |
| 10 branding_path, | 10 branding_path, |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 static_library("host") { | 101 static_library("host") { |
| 102 sources = [ | 102 sources = [ |
| 103 "audio_capturer.cc", | 103 "audio_capturer.cc", |
| 104 "audio_capturer.h", | 104 "audio_capturer.h", |
| 105 "audio_capturer_android.cc", | 105 "audio_capturer_android.cc", |
| 106 "audio_capturer_linux.cc", | 106 "audio_capturer_linux.cc", |
| 107 "audio_capturer_linux.h", | 107 "audio_capturer_linux.h", |
| 108 "audio_capturer_mac.cc", | 108 "audio_capturer_mac.cc", |
| 109 "audio_capturer_win.cc", | 109 "audio_capturer_win.cc", |
| 110 "audio_capturer_win.h", | 110 "audio_capturer_win.h", |
| 111 "audio_pump.cc", | |
| 112 "audio_pump.h", | |
| 113 "audio_silence_detector.cc", | 111 "audio_silence_detector.cc", |
| 114 "audio_silence_detector.h", | 112 "audio_silence_detector.h", |
| 115 "backoff_timer.cc", | 113 "backoff_timer.cc", |
| 116 "backoff_timer.h", | 114 "backoff_timer.h", |
| 117 "basic_desktop_environment.cc", | 115 "basic_desktop_environment.cc", |
| 118 "basic_desktop_environment.h", | 116 "basic_desktop_environment.h", |
| 119 "branding.cc", | 117 "branding.cc", |
| 120 "branding.h", | 118 "branding.h", |
| 121 "chromeos/aura_desktop_capturer.cc", | 119 "chromeos/aura_desktop_capturer.cc", |
| 122 "chromeos/aura_desktop_capturer.h", | 120 "chromeos/aura_desktop_capturer.h", |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 "//third_party/webrtc/modules/desktop_capture", | 553 "//third_party/webrtc/modules/desktop_capture", |
| 556 ] | 554 ] |
| 557 } | 555 } |
| 558 } | 556 } |
| 559 | 557 |
| 560 # The host portions of the remoting unit tests. | 558 # The host portions of the remoting unit tests. |
| 561 source_set("unit_tests") { | 559 source_set("unit_tests") { |
| 562 testonly = true | 560 testonly = true |
| 563 | 561 |
| 564 sources = [ | 562 sources = [ |
| 565 "audio_pump_unittest.cc", | |
| 566 "audio_silence_detector_unittest.cc", | 563 "audio_silence_detector_unittest.cc", |
| 567 "backoff_timer_unittest.cc", | 564 "backoff_timer_unittest.cc", |
| 568 "chromeos/aura_desktop_capturer_unittest.cc", | 565 "chromeos/aura_desktop_capturer_unittest.cc", |
| 569 "chromeos/clipboard_aura_unittest.cc", | 566 "chromeos/clipboard_aura_unittest.cc", |
| 570 "chromoting_host_context_unittest.cc", | 567 "chromoting_host_context_unittest.cc", |
| 571 "chromoting_host_unittest.cc", | 568 "chromoting_host_unittest.cc", |
| 572 "client_session_unittest.cc", | 569 "client_session_unittest.cc", |
| 573 "config_file_watcher_unittest.cc", | 570 "config_file_watcher_unittest.cc", |
| 574 "daemon_process_unittest.cc", | 571 "daemon_process_unittest.cc", |
| 575 "desktop_process_unittest.cc", | 572 "desktop_process_unittest.cc", |
| (...skipping 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1904 root_build_dir), | 1901 root_build_dir), |
| 1905 rebase_path(outputs[0], root_build_dir), | 1902 rebase_path(outputs[0], root_build_dir), |
| 1906 ] | 1903 ] |
| 1907 } | 1904 } |
| 1908 } else { | 1905 } else { |
| 1909 group("remoting_host_installation") { | 1906 group("remoting_host_installation") { |
| 1910 } | 1907 } |
| 1911 } | 1908 } |
| 1912 } | 1909 } |
| 1913 } | 1910 } |
| OLD | NEW |