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