aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/options.BUILD
blob: 844cf2a61a5359329d4c94bf48df5da2fe8cfa34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# TODO(dmarting): to make clearer, instead of doing that, we should
# move every target of the BUILD file into there java package.
java_library(
    name = "options",
    srcs = glob([
        "com/google/devtools/common/options/*.java",
    ]),
    visibility = ["//visibility:public"],
    deps = [
        "//third_party:guava",
        "//third_party:jsr305",
    ],
)