| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//remoting/remoting_enable.gni") | 9 import("//remoting/remoting_enable.gni") |
| 10 import("//remoting/remoting_locales.gni") | 10 import("//remoting/remoting_locales.gni") |
| (...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 "$root_out_dir/remoting/com.google.chrome.remote_assistance.js
on", | 1066 "$root_out_dir/remoting/com.google.chrome.remote_assistance.js
on", |
| 1067 "$root_out_dir/remoting/com.google.chrome.remote_desktop.json"
, | 1067 "$root_out_dir/remoting/com.google.chrome.remote_desktop.json"
, |
| 1068 "$root_out_dir/icudtl.dat", | 1068 "$root_out_dir/icudtl.dat", |
| 1069 ], | 1069 ], |
| 1070 root_build_dir) | 1070 root_build_dir) |
| 1071 _extra_files = [] | 1071 _extra_files = [] |
| 1072 if (is_chrome_branded) { | 1072 if (is_chrome_branded) { |
| 1073 if (target_cpu == "x64") { | 1073 if (target_cpu == "x64") { |
| 1074 _redist_cpu_path = "amd64" | 1074 _redist_cpu_path = "amd64" |
| 1075 } else { | 1075 } else { |
| 1076 _redist_cpu_path = "x64" | 1076 _redist_cpu_path = "x86" |
| 1077 } | 1077 } |
| 1078 _generated_files += | 1078 _generated_files += |
| 1079 [ rebase_path("//third_party/platformsdk_win7/files/Redist/" + | 1079 [ rebase_path("//third_party/platformsdk_win7/files/Redist/" + |
| 1080 "$_redist_cpu_path/sas.dll", | 1080 "$_redist_cpu_path/sas.dll", |
| 1081 root_build_dir) ] | 1081 root_build_dir) ] |
| 1082 _extra_files += [ "files/sas.dll" ] | 1082 _extra_files += [ "files/sas.dll" ] |
| 1083 } | 1083 } |
| 1084 | 1084 |
| 1085 args = [ | 1085 args = [ |
| 1086 rebase_path("$root_gen_dir/installation", root_build_dir), | 1086 rebase_path("$root_gen_dir/installation", root_build_dir), |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 "--target_arch", | 1144 "--target_arch", |
| 1145 "$target_cpu", | 1145 "$target_cpu", |
| 1146 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", | 1146 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", |
| 1147 root_build_dir), | 1147 root_build_dir), |
| 1148 rebase_path(outputs[0], root_build_dir), | 1148 rebase_path(outputs[0], root_build_dir), |
| 1149 ] | 1149 ] |
| 1150 } | 1150 } |
| 1151 } | 1151 } |
| 1152 } | 1152 } |
| 1153 } | 1153 } |
| OLD | NEW |