2019-05-30 20:12:56 +00:00
|
|
|
# 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")
|
2019-06-19 17:32:01 +00:00
|
|
|
_utils = get_path_info("utils", "abspath")
|
2019-05-30 20:12:56 +00:00
|
|
|
|
|
|
|
skparagraph_public = [
|
|
|
|
"$_include/ParagraphStyle.h",
|
|
|
|
"$_include/TextStyle.h",
|
|
|
|
"$_include/TextShadow.h",
|
|
|
|
"$_include/FontCollection.h",
|
|
|
|
"$_include/Paragraph.h",
|
|
|
|
"$_include/ParagraphBuilder.h",
|
2019-07-30 17:32:08 +00:00
|
|
|
"$_include/ParagraphCache.h",
|
2019-05-30 20:12:56 +00:00
|
|
|
"$_include/DartTypes.h",
|
2019-06-19 17:32:01 +00:00
|
|
|
"$_include/TypefaceFontProvider.h",
|
2019-06-21 16:22:32 +00:00
|
|
|
"$_utils/TestFontCollection.h",
|
2019-05-30 20:12:56 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
skparagraph_sources = [
|
2020-05-04 19:03:18 +00:00
|
|
|
"$_src/Decorations.cpp",
|
|
|
|
"$_src/Decorations.h",
|
2019-05-30 20:12:56 +00:00
|
|
|
"$_src/FontCollection.cpp",
|
2019-07-09 21:12:47 +00:00
|
|
|
"$_src/Iterators.h",
|
2019-10-09 13:43:02 +00:00
|
|
|
"$_src/OneLineShaper.cpp",
|
2020-04-03 15:59:37 +00:00
|
|
|
"$_src/OneLineShaper.h",
|
2019-05-30 20:12:56 +00:00
|
|
|
"$_src/ParagraphBuilderImpl.cpp",
|
2020-04-03 15:59:37 +00:00
|
|
|
"$_src/ParagraphBuilderImpl.h",
|
2019-06-21 16:22:32 +00:00
|
|
|
"$_src/ParagraphCache.cpp",
|
2019-05-30 20:12:56 +00:00
|
|
|
"$_src/ParagraphImpl.cpp",
|
2020-04-03 15:59:37 +00:00
|
|
|
"$_src/ParagraphImpl.h",
|
2019-05-30 20:12:56 +00:00
|
|
|
"$_src/ParagraphStyle.cpp",
|
|
|
|
"$_src/Run.cpp",
|
2020-04-03 15:59:37 +00:00
|
|
|
"$_src/Run.h",
|
2019-06-21 16:22:32 +00:00
|
|
|
"$_src/TextLine.cpp",
|
2020-04-03 15:59:37 +00:00
|
|
|
"$_src/TextLine.h",
|
2019-05-30 20:12:56 +00:00
|
|
|
"$_src/TextShadow.cpp",
|
|
|
|
"$_src/TextStyle.cpp",
|
|
|
|
"$_src/TextWrapper.cpp",
|
2020-04-03 15:59:37 +00:00
|
|
|
"$_src/TextWrapper.h",
|
2019-05-30 20:12:56 +00:00
|
|
|
"$_src/TypefaceFontProvider.cpp",
|
2019-06-21 16:22:32 +00:00
|
|
|
"$_utils/TestFontCollection.cpp",
|
2019-05-30 20:12:56 +00:00
|
|
|
]
|
2019-06-19 17:32:01 +00:00
|
|
|
|
|
|
|
skparagraph_utils = [
|
|
|
|
"$_utils/TestFontCollection.h",
|
|
|
|
"$_utils/TestFontCollection.cpp",
|
|
|
|
]
|