crc32c.gn 206 B

1234567891011
  1. import("//build/shim_headers.gni")
  2. shim_headers("crc32c_shim") {
  3. root_path = "src/include"
  4. headers = [ "crc32c/crc32c.h" ]
  5. }
  6. source_set("crc32c") {
  7. deps = [ ":crc32c_shim" ]
  8. libs = [ "crc32c" ]
  9. }