mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
3c7075baca
This reverts commitfc9383ed41
. Reason for revert: After discussion with athom, the breakage is a known temporary situation. Original change's description: > Revert "[build] Use Fuchsia windows clang toolchain" > > This reverts commite479049467
. > > Reason for revert: Broke build on vm-fuchsia-release-x64. > > Original change's description: > > [build] Use Fuchsia windows clang toolchain > > > > Change-Id: Ie04039c736f40174cc45a61aa637a88fa53d9024 > > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/201862 > > Reviewed-by: Alexander Thomas <athom@google.com> > > TBR=aam@google.com,athom@google.com > > Change-Id: I3f1ce2c30bf0600b025bc95a051e569660e140c0 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/204582 > Reviewed-by: Tess Strickland <sstrickl@google.com> > Commit-Queue: Tess Strickland <sstrickl@google.com> # Not skipping CQ checks because this is a reland. Change-Id: I0efe29d2dc11a2f3e65d65d2f2eaecc4c827490a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/204583 Reviewed-by: Tess Strickland <sstrickl@google.com> Reviewed-by: Alexander Thomas <athom@google.com> Commit-Queue: Tess Strickland <sstrickl@google.com>
16 lines
606 B
Text
16 lines
606 B
Text
# Copyright (c) 2015 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.
|
|
|
|
if (is_linux && !is_chromeos) {
|
|
# TODO(GYP): Figure out which of these work and are needed on other platforms.
|
|
copy("copy_llvm_symbolizer") {
|
|
if (is_win) {
|
|
sources = [ "//buildtools/win-x64/clang/bin/llvm-symbolizer.exe" ]
|
|
outputs = [ "$root_out_dir/llvm-symbolizer.exe" ]
|
|
} else {
|
|
sources = [ "//buildtools/win-x64/clang/bin/llvm-symbolizer" ]
|
|
outputs = [ "$root_out_dir/llvm-symbolizer" ]
|
|
}
|
|
}
|
|
}
|