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