absl_hash.gn 404 B

12345678910111213141516171819202122
  1. import("//build/config/linux/pkg_config.gni")
  2. import("//build/shim_headers.gni")
  3. pkg_config("system_absl_hash") {
  4. packages = [ "absl_hash" ]
  5. }
  6. shim_headers("hash_shim") {
  7. root_path = "."
  8. prefix = "absl/hash/"
  9. headers = [ "hash.h" ]
  10. }
  11. source_set("hash") {
  12. deps = [ ":hash_shim" ]
  13. public_configs = [ ":system_absl_hash" ]
  14. }
  15. source_set("hash_test") {
  16. }
  17. source_set("low_level_hash_test") {
  18. }