Chromium Code Reviews| Index: build/vs_toolchain.py |
| diff --git a/build/vs_toolchain.py b/build/vs_toolchain.py |
| index 4b925f0799f2ade1abbb97834b44ebdddc591a85..287aed6f2ff6445aa6e6698a7eeb8d6ac1080bb6 100644 |
| --- a/build/vs_toolchain.py |
| +++ b/build/vs_toolchain.py |
| @@ -143,8 +143,15 @@ def GetToolchainDir(): |
| """Gets location information about the current toolchain (must have been |
| previously updated by 'update').""" |
|
scottmg
2014/05/28 17:42:21
Add a comment that this is used for GN here (I cou
|
| SetEnvironmentAndGetRuntimeDllDirs() |
| - print '["%s", "%s"]' % ( |
| - os.environ['GYP_MSVS_OVERRIDE_PATH'], os.environ['WINDOWSSDKDIR']) |
| + print """vs_path = "%s" |
|
brettw
2014/05/28 05:29:55
I wasn't sure how to wrap this.
scottmg
2014/05/28 17:42:21
""" -> '''
|
| +sdk_path = "%s" |
| +vs_version = "%s" |
| +wdk_dir = "%s" |
| +""" % ( |
| + os.environ['GYP_MSVS_OVERRIDE_PATH'], |
| + os.environ['WINDOWSSDKDIR'], |
| + os.environ['GYP_MSVS_VERSION'], |
| + os.environ['WDK_DIR']) |
| def main(): |