
This change is fixing "All Java build rules should be loaded from Starlark" warning flagged by latest buildifier version: [1]. Python rules are now also loaded from the Starlark. Also extract codemirror library import to BUILD file. This is needed to avoid cycle in the workspace file, after importing java rules from Starlark. [1] https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#native-java Change-Id: I36192c9465d988b25cf09c250e110f15850910cd
32 lines
731 B
Python
32 lines
731 B
Python
load("@rules_java//java:defs.bzl", "java_library")
|
|
load("//tools/bzl:junit.bzl", "junit_tests")
|
|
|
|
java_library(
|
|
name = "cache-h2",
|
|
srcs = glob(["src/main/java/**/*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//gerrit-common:server",
|
|
"//gerrit-extension-api:api",
|
|
"//gerrit-server:server",
|
|
"//lib:guava",
|
|
"//lib:h2",
|
|
"//lib/guice",
|
|
"//lib/jgit/org.eclipse.jgit:jgit",
|
|
"//lib/log:api",
|
|
],
|
|
)
|
|
|
|
junit_tests(
|
|
name = "tests",
|
|
srcs = glob(["src/test/java/**/*.java"]),
|
|
deps = [
|
|
":cache-h2",
|
|
"//gerrit-server:server",
|
|
"//lib:guava",
|
|
"//lib:h2",
|
|
"//lib:junit",
|
|
"//lib/guice",
|
|
],
|
|
)
|