| module(name = "jsinterop_base", |
| version = "1.1.1-RC2", |
| ) |
| |
| bazel_dep(name = "j2cl", version = "20250630") |
| |
| # Use head j2cl for testing purposes. |
| archive_override( |
| module_name = "j2cl", |
| strip_prefix = "j2cl-master", |
| urls = ["https://github.com/google/j2cl/archive/master.zip"], |
| ) |
| |
| bazel_dep(name = "bazel_skylib", version = "1.7.1") |
| bazel_dep(name = "google_bazel_common", version = "0.0.1") |
| bazel_dep(name = "rules_java", version = "8.13.0") |
| bazel_dep(name = "rules_license", version = "1.0.0") |
| |
| # Maven dependencies. |
| |
| bazel_dep(name = "rules_jvm_external", version = "6.6") |
| |
| maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven") |
| maven.install( |
| artifacts = [ |
| "org.jspecify:jspecify:0.3.0", |
| ], |
| ) |
| use_repo(maven, "maven") |
| |
| # Dependencies needed for development. |
| |
| j2cl_maven_import_external = use_repo_rule("@j2cl//build_defs:rules.bzl", "j2cl_maven_import_external") |
| |
| _MAVEN_CENTRAL_URLS = ["https://repo1.maven.org/maven2/"] |
| |
| j2cl_maven_import_external( |
| name = "org_checkerframework_checker_qual-j2cl", |
| annotation_only = True, |
| artifact = "org.checkerframework:checker-qual:2.5.3", |
| artifact_sha256 = "7be622bd25208ccfbb9b634af8bd37aef54368403a1fdce84d908078330a189d", |
| dev_dependency = True, |
| server_urls = _MAVEN_CENTRAL_URLS, |
| ) |
| |
| j2cl_maven_import_external( |
| name = "com_google_errorprone_error_prone_annotations-j2cl", |
| annotation_only = True, |
| artifact = "com.google.errorprone:error_prone_annotations:2.23.0", |
| artifact_sha256 = "ec6f39f068b6ff9ac323c68e28b9299f8c0a80ca512dccb1d4a70f40ac3ec054", |
| dev_dependency = True, |
| server_urls = _MAVEN_CENTRAL_URLS, |
| ) |
| |
| j2cl_maven_import_external( |
| name = "com_google_code_findbugs_jsr305-j2cl", |
| annotation_only = True, |
| artifact = "com.google.code.findbugs:jsr305:3.0.2", |
| artifact_sha256 = "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7", |
| dev_dependency = True, |
| server_urls = _MAVEN_CENTRAL_URLS, |
| ) |
| |
| j2cl_maven_import_external( |
| name = "com_google_j2objc_annotations-j2cl", |
| annotation_only = True, |
| artifact = "com.google.j2objc:j2objc-annotations:jar:1.3", |
| artifact_sha256 = "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b", |
| dev_dependency = True, |
| server_urls = _MAVEN_CENTRAL_URLS, |
| ) |
| |
| j2cl_maven_import_external( |
| name = "com_google_guava-j2cl", |
| artifact = "com.google.guava:guava-gwt:32.1.1-jre", |
| artifact_sha256 = "a2a687fa178a141d19dadc2dc5baa56c856c2fe8772ef3929c37c24e588e3a28", |
| dev_dependency = True, |
| server_urls = _MAVEN_CENTRAL_URLS, |
| deps = [ |
| "@com_google_code_findbugs_jsr305-j2cl", |
| "@com_google_errorprone_error_prone_annotations-j2cl", |
| "@com_google_j2objc_annotations-j2cl", |
| "@j2cl//:jsinterop-annotations-j2cl", |
| "@org_checkerframework_checker_qual-j2cl", |
| ], |
| ) |
| |
| j2cl_maven_import_external( |
| name = "org_jspecify-j2cl", |
| annotation_only = True, |
| artifact = "org.jspecify:jspecify:0.3.0", |
| artifact_sha256 = "e1c7e1832b6095fcfcbe57485700c7330d53d4e57e2c5bbf9c71819b02e978be", |
| dev_dependency = True, |
| server_urls = _MAVEN_CENTRAL_URLS, |
| ) |
| |
| j2cl_maven_import_external( |
| name = "com_google_truth-j2cl", |
| testonly = 1, |
| additional_rule_attrs = { |
| "javacopts": "[\"-Xep:NullArgumentForNonNullParameter:OFF\"]", |
| # Tested in google3. |
| "experimental_enable_jspecify_support_do_not_enable_without_jspecify_static_checking_or_you_might_cause_an_outage": "1", |
| }, |
| artifact = "com.google.truth:truth:jar:gwt:1.4.4", |
| artifact_sha256 = "3f60707e2b31ce73e5b82c65ea9c5fb5f135e875b9de9eb9f0b8f8937974a5e6", |
| dev_dependency = True, |
| server_urls = _MAVEN_CENTRAL_URLS, |
| deps = [ |
| "@com_google_errorprone_error_prone_annotations-j2cl", |
| "@com_google_guava-j2cl", |
| "@j2cl//:jsinterop-annotations-j2cl", |
| "@org_jspecify-j2cl", |
| ], |
| ) |