xref: /aosp_15_r20/external/bazelbuild-rules_rust/wasm_bindgen/providers.bzl (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifan"""Rust WASM bindgen providers"""
2*d4726bddSHONG Yifan
3*d4726bddSHONG YifanRustWasmBindgenInfo = provider(
4*d4726bddSHONG Yifan    doc = "Info about wasm-bindgen outputs.",
5*d4726bddSHONG Yifan    fields = {
6*d4726bddSHONG Yifan        "js": "Depset[File]: The Javascript files produced by `wasm-bindgen`.",
7*d4726bddSHONG Yifan        "ts": "Depset[File]: The Typescript files produced by `wasm-bindgen`.",
8*d4726bddSHONG Yifan        "wasm": "File: The `.wasm` file generated by `wasm-bindgen`.",
9*d4726bddSHONG Yifan    },
10*d4726bddSHONG Yifan)
11