OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/toolchain/win/midl.gni") | 5 import("//build/toolchain/win/midl.gni") |
6 import("//build/win/message_compiler.gni") | 6 import("//build/win/message_compiler.gni") |
7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
8 import("//remoting/build/config/remoting_build.gni") | 8 import("//remoting/build/config/remoting_build.gni") |
9 import("//remoting/host/installer/win/generate_clsids.gni") | 9 import("//remoting/host/installer/win/generate_clsids.gni") |
10 | 10 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 common_controls_manifest, | 71 common_controls_manifest, |
72 default_compatibility_manifest, | 72 default_compatibility_manifest, |
73 dpi_aware_manifest, | 73 dpi_aware_manifest, |
74 enable_uiaccess_require_admin_manifest, | 74 enable_uiaccess_require_admin_manifest, |
75 ] | 75 ] |
76 type = "exe" | 76 type = "exe" |
77 } | 77 } |
78 | 78 |
79 source_set("win") { | 79 source_set("win") { |
80 sources = [ | 80 sources = [ |
| 81 "audio_volume_filter_win.cc", |
| 82 "audio_volume_filter_win.h", |
81 "com_imported_mstscax.tlh", | 83 "com_imported_mstscax.tlh", |
82 "com_security.cc", | 84 "com_security.cc", |
83 "com_security.h", | 85 "com_security.h", |
84 "default_audio_device_change_detector.cc", | 86 "default_audio_device_change_detector.cc", |
85 "default_audio_device_change_detector.h", | 87 "default_audio_device_change_detector.h", |
86 "elevation_helpers.cc", | 88 "elevation_helpers.cc", |
87 "elevation_helpers.h", | 89 "elevation_helpers.h", |
88 "launch_process_with_token.cc", | 90 "launch_process_with_token.cc", |
89 "launch_process_with_token.h", | 91 "launch_process_with_token.h", |
90 "omaha.cc", | 92 "omaha.cc", |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 | 498 |
497 output = "$root_gen_dir/remoting/{{source_name_part}}" | 499 output = "$root_gen_dir/remoting/{{source_name_part}}" |
498 | 500 |
499 locale_dir = webapp_locale_dir | 501 locale_dir = webapp_locale_dir |
500 | 502 |
501 encoding = "utf-16" | 503 encoding = "utf-16" |
502 | 504 |
503 locales = remoting_locales | 505 locales = remoting_locales |
504 } | 506 } |
505 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 507 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
OLD | NEW |