xref: /aosp_15_r20/external/angle/third_party/llvm-libc/BUILD.gn (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
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