github.com/tiagovtristao/plz@v13.4.0+incompatible/src/parse/asp/BUILD (about) 1 go_library( 2 name = "asp", 3 srcs = glob( 4 ["*.go"], 5 exclude = [ 6 "*_test.go", 7 "*.bindata.go", 8 ], 9 ), 10 visibility = ["PUBLIC"], 11 deps = [ 12 "//src/cli", 13 "//src/core", 14 "//src/fs", 15 "//third_party/go:logging", 16 ], 17 ) 18 19 go_test( 20 name = "parser_test", 21 srcs = ["parser_test.go"], 22 data = ["test_data"], 23 deps = [ 24 ":asp", 25 "//third_party/go:testify", 26 ], 27 ) 28 29 go_test( 30 name = "lexer_test", 31 srcs = ["lexer_test.go"], 32 deps = [ 33 ":asp", 34 "//third_party/go:testify", 35 ], 36 ) 37 38 go_test( 39 name = "interpreter_test", 40 srcs = ["interpreter_test.go"], 41 data = ["test_data"], 42 deps = [ 43 ":asp", 44 "//src/core", 45 "//src/parse/rules", 46 "//third_party/go:testify", 47 ], 48 ) 49 50 go_test( 51 name = "logging_test", 52 srcs = ["logging_test.go"], 53 data = ["test_data"], 54 deps = [ 55 ":asp", 56 "//src/core", 57 "//src/parse/rules", 58 "//third_party/go:logging", 59 "//third_party/go:testify", 60 ], 61 ) 62 63 go_test( 64 name = "util_test", 65 srcs = ["util_test.go"], 66 data = ["test_data"], 67 deps = [ 68 ":asp", 69 "//third_party/go:testify", 70 ], 71 )