• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2019 Google LLC.
2
3# Things are easiest for everyone if these source paths are absolute.
4_src = get_path_info("src", "abspath")
5_include = get_path_info("include", "abspath")
6_utils = get_path_info("utils", "abspath")
7
8skparagraph_public = [
9  "$_include/ParagraphStyle.h",
10  "$_include/TextStyle.h",
11  "$_include/TextShadow.h",
12  "$_include/FontCollection.h",
13  "$_include/Paragraph.h",
14  "$_include/ParagraphBuilder.h",
15  "$_include/ParagraphCache.h",
16  "$_include/DartTypes.h",
17  "$_include/TypefaceFontProvider.h",
18  "$_utils/TestFontCollection.h",
19]
20
21skparagraph_sources = [
22  "$_src/FontCollection.cpp",
23  "$_src/FontResolver.cpp",
24  "$_src/FontResolver.h",
25  "$_src/Iterators.h",
26  "$_src/ParagraphBuilderImpl.cpp",
27  "$_src/ParagraphBuilderImpl.h",
28  "$_src/ParagraphCache.cpp",
29  "$_src/ParagraphImpl.cpp",
30  "$_src/ParagraphImpl.h",
31  "$_src/ParagraphStyle.cpp",
32  "$_src/Run.cpp",
33  "$_src/Run.h",
34  "$_src/TextLine.cpp",
35  "$_src/TextLine.h",
36  "$_src/TextShadow.cpp",
37  "$_src/TextStyle.cpp",
38  "$_src/TextWrapper.cpp",
39  "$_src/TextWrapper.h",
40  "$_src/TypefaceFontProvider.cpp",
41  "$_utils/TestFontCollection.cpp",
42]
43
44skparagraph_utils = [
45  "$_utils/TestFontCollection.h",
46  "$_utils/TestFontCollection.cpp",
47]
48