summaryrefslogtreecommitdiff
path: root/chromium/tools/win/setenv.py
blob: ca9fc3dc4dda7f8325c941cb697f5ec14d8d997b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright (c) 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""
Helper script to do the heavy lifting for setenv.bat.
"""

from __future__ import print_function

import os
import sys

script_path = os.path.abspath(os.path.dirname(__file__))
build_path = os.path.normpath(os.path.join(script_path, '..', '..', 'build'))
sys.path.append(build_path)

import vs_toolchain

if bool(int(os.environ.get('DEPOT_TOOLS_WIN_TOOLCHAIN', '1'))):
  win_sdk_dir = vs_toolchain.SetEnvironmentAndGetSDKDir()
  script_path = os.path.normpath(os.path.join(win_sdk_dir, 'bin/SetEnv.cmd'))
  print('"%s" /x64' % script_path)
else:
  vs_version = vs_toolchain.GetVisualStudioVersion()
  vs_path = vs_toolchain.DetectVisualStudioPath()
  if vs_version in ['2017', '2019']:
    script_path = os.path.join(vs_path, r'VC\Auxiliary\Build\vcvarsall.bat')
    print('"%s" amd64' % script_path)
  else:
    raise Exception('Unknown VS version %s' % vs_version)