blob: 38ac0b8eec1ea5c89f82f5a1854fca4d8ada548b [file] [log] [blame]
<%include file="header.mako" />
import("${data.relative_path_to_root}/build/fidl_library.gni")
fidl_library("${data.name}") {
library_name = "${data.short_name}"
% if data.namespace:
namespace = "${data.namespace}"
% endif
public_deps = [
% for dep in sorted(data.deps):
"../${dep}",
% endfor
]
sources = [
% for source in sorted(data.srcs):
"${source}",
% endfor
]
}
group("all"){
deps = [
":${data.name}",
]
}