tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

absl_hash.gn (463B)


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