blob: 17978289318d92f7d6c0d94c574a8f92cdde6799 [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 : algorithm
source_set("algorithm") {
public_configs = [ "//third_party/abseil-cpp:abseil_config" ]
public = [
"algorithm.h",
]
}
# CC Library : container
source_set("container") {
public_configs = [ "//third_party/abseil-cpp:abseil_config" ]
public = [
"container.h",
]
public_deps = [
":algorithm",
"../base:core_headers",
"../meta:type_traits",
]
}