Files
openide/plugins/git-modal-commit/BUILD.bazel
Vladimir Krivosheev 3599f1909f update bazel files
GitOrigin-RevId: 5bbd03b7b8439e9d917275ebbb320df4cd63e8d6
2025-02-13 08:51:32 +00:00

26 lines
818 B
Python

### auto-generated section `build intellij.vcs.git.commit.modal` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "vcs-git-commit-modal_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "vcs-git-commit-modal",
module_name = "intellij.vcs.git.commit.modal",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlin-stdlib",
"//plugins/git4idea:vcs-git",
"//platform/vcs-api:vcs",
"//platform/editor-ui-api:editor-ui",
"//platform/core-api:core",
"//platform/util",
"//platform/vcs-impl",
],
runtime_deps = [":vcs-git-commit-modal_resources"]
)
### auto-generated section `build intellij.vcs.git.commit.modal` end