• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package(
2    default_applicable_licenses = ["//:license"],
3)
4
5licenses(["notice"])
6
7cc_binary(
8    name = "sksllex",
9    srcs = [
10        "DFA.h",
11        "DFAState.h",
12        "LexUtil.h",
13        "Main.cpp",
14        "NFA.cpp",
15        "NFA.h",
16        "NFAState.h",
17        "NFAtoDFA.h",
18        "RegexNode.cpp",
19        "RegexNode.h",
20        "RegexParser.cpp",
21        "RegexParser.h",
22        "TransitionTable.cpp",
23        "TransitionTable.h",
24    ],
25)
26
27# TODO(kjlubick) we'll need to have a gen_rule or similar to replace //gn/run_sksllex.py
28