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

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

Issue 2229673002: Fixing the broken CRD Windows MSI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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("//chrome/version.gni") 9 import("//chrome/version.gni")
10 import("//remoting/remoting_enable.gni") 10 import("//remoting/remoting_enable.gni")
(...skipping 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after
1291 "$root_out_dir/remoting_host.exe", 1291 "$root_out_dir/remoting_host.exe",
1292 "$root_out_dir/remoting_native_messaging_host.exe", 1292 "$root_out_dir/remoting_native_messaging_host.exe",
1293 "$root_out_dir/remoting_start_host.exe", 1293 "$root_out_dir/remoting_start_host.exe",
1294 "$root_gen_dir/remoting/CREDITS.txt", 1294 "$root_gen_dir/remoting/CREDITS.txt",
1295 "$root_out_dir/remoting/com.google.chrome.remote_assistance.json", 1295 "$root_out_dir/remoting/com.google.chrome.remote_assistance.json",
1296 "$root_out_dir/remoting/com.google.chrome.remote_desktop.json", 1296 "$root_out_dir/remoting/com.google.chrome.remote_desktop.json",
1297 "$root_out_dir/icudtl.dat", 1297 "$root_out_dir/icudtl.dat",
1298 ] 1298 ]
1299 1299
1300 _generated_files = rebase_path(inputs, root_build_dir) 1300 _generated_files = rebase_path(inputs, root_build_dir)
1301 _extra_files = [] 1301 _generated_files += [ rebase_path("//remoting/resources/chromoting.ico") ]
1302
1303 # _generated_dst_files must contain the same files in the same order as
1304 # _generated_files, otherwise the Windows MSI will not be built correctly.
1305 _generated_dst_files = [
1306 "files/remote_assistance_host.exe",
1307 "files/remote_security_key.exe",
1308 "files/remoting_core.dll",
1309 "files/remoting_desktop.exe",
1310 "files/remoting_host.exe",
1311 "files/remoting_native_messaging_host.exe",
1312 "files/remoting_start_host.exe",
1313 "files/CREDITS.txt",
1314 "files/com.google.chrome.remote_assistance.json",
1315 "files/com.google.chrome.remote_desktop.json",
1316 "files/icudtl.dat",
1317 "files/chromoting.ico",
1318 ]
1302 1319
1303 args = 1320 args =
1304 [ 1321 [
1305 rebase_path("$root_gen_dir/remoting_installation", root_build_dir), 1322 rebase_path("$root_gen_dir/remoting_installation", root_build_dir),
1306 rebase_path(_output, root_build_dir), 1323 rebase_path(_output, root_build_dir),
1307 "--source-file-roots", 1324 "--source-file-roots",
1308 rebase_path("//remoting/host/installer/win"), 1325 rebase_path("//remoting/host/installer/win"),
1309 "--source-files", 1326 "--source-files",
1310 rebase_path("//remoting/host/installer/win/chromoting.wxs"), 1327 rebase_path("//remoting/host/installer/win/chromoting.wxs"),
1311 rebase_path("//remoting/host/installer/win/parameters.json"), 1328 rebase_path("//remoting/host/installer/win/parameters.json"),
1312 1329
1313 # Input files 1330 # Input files
1314 "--generated-files", 1331 "--generated-files",
1315 ] + _generated_files + 1332 ] + _generated_files +
1316 [ 1333 [
1317 rebase_path("//remoting/resources/chromoting.ico"),
1318
1319 # Position of files in zip file 1334 # Position of files in zip file
1320 "--generated-files-dst", 1335 "--generated-files-dst",
1321 "files/remote_assistance_host.exe", 1336 ] + _generated_dst_files +
1322 "files/remote_security_key.exe",
1323 "files/remoting_core.dll",
1324 "files/remoting_desktop.exe",
1325 "files/remoting_host.exe",
1326 "files/remoting_native_messaging_host.exe",
1327 "files/remoting_start_host.exe",
1328 "files/CREDITS.txt",
1329 "files/com.google.chrome.remote_assistance.json",
1330 "files/com.google.chrome.remote_desktop.json",
1331 "files/chromoting.ico",
1332 "files/icudtl.dat",
1333 ] + _extra_files + # Defs
1334 [ 1337 [
1338 # Defs
1335 "--defs", 1339 "--defs",
1336 "BRANDING=$_branding", 1340 "BRANDING=$_branding",
1337 "DAEMON_CONTROLLER_CLSID={$daemon_controller_clsid}", 1341 "DAEMON_CONTROLLER_CLSID={$daemon_controller_clsid}",
1338 "RDP_DESKTOP_SESSION_CLSID={$rdp_desktop_session_clsid}", 1342 "RDP_DESKTOP_SESSION_CLSID={$rdp_desktop_session_clsid}",
1339 "VERSION=$chrome_version_full", 1343 "VERSION=$chrome_version_full",
1340 "OFFICIAL_BUILD=$_official_build", 1344 "OFFICIAL_BUILD=$_official_build",
1341 ] 1345 ]
1342 } 1346 }
1343 } else if (is_mac) { 1347 } else if (is_mac) {
1344 import("//build/config/zip.gni") 1348 import("//build/config/zip.gni")
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1658 root_build_dir), 1662 root_build_dir),
1659 rebase_path(outputs[0], root_build_dir), 1663 rebase_path(outputs[0], root_build_dir),
1660 ] 1664 ]
1661 } 1665 }
1662 } else { 1666 } else {
1663 group("remoting_host_installation") { 1667 group("remoting_host_installation") {
1664 } 1668 }
1665 } 1669 }
1666 } 1670 }
1667 } 1671 }
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