| 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 action("remoting_me2me_host_archive") { | 10 action("remoting_me2me_host_archive") { |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 rebase_path("$root_gen_dir/remoting_installation", root_build_dir), | 133 rebase_path("$root_gen_dir/remoting_installation", root_build_dir), |
| 134 "--target_arch", | 134 "--target_arch", |
| 135 msi_script_arch, | 135 msi_script_arch, |
| 136 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", | 136 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", |
| 137 root_build_dir), | 137 root_build_dir), |
| 138 rebase_path(outputs[0], root_build_dir), | 138 rebase_path(outputs[0], root_build_dir), |
| 139 ] | 139 ] |
| 140 } | 140 } |
| 141 } else { | 141 } else { |
| 142 group("remoting_host_installation") { | 142 group("remoting_host_installation") { |
| 143 # We still want to build host archive under other configurations. |
| 144 deps = [ |
| 145 "//remoting/host:remoting_me2me_host_archive", |
| 146 ] |
| 143 } | 147 } |
| 144 } | 148 } |
| OLD | NEW |