You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
451 B
13 lines
451 B
# 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" ]
|
|
}
|