blob: 0bce10921cb2e2b774cca029bdac55db819447ff [file] [log] [blame]
# Copyright 2020 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 the fidl GN template.
import("//build/fidl/fidl.gni")
# Define a target for our FIDL library by passing it the FIDL source files
# that make up the library.
fidl("fuchsia.examples.docs") {
sources = [
"api_rubric.test.fidl",
"attributes.test.fidl",
"language_reference.test.fidl",
"life_of_a_handle.test.fidl",
"misc.test.fidl",
"style.test.fidl",
]
public_deps = [
"//sdk/fidl/fuchsia.math",
"//sdk/fidl/fuchsia.mem",
"//zircon/vdso/zx",
]
}
fidl("versioning") {
name = "fuchsia.examples.docs"
sources = [ "versioning.test.fidl" ]
}
fidl("versioning_decomposed") {
name = "fuchsia.examples.docs"
sources = [ "versioning_decomposed.test.fidl" ]
}
fidl("builtin") {
sources = [ "language_reference_builtin.test.fidl" ]
}