blob: a3725bb81576dc295b9642a7ff339b6c7dd38f54 [file] [log] [blame]
<%include file="header.mako" />
import("${data.relative_path_to_root}/build/fuchsia_sdk_pkg.gni")
fuchsia_sdk_fidl_pkg("${data.name}") {
package_name = "${data.short_name}"
namespace = "${data.namespace}"
public_deps = [
% for dep in sorted(data.deps):
"../${dep}",
% endfor
]
sources = [
% for source in sorted(data.srcs):
"${source}",
% endfor
]
}