summaryrefslogtreecommitdiff
path: root/tools/setup.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-11-29 21:50:38 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-11-29 23:12:38 -0800
commit1ac293460431b49023aca954a0b065211f6b5c5d (patch)
tree363c69986e09fd2b018fe8f4206bd8eb61c5f87a /tools/setup.py
parentb6fda735ee0106b72500d927b9695a27ecd519f3 (diff)
Make //build a git submodule
So we can float patches before sending them upstream. https://github.com/denoland/chromium_build Remove build_extra/toolchain
Diffstat (limited to 'tools/setup.py')
-rwxr-xr-xtools/setup.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/setup.py b/tools/setup.py
index 57f99f8a4..44c183553 100755
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -122,12 +122,7 @@ def generate_gn_args(mode):
if cc_wrapper:
# The gn toolchain does not shell escape cc_wrapper, so do it here.
out += ['cc_wrapper=%s' % gn_string(shell_quote(cc_wrapper))]
- # For cc_wrapper to work on Windows, we need to select our own toolchain
- # by overriding 'custom_toolchain' and 'host_toolchain'.
- # TODO: Is there a way to use it without the involvement of args.gn?
if os.name == "nt":
- tc = "//build_extra/toolchain/win:win_clang_x64"
- out += ['custom_toolchain="%s"' % tc, 'host_toolchain="%s"' % tc]
# Disable treat_warnings_as_errors until this sccache bug is fixed:
# https://github.com/mozilla/sccache/issues/264
out += ["treat_warnings_as_errors=false"]