• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2024 The PDFium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/gclient_args.gni")
6
7config("fast_float_config") {
8  include_dirs = [ "src/include" ]
9}
10
11source_set("fast_float") {
12  public = [ "src/include/fast_float/fast_float.h" ]
13
14  configs -= [ "//build/config/compiler:chromium_code" ]
15  configs += [ "//build/config/compiler:no_chromium_code" ]
16
17  public_configs = [ ":fast_float_config" ]
18}
19