blob: dfca79ad6b260594d3a3d8a1b4a4592ff5b5c31a [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
visibility = [
"//third_party/abseil-cpp/*",
"$cobalt_root/*",
"//third_party/tink/*",
]
# CC Library : hash
source_set("hash") {
public_configs = [ "//third_party/abseil-cpp:abseil_config" ]
public = [
"hash.h",
]
sources = [
"internal/hash.cc",
"internal/hash.h",
]
public_deps = [
":city",
"../base:core_headers",
"../base:endian",
"../container:fixed_array",
"../meta:type_traits",
"../numeric:int128",
"../strings:strings",
"../types:optional",
"../types:variant",
"../utility:utility",
]
}
# CC Library : city
source_set("city") {
public_configs = [ "//third_party/abseil-cpp:abseil_config" ]
public = [
"internal/city.h",
]
sources = [
"internal/city.cc",
]
public_deps = [
"../base:config",
"../base:core_headers",
"../base:endian",
]
}