
It was changed in I36192c9465d but this part of that change can be reverted, after rules_java is loaded in WORKSPACE file through the rules_closure repository. That is why the load of codemirror:cm.bzl can only be included after rules_closure repository is loaded. Change-Id: I0f6769cd59bb9da0a96929a51756d4c0972ae1ca
13 lines
320 B
Python
13 lines
320 B
Python
load("@rules_java//java:defs.bzl", "java_library")
|
|
load("//lib/codemirror:cm.bzl", "pkg_cm")
|
|
|
|
# This library is only used to insert a license statement into
|
|
# js_licenses.txt.
|
|
java_library(
|
|
name = "diff-match-patch",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
runtime_deps = ["@diff-match-patch//jar"],
|
|
)
|
|
|
|
pkg_cm()
|