diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-15 22:49:44 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-15 22:49:44 +0200 |
commit | 8a0e21b22bce771e3587b964b969975aba5873da (patch) | |
tree | ae7d36ec083b822804714cb535df4de2b2e91a51 /LibHTML/Makefile | |
parent | f8a86b5164cc501d6d6aee18822075b46e5e5f01 (diff) | |
download | serenity-8a0e21b22bce771e3587b964b969975aba5873da.zip |
LibHTML: Start fleshing out a basic layout tree.
Diffstat (limited to 'LibHTML/Makefile')
-rw-r--r-- | LibHTML/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/LibHTML/Makefile b/LibHTML/Makefile index ca947be04f..66b48fd839 100644 --- a/LibHTML/Makefile +++ b/LibHTML/Makefile @@ -7,6 +7,11 @@ LIBHTML_OBJS = \ Document.o \ Text.o \ Parser.o \ + LayoutNode.o \ + LayoutText.o \ + LayoutBlock.o \ + LayoutInline.o \ + LayoutDocument.o \ Dump.o TEST_OBJS = test.o |