您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

38 行
1.5 KiB

  1. # Copyright (c) 2015, Google Inc.
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  10. # SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  12. # OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. import subprocess
  15. import sys
  16. import vs_toolchain
  17. # vs_toolchain adds gyp to sys.path.
  18. import gyp.MSVSVersion
  19. if len(sys.argv) < 2:
  20. print >>sys.stderr, "Usage: vs_env.py TARGET_ARCH CMD..."
  21. sys.exit(1)
  22. target_arch = sys.argv[1]
  23. cmd = sys.argv[2:]
  24. vs_toolchain.SetEnvironmentAndGetRuntimeDllDirs()
  25. vs_version = gyp.MSVSVersion.SelectVisualStudioVersion()
  26. # Using shell=True is somewhat ugly, but the alternative is to pull in a copy
  27. # of the Chromium GN build's setup_toolchain.py which runs the setup script,
  28. # then 'set', and then parses the environment variables out. (GYP internally
  29. # does the same thing.)
  30. sys.exit(subprocess.call(vs_version.SetupScript(target_arch) + ["&&"] + cmd,
  31. shell=True))