Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: remoting/host/BUILD.gn

Issue 1963813002: gn/win: Make remoting build in official 32-bit builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698