b985b4b67f
This is mostly about consolidating and removing use of icu::UnicodeString. It was used mostly as an intermediary for conversion, and the new conversions should make one fewer copy of the data. Change-Id: I1d0e5f0dc21c47ed7c80f456b9129c4c9a36b09a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/292718 Reviewed-by: Mike Reed <reed@google.com> Reviewed-by: Julia Lavrova <jlavrova@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
# Copyright 2019 Google LLC.
|
|
|
|
# Things are easiest for everyone if these source paths are absolute.
|
|
_src = get_path_info("src", "abspath")
|
|
_include = get_path_info("include", "abspath")
|
|
_utils = get_path_info("utils", "abspath")
|
|
|
|
skparagraph_public = [
|
|
"$_include/ParagraphStyle.h",
|
|
"$_include/TextStyle.h",
|
|
"$_include/TextShadow.h",
|
|
"$_include/FontCollection.h",
|
|
"$_include/Paragraph.h",
|
|
"$_include/ParagraphBuilder.h",
|
|
"$_include/ParagraphCache.h",
|
|
"$_include/DartTypes.h",
|
|
"$_include/TypefaceFontProvider.h",
|
|
"$_utils/TestFontCollection.h",
|
|
]
|
|
|
|
skparagraph_sources = [
|
|
"$_src/Decorations.cpp",
|
|
"$_src/Decorations.h",
|
|
"$_src/FontCollection.cpp",
|
|
"$_src/Iterators.h",
|
|
"$_src/OneLineShaper.cpp",
|
|
"$_src/OneLineShaper.h",
|
|
"$_src/ParagraphBuilderImpl.cpp",
|
|
"$_src/ParagraphBuilderImpl.h",
|
|
"$_src/ParagraphCache.cpp",
|
|
"$_src/ParagraphImpl.cpp",
|
|
"$_src/ParagraphImpl.h",
|
|
"$_src/ParagraphStyle.cpp",
|
|
"$_src/ParagraphUtil.cpp",
|
|
"$_src/ParagraphUtil.h",
|
|
"$_src/Run.cpp",
|
|
"$_src/Run.h",
|
|
"$_src/TextLine.cpp",
|
|
"$_src/TextLine.h",
|
|
"$_src/TextShadow.cpp",
|
|
"$_src/TextStyle.cpp",
|
|
"$_src/TextWrapper.cpp",
|
|
"$_src/TextWrapper.h",
|
|
"$_src/TypefaceFontProvider.cpp",
|
|
"$_utils/TestFontCollection.cpp",
|
|
]
|
|
|
|
skparagraph_utils = [
|
|
"$_utils/TestFontCollection.h",
|
|
"$_utils/TestFontCollection.cpp",
|
|
]
|