blob: e7bae10fdc1d8a6f1845b8ce554cf02ef6b15da0 [file] [log] [blame]
Kaido Kertb1089432024-03-18 19:46:49 -07001import("//build/config/linux/pkg_config.gni")
2import("//build/shim_headers.gni")
3
4pkg_config("system_woff2") {
5 packages = [ "libwoff2dec" ]
6}
7
8shim_headers("woff2_shim") {
9 root_path = "include"
10 headers = [
11 "woff2/decode.h",
12 "woff2/encode.h",
13 "woff2/output.h",
14 ]
15}
16
17source_set("woff2_dec") {
18 deps = [ ":woff2_shim" ]
19 public_configs = [ ":system_woff2" ]
20}