blob: 28dd499a33cca2c2915a73b68b55c831d64d28a3 [file] [log] [blame]
# Copyright 2013 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//flutter/testing/dart/compile_test.gni")
tests = [ "fail_test.dart" ]
foreach(test, tests) {
compile_flutter_dart_test("compile_$test") {
dart_file = test
dart_kernel = "$root_gen_dir/$test.dill"
packages = ".packages"
}
}
group("smoke_test_failure") {
testonly = true
deps = []
foreach(test, tests) {
deps += [ ":compile_$test" ]
}
}