# Copyright 2013 The Flutter Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
config("config") { | |
visibility = [ ":*" ] | |
include_dirs = [ "." ] | |
defines = [ "LIBC_NAMESPACE=__llvm_libc_dart" ] | |
} | |
group("libc") { | |
# libc is only used as a dependency of libcxx. | |
visibility = [ "//third_party/libcxx" ] | |
public_configs = [ ":config" ] | |
} |