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

Unified Diff: win_toolchain/package_from_installed.py

Issue 1776283002: Let package_from_installed actually package the json files it now writes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win_toolchain/package_from_installed.py
diff --git a/win_toolchain/package_from_installed.py b/win_toolchain/package_from_installed.py
index d0d30ff96f685ba09d97f568e2bcba8d5e10d8de..c1f5e809bdb40af6092247fa7168e0dd023d5292 100644
--- a/win_toolchain/package_from_installed.py
+++ b/win_toolchain/package_from_installed.py
@@ -287,6 +287,10 @@ def AddEnvSetup(files):
GenerateSetEnvCmd(tempdir)
files.append((os.path.join(tempdir, 'win_sdk', 'bin', 'SetEnv.cmd'),
'win_sdk\\bin\\SetEnv.cmd'))
+ files.append((os.path.join(tempdir, 'win_sdk', 'bin', 'SetEnv.x86.json'),
+ 'win_sdk\\bin\\SetEnv.x86.json'))
+ files.append((os.path.join(tempdir, 'win_sdk', 'bin', 'SetEnv.x64.json'),
+ 'win_sdk\\bin\\SetEnv.x64.json'))
vs_version_file = os.path.join(tempdir, 'VS_VERSION')
with open(vs_version_file, 'wb') as version:
print >>version, VS_VERSION
« 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