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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 sources = [ | 57 sources = [ |
58 "audio_capturer.cc", | 58 "audio_capturer.cc", |
59 "audio_capturer.h", | 59 "audio_capturer.h", |
60 "audio_capturer_linux.cc", | 60 "audio_capturer_linux.cc", |
61 "audio_capturer_linux.h", | 61 "audio_capturer_linux.h", |
62 "audio_capturer_mac.cc", | 62 "audio_capturer_mac.cc", |
63 "audio_capturer_win.cc", | 63 "audio_capturer_win.cc", |
64 "audio_capturer_win.h", | 64 "audio_capturer_win.h", |
65 "audio_silence_detector.cc", | 65 "audio_silence_detector.cc", |
66 "audio_silence_detector.h", | 66 "audio_silence_detector.h", |
| 67 "audio_volume_applier.cc", |
| 68 "audio_volume_applier.h", |
67 "backoff_timer.cc", | 69 "backoff_timer.cc", |
68 "backoff_timer.h", | 70 "backoff_timer.h", |
69 "basic_desktop_environment.cc", | 71 "basic_desktop_environment.cc", |
70 "basic_desktop_environment.h", | 72 "basic_desktop_environment.h", |
71 "branding.cc", | 73 "branding.cc", |
72 "branding.h", | 74 "branding.h", |
73 "chromeos/aura_desktop_capturer.cc", | 75 "chromeos/aura_desktop_capturer.cc", |
74 "chromeos/aura_desktop_capturer.h", | 76 "chromeos/aura_desktop_capturer.h", |
75 "chromeos/clipboard_aura.cc", | 77 "chromeos/clipboard_aura.cc", |
76 "chromeos/clipboard_aura.h", | 78 "chromeos/clipboard_aura.h", |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 ] | 473 ] |
472 } | 474 } |
473 } | 475 } |
474 | 476 |
475 # The host portions of the remoting unit tests. | 477 # The host portions of the remoting unit tests. |
476 source_set("unit_tests") { | 478 source_set("unit_tests") { |
477 testonly = true | 479 testonly = true |
478 | 480 |
479 sources = [ | 481 sources = [ |
480 "audio_silence_detector_unittest.cc", | 482 "audio_silence_detector_unittest.cc", |
| 483 "audio_volume_applier_unittest.cc", |
481 "backoff_timer_unittest.cc", | 484 "backoff_timer_unittest.cc", |
482 "chromeos/aura_desktop_capturer_unittest.cc", | 485 "chromeos/aura_desktop_capturer_unittest.cc", |
483 "chromeos/clipboard_aura_unittest.cc", | 486 "chromeos/clipboard_aura_unittest.cc", |
484 "chromoting_host_context_unittest.cc", | 487 "chromoting_host_context_unittest.cc", |
485 "chromoting_host_unittest.cc", | 488 "chromoting_host_unittest.cc", |
486 "client_session_unittest.cc", | 489 "client_session_unittest.cc", |
487 "config_file_watcher_unittest.cc", | 490 "config_file_watcher_unittest.cc", |
488 "daemon_process_unittest.cc", | 491 "daemon_process_unittest.cc", |
489 "desktop_process_unittest.cc", | 492 "desktop_process_unittest.cc", |
490 "gcd_rest_client_unittest.cc", | 493 "gcd_rest_client_unittest.cc", |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 group("remoting_me2me_host_archive") { | 836 group("remoting_me2me_host_archive") { |
834 deps = [ | 837 deps = [ |
835 "//remoting/host/installer/mac:remoting_me2me_host_archive", | 838 "//remoting/host/installer/mac:remoting_me2me_host_archive", |
836 ] | 839 ] |
837 } | 840 } |
838 } else { | 841 } else { |
839 group("remoting_me2me_host_archive") { | 842 group("remoting_me2me_host_archive") { |
840 } | 843 } |
841 } | 844 } |
842 } | 845 } |
OLD | NEW |