1# Copyright 2020 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6# Skia avoids the ICU C++ API, but third_party may use it.
7# Use this config to hide the C++ API.
8# This cannot go in ../BUILD.gn because it cannot be used in a flutter build.
9# This cannot go in a .gni file because gn doesn't like configs in .gni files.
10config("no_cxx") {
11  defines = [ "U_SHOW_CPLUSPLUS_API=0" ]
12}
13