BUILD.gn 461 B

123456789101112131415161718
  1. # Copyright 2022 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. config("fxdiv_config") {
  5. include_dirs = [ "src/include" ]
  6. }
  7. source_set("fxdiv") {
  8. public = [ "src/include/fxdiv.h" ]
  9. sources = []
  10. configs -= [ "//build/config/compiler:chromium_code" ]
  11. configs += [ "//build/config/compiler:no_chromium_code" ]
  12. public_configs = [ ":fxdiv_config" ]
  13. }