1# Copyright 2024 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5config("config") { 6 visibility = [ ":*" ] 7 include_dirs = [ "src" ] 8 defines = [ "LIBC_NAMESPACE=__llvm_libc_cr" ] 9} 10 11group("llvm-libc-shared") { 12 # llvm-libc is only used as a dependency of libc++. 13 visibility = [ "//buildtools/third_party/libc++:libc++" ] 14 15 public_configs = [ ":config" ] 16} 17