• 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/Decorations.cpp",
23  "$_src/Decorations.h",
24  "$_src/FontCollection.cpp",
25  "$_src/Iterators.h",
26  "$_src/OneLineShaper.cpp",
27  "$_src/OneLineShaper.h",
28  "$_src/ParagraphBuilderImpl.cpp",
29  "$_src/ParagraphBuilderImpl.h",
30  "$_src/ParagraphCache.cpp",
31  "$_src/ParagraphImpl.cpp",
32  "$_src/ParagraphImpl.h",
33  "$_src/ParagraphStyle.cpp",
34  "$_src/Run.cpp",
35  "$_src/Run.h",
36  "$_src/TextLine.cpp",
37  "$_src/TextLine.h",
38  "$_src/TextShadow.cpp",
39  "$_src/TextStyle.cpp",
40  "$_src/TextWrapper.cpp",
41  "$_src/TextWrapper.h",
42  "$_src/TypefaceFontProvider.cpp",
43  "$_utils/TestFontCollection.cpp",
44]
45
46skparagraph_utils = [
47  "$_utils/TestFontCollection.h",
48  "$_utils/TestFontCollection.cpp",
49]
50