github.com/tiagovtristao/plz@v13.4.0+incompatible/src/ide/intellij/BUILD (about) 1 go_library( 2 name = "intellij", 3 srcs = glob( 4 ["*.go"], 5 exclude = ["*_test.go"], 6 ), 7 visibility = ["PUBLIC"], 8 deps = [ 9 "//src/core", 10 "//third_party/go:logging", 11 ], 12 ) 13 14 go_test( 15 name = "intellij_test", 16 srcs = [ 17 "intellij_test.go", 18 ], 19 deps = [ 20 ":intellij", 21 "//third_party/go:testify", 22 ], 23 ) 24 25 go_test( 26 name = "library_test", 27 srcs = [ 28 "library_test.go", 29 ], 30 deps = [ 31 ":intellij", 32 "//third_party/go:testify", 33 ], 34 )