blob: 3d27772f623f56dc060d196063ea17ab80f7ac14 [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.
import("//build/cpp/library_headers.gni")
library_headers("headers") {
headers = [
"ffl/exponential_average.h",
"ffl/expression.h",
"ffl/fixed_format.h",
"ffl/fixed.h",
"ffl/saturating_arithmetic.h",
"ffl/string.h",
"ffl/utility.h",
]
}
source_set("ffl") {
public_deps = [ ":headers" ]
sources = [ "string.cc" ]
}
group("tests") {
testonly = true
deps = [ "test:tests" ]
}