blob: 47e682e106c9e6fa90475aa410cfd5109ba7449b [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.
static_library("abseil-cpp") {
public_deps = [
"//third_party/abseil-cpp/absl",
]
}
config("abseil_config") {
include_dirs = [
"//third_party/abseil-cpp",
]
cflags = [
# Google style does not use unsigned integers, though STL containers
# have unsigned types.
"-Wno-sign-compare",
]
}