blob: 37d827bc00f1c039780da4271dfd7aba23a2d064 [file] [log] [blame]
# Copyright 2018 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.
import("//build/fidl/fidl.gni")
group("tests") {
deps = [
":fidl.test.after",
":fidl.test.before",
"cpp",
"go",
"rust",
]
}
fidl("fidl.test.before") {
# TODO(fxbug.dev/35879): Remove lint exclusions by fixing known FIDL lint violations in this target
excluded_checks = [ "event-names-must-start-with-on" ]
sources = [ "fidl/before.fidl" ]
}
fidl("fidl.test.during") {
# TODO(fxbug.dev/35879): Remove lint exclusions by fixing known FIDL lint violations in this target
excluded_checks = [ "event-names-must-start-with-on" ]
sources = [ "fidl/during.fidl" ]
}
fidl("fidl.test.after") {
# TODO(fxbug.dev/35879): Remove lint exclusions by fixing known FIDL lint violations in this target
excluded_checks = [ "event-names-must-start-with-on" ]
sources = [ "fidl/after.fidl" ]
}