mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:48:12 +00:00
17 lines
389 B
Text
17 lines
389 B
Text
source_set("Parser") {
|
|
configs += [ "//Userland/Libraries/LibWeb:configs" ]
|
|
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
|
|
sources = [
|
|
"Block.cpp",
|
|
"ComponentValue.cpp",
|
|
"Declaration.cpp",
|
|
"DeclarationOrAtRule.cpp",
|
|
"Function.cpp",
|
|
"Helpers.cpp",
|
|
"Parser.cpp",
|
|
"ParsingContext.cpp",
|
|
"Rule.cpp",
|
|
"Token.cpp",
|
|
"Tokenizer.cpp",
|
|
]
|
|
}
|