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/util/process_version.gni") | 5 import("//build/util/process_version.gni") |
6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
7 import("//remoting/build/config/remoting_build.gni") | 7 import("//remoting/build/config/remoting_build.gni") |
8 | 8 |
9 group("all_tests") { | 9 group("all_tests") { |
10 testonly = true | 10 testonly = true |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "audio_capturer.cc", | 58 "audio_capturer.cc", |
59 "audio_capturer.h", | 59 "audio_capturer.h", |
60 "audio_capturer_chromeos.cc", | 60 "audio_capturer_chromeos.cc", |
61 "audio_capturer_linux.cc", | 61 "audio_capturer_linux.cc", |
62 "audio_capturer_linux.h", | 62 "audio_capturer_linux.h", |
63 "audio_capturer_mac.cc", | 63 "audio_capturer_mac.cc", |
64 "audio_capturer_win.cc", | 64 "audio_capturer_win.cc", |
65 "audio_capturer_win.h", | 65 "audio_capturer_win.h", |
66 "audio_silence_detector.cc", | 66 "audio_silence_detector.cc", |
67 "audio_silence_detector.h", | 67 "audio_silence_detector.h", |
| 68 "audio_volume_filter.cc", |
| 69 "audio_volume_filter.h", |
68 "backoff_timer.cc", | 70 "backoff_timer.cc", |
69 "backoff_timer.h", | 71 "backoff_timer.h", |
70 "basic_desktop_environment.cc", | 72 "basic_desktop_environment.cc", |
71 "basic_desktop_environment.h", | 73 "basic_desktop_environment.h", |
72 "branding.cc", | 74 "branding.cc", |
73 "branding.h", | 75 "branding.h", |
74 "chromoting_host.cc", | 76 "chromoting_host.cc", |
75 "chromoting_host.h", | 77 "chromoting_host.h", |
76 "chromoting_host_context.cc", | 78 "chromoting_host_context.cc", |
77 "chromoting_host_context.h", | 79 "chromoting_host_context.h", |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 ] | 433 ] |
432 } | 434 } |
433 } | 435 } |
434 | 436 |
435 # The host portions of the remoting unit tests. | 437 # The host portions of the remoting unit tests. |
436 source_set("unit_tests") { | 438 source_set("unit_tests") { |
437 testonly = true | 439 testonly = true |
438 | 440 |
439 sources = [ | 441 sources = [ |
440 "audio_silence_detector_unittest.cc", | 442 "audio_silence_detector_unittest.cc", |
| 443 "audio_volume_filter_unittest.cc", |
441 "backoff_timer_unittest.cc", | 444 "backoff_timer_unittest.cc", |
442 "chromoting_host_context_unittest.cc", | 445 "chromoting_host_context_unittest.cc", |
443 "chromoting_host_unittest.cc", | 446 "chromoting_host_unittest.cc", |
444 "client_session_unittest.cc", | 447 "client_session_unittest.cc", |
445 "config_file_watcher_unittest.cc", | 448 "config_file_watcher_unittest.cc", |
446 "daemon_process_unittest.cc", | 449 "daemon_process_unittest.cc", |
447 "desktop_process_unittest.cc", | 450 "desktop_process_unittest.cc", |
448 "gcd_rest_client_unittest.cc", | 451 "gcd_rest_client_unittest.cc", |
449 "gcd_state_updater_unittest.cc", | 452 "gcd_state_updater_unittest.cc", |
450 "heartbeat_sender_unittest.cc", | 453 "heartbeat_sender_unittest.cc", |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 group("remoting_me2me_host_archive") { | 796 group("remoting_me2me_host_archive") { |
794 deps = [ | 797 deps = [ |
795 "//remoting/host/installer/mac:remoting_me2me_host_archive", | 798 "//remoting/host/installer/mac:remoting_me2me_host_archive", |
796 ] | 799 ] |
797 } | 800 } |
798 } else { | 801 } else { |
799 group("remoting_me2me_host_archive") { | 802 group("remoting_me2me_host_archive") { |
800 } | 803 } |
801 } | 804 } |
802 } | 805 } |
OLD | NEW |