woff2.gn 379 B

1234567891011121314151617181920
  1. import("//build/config/linux/pkg_config.gni")
  2. import("//build/shim_headers.gni")
  3. pkg_config("system_woff2") {
  4. packages = [ "libwoff2dec" ]
  5. }
  6. shim_headers("woff2_shim") {
  7. root_path = "include"
  8. headers = [
  9. "woff2/decode.h",
  10. "woff2/encode.h",
  11. "woff2/output.h",
  12. ]
  13. }
  14. source_set("woff2_dec") {
  15. deps = [ ":woff2_shim" ]
  16. public_configs = [ ":system_woff2" ]
  17. }