| 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("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 import("//remoting/host/installer/win/generate_clsids.gni") | 6 import("//remoting/host/installer/win/generate_clsids.gni") |
| 7 import("//build/toolchain/win/midl.gni") | 7 import("//build/toolchain/win/midl.gni") |
| 8 import("//build/win/message_compiler.gni") | 8 import("//build/win/message_compiler.gni") |
| 9 | 9 |
| 10 group("all") { | 10 group("all") { |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 ] | 422 ] |
| 423 | 423 |
| 424 defines = host_predefines + [ "BINARY=BINARY_DESKTOP" ] | 424 defines = host_predefines + [ "BINARY=BINARY_DESKTOP" ] |
| 425 | 425 |
| 426 deps = [ | 426 deps = [ |
| 427 ":remoting_core", | 427 ":remoting_core", |
| 428 ":remoting_windows_resources", | 428 ":remoting_windows_resources", |
| 429 ] | 429 ] |
| 430 | 430 |
| 431 if (is_official_build) { | 431 if (is_official_build) { |
| 432 deps += [ ":dpi_aware_elevated_exe_manifest" ] | 432 deps += [ ":dpi_aware_uiaccess_require_admin_exe_manifest" ] |
| 433 } else { | 433 } else { |
| 434 deps += [ ":dpi_aware_exe_manifest" ] | 434 deps += [ ":dpi_aware_exe_manifest" ] |
| 435 } | 435 } |
| 436 | 436 |
| 437 sources = [ | 437 sources = [ |
| 438 "$root_gen_dir/remoting/version.rc", | 438 "$root_gen_dir/remoting/version.rc", |
| 439 "entry_point.cc", | 439 "entry_point.cc", |
| 440 ] | 440 ] |
| 441 | 441 |
| 442 ldflags = [ | 442 ldflags = [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 | 480 |
| 481 output = "$root_gen_dir/remoting/{{source_name_part}}" | 481 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 482 | 482 |
| 483 locale_dir = webapp_locale_dir | 483 locale_dir = webapp_locale_dir |
| 484 | 484 |
| 485 encoding = "utf-16" | 485 encoding = "utf-16" |
| 486 | 486 |
| 487 locales = remoting_locales | 487 locales = remoting_locales |
| 488 } | 488 } |
| 489 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 489 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |