blob: 5712451b467b70e52f04a873c9e139a45aaec0d5 [file] [log] [blame]
# Copyright 2018 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.
# Please do not add more entries to this list. We plan to remove
# abseil-cpp from the Fuchsia platform source tree once cobalt
# moves out-of-tree.
visibility = [
"//third_party/abseil-cpp/*",
"$cobalt_root/*",
"//third_party/tink/*",
]
static_library("strings") {
public_configs = [ "//third_party/abseil-cpp:abseil_config" ]
sources = [
"ascii.cc",
"ascii.h",
"charconv.cc",
"charconv.h",
"escaping.cc",
"escaping.h",
"internal/charconv_bigint.cc",
"internal/charconv_bigint.h",
"internal/charconv_parse.cc",
"internal/charconv_parse.h",
"internal/memutil.cc",
"internal/memutil.h",
"internal/stl_type_traits.h",
"internal/str_join_internal.h",
"internal/str_split_internal.h",
"match.cc",
"match.h",
"numbers.cc",
"numbers.h",
"str_cat.cc",
"str_cat.h",
"str_join.h",
"str_replace.cc",
"str_replace.h",
"str_split.cc",
"str_split.h",
"string_view.cc",
"string_view.h",
"strip.h",
"substitute.cc",
"substitute.h",
]
deps = [
":internal",
"../base",
"../base:config",
"../base:core_headers",
"../base:endian",
"../base:throw_delegate",
"../memory",
"../meta:type_traits",
"../numeric:int128",
]
}
static_library("internal") {
public_configs = [ "//third_party/abseil-cpp:abseil_config" ]
sources = [
"internal/bits.h",
"internal/char_map.h",
"internal/ostringstream.cc",
"internal/ostringstream.h",
"internal/resize_uninitialized.h",
"internal/utf8.cc",
"internal/utf8.h",
]
}