Commit a7e20a87 authored by Hans Wennborg's avatar Hans Wennborg Committed by Commit Bot

Remove tools/clang/scripts/download_lld_mac.py

All uses have been replaced by calls to update.py --package=lld_mac.

Bug: 884608
Change-Id: Ib6332549792a9bd2b6705c8b7a7fe597bbc9545f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917369
Auto-Submit: Hans Wennborg <hans@chromium.org>
Commit-Queue: Reid Kleckner <rnk@chromium.org>
Reviewed-by: default avatarReid Kleckner <rnk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#715755}
parent 096c8c8c
#!/usr/bin/env python
# Copyright 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.
"""Script to download lld/mac from google storage."""
import sys
import update
# TODO(hans): Remove this forwarding hack after all callers of this script have
# been updated to call update.py instead.
if __name__ == '__main__':
sys.argv = [sys.argv[0], '--package=lld_mac']
sys.exit(update.main())
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment