[llvm] Fix bit target definition on Windows - it needs .exe extension

Change-Id: I4fc94797f0c957dc5bb1d6bf94e7de8c1d2399b4
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/111501
Reviewed-by: Ben Konyi <bkonyi@google.com>
Commit-Queue: Ben Konyi <bkonyi@google.com>
Commit-Queue: Alexander Aprelev <aam@google.com>
This commit is contained in:
Alexander Aprelev 2019-07-31 17:33:09 +00:00 committed by commit-bot@chromium.org
parent 782243640b
commit bd049f5b53

View file

@ -2,6 +2,8 @@
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
import("../../../build/executable_suffix.gni")
# This file defines a template for running bit tests.
#
# - bit_test()
@ -23,7 +25,7 @@ template("bit_test") {
"../../bit",
]
inputs = [
"${root_out_dir}/bit",
"${root_out_dir}/bit$executable_suffix",
]
# This output is always dirty so ninja will always run this step when asked to.