| 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 ] | 423 ] |
| 424 | 424 |
| 425 defines = host_predefines + [ "REMOTING_HOST_BINARY=BINARY_DESKTOP" ] | 425 defines = host_predefines + [ "REMOTING_HOST_BINARY=BINARY_DESKTOP" ] |
| 426 | 426 |
| 427 deps = [ | 427 deps = [ |
| 428 ":remoting_core", | 428 ":remoting_core", |
| 429 ":remoting_windows_resources", | 429 ":remoting_windows_resources", |
| 430 ] | 430 ] |
| 431 | 431 |
| 432 if (is_official_build) { | 432 if (is_official_build) { |
| 433 deps += [ ":dpi_aware_elevated_exe_manifest" ] | 433 deps += [ ":dpi_aware_uiaccess_require_admin_exe_manifest" ] |
| 434 } else { | 434 } else { |
| 435 deps += [ ":dpi_aware_exe_manifest" ] | 435 deps += [ ":dpi_aware_exe_manifest" ] |
| 436 } | 436 } |
| 437 | 437 |
| 438 sources = [ | 438 sources = [ |
| 439 "$root_gen_dir/remoting/version.rc", | 439 "$root_gen_dir/remoting/version.rc", |
| 440 "entry_point.cc", | 440 "entry_point.cc", |
| 441 ] | 441 ] |
| 442 | 442 |
| 443 ldflags = [ | 443 ldflags = [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 | 482 |
| 483 output = "$root_gen_dir/remoting/{{source_name_part}}" | 483 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 484 | 484 |
| 485 locale_dir = webapp_locale_dir | 485 locale_dir = webapp_locale_dir |
| 486 | 486 |
| 487 encoding = "utf-16" | 487 encoding = "utf-16" |
| 488 | 488 |
| 489 locales = remoting_locales | 489 locales = remoting_locales |
| 490 } | 490 } |
| 491 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 491 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |