| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "com_imported_mstscax.tlh", | 81 "com_imported_mstscax.tlh", |
| 82 "com_security.cc", | 82 "com_security.cc", |
| 83 "com_security.h", | 83 "com_security.h", |
| 84 "default_audio_device_change_detector.cc", |
| 85 "default_audio_device_change_detector.h", |
| 84 "elevation_helpers.cc", | 86 "elevation_helpers.cc", |
| 85 "elevation_helpers.h", | 87 "elevation_helpers.h", |
| 86 "launch_process_with_token.cc", | 88 "launch_process_with_token.cc", |
| 87 "launch_process_with_token.h", | 89 "launch_process_with_token.h", |
| 88 "omaha.cc", | 90 "omaha.cc", |
| 89 "omaha.h", | 91 "omaha.h", |
| 90 "rdp_client.cc", | 92 "rdp_client.cc", |
| 91 "rdp_client.h", | 93 "rdp_client.h", |
| 92 "rdp_client_window.cc", | 94 "rdp_client_window.cc", |
| 93 "rdp_client_window.h", | 95 "rdp_client_window.h", |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 | 492 |
| 491 output = "$root_gen_dir/remoting/{{source_name_part}}" | 493 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 492 | 494 |
| 493 locale_dir = webapp_locale_dir | 495 locale_dir = webapp_locale_dir |
| 494 | 496 |
| 495 encoding = "utf-16" | 497 encoding = "utf-16" |
| 496 | 498 |
| 497 locales = remoting_locales | 499 locales = remoting_locales |
| 498 } | 500 } |
| 499 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 501 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |