0a85a8878d
This fixes the Flutter build. Change-Id: I2f1e6e48e054e1c2368bed4bc8b47a7bf37dcb56 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/111420 Reviewed-by: Martin Kustermann <kustermann@google.com> Auto-Submit: Samir Jindel <sjindel@google.com>
32 lines
632 B
Plaintext
32 lines
632 B
Plaintext
# Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
# 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.
|
|
|
|
executable("bit") {
|
|
sources = [
|
|
"main.cc",
|
|
]
|
|
root_dir = rebase_path(root_out_dir)
|
|
defines = [ "LIT_BINARY_DIR=\"$root_dir\"" ]
|
|
deps = [
|
|
"../../../third_party/llvm:LLVMSupport",
|
|
]
|
|
data_deps = [
|
|
"../codegen",
|
|
]
|
|
}
|
|
|
|
source_set("test") {
|
|
sources = [
|
|
"test.cc",
|
|
]
|
|
|
|
deps = [
|
|
"../../../third_party/llvm:LLVMSupport",
|
|
]
|
|
|
|
include_dirs = [ "//runtime" ]
|
|
|
|
defines = [ "TESTING" ]
|
|
}
|