| # Copyright 2019 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| declare_args() { | |
| if (host_os == "linux") { | |
| clang_base_path = "//buildtools/linux64/clang-linux-amd64" | |
| } else if (host_os == "mac") { | |
| clang_base_path = "//buildtools/mac64/clang-mac-amd64" | |
| } else { | |
| assert(defined(clang_base_path), "host_os is not linux or mac: " + host_os) | |
| } | |
| } |