| 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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 remoting_localize("remoting_windows_resources") { | 450 remoting_localize("remoting_windows_resources") { |
| 451 deps = [ | 451 deps = [ |
| 452 "//remoting/resources", | 452 "//remoting/resources", |
| 453 ] | 453 ] |
| 454 | 454 |
| 455 sources = [ | 455 sources = [ |
| 456 "core.rc.jinja2", | 456 "core.rc.jinja2", |
| 457 "version.rc.jinja2", | 457 "version.rc.jinja2", |
| 458 ] | 458 ] |
| 459 | 459 |
| 460 # TODO(zijiehe): Export lastchange_path from | |
| 461 # //chrome/version.gni:process_version | |
| 462 variables = [ | 460 variables = [ |
| 463 rebase_path(chrome_version_file), | 461 rebase_path(chrome_version_file), |
| 464 rebase_path(remoting_version_file), | 462 rebase_path(remoting_version_file), |
| 465 rebase_path("//build/util/LASTCHANGE"), | 463 rebase_path("//build/util/LASTCHANGE"), |
| 466 ] | 464 ] |
| 467 | 465 |
| 468 output = "$root_gen_dir/remoting/{{source_name_part}}" | 466 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 469 | 467 |
| 470 locale_dir = webapp_locale_dir | 468 locale_dir = webapp_locale_dir |
| 471 | 469 |
| 472 encoding = "utf-16" | 470 encoding = "utf-16" |
| 473 | 471 |
| 474 locales = remoting_locales | 472 locales = remoting_locales |
| 475 } | 473 } |
| 476 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 474 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |