Skip to content

Commit

Permalink
Make jsinterop-base tests buildable in open-source.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 696597385
  • Loading branch information
gkdn authored and copybara-github committed Nov 14, 2024
1 parent bfec5eb commit 91ca7a4
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 7 deletions.
80 changes: 80 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,83 @@ load_j2cl_repo_deps()
load("@com_google_j2cl//build_defs:workspace.bzl", "setup_j2cl_workspace")

setup_j2cl_workspace()


# Dependencies needed for the testing of the repository.

_MAVEN_CENTRAL_URLS = ["https://repo1.maven.org/maven2/"]

load("@com_google_j2cl//build_defs:rules.bzl", "j2cl_maven_import_external")

j2cl_maven_import_external(
name = "org_checkerframework_checker_qual-j2cl",
annotation_only = True,
artifact = "org.checkerframework:checker-qual:2.5.3",
artifact_sha256= "7be622bd25208ccfbb9b634af8bd37aef54368403a1fdce84d908078330a189d",
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",
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",
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",
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",
server_urls = _MAVEN_CENTRAL_URLS,
deps = [
"@com_google_code_findbugs_jsr305-j2cl",
"@com_google_errorprone_error_prone_annotations-j2cl",
"@com_google_j2cl//:jsinterop-annotations-j2cl",
"@com_google_j2objc_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",
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",
server_urls = _MAVEN_CENTRAL_URLS,
deps = [
"@com_google_errorprone_error_prone_annotations-j2cl",
"@com_google_guava-j2cl",
"@com_google_j2cl//:jsinterop-annotations-j2cl",
"@org_jspecify-j2cl",
],
)
3 changes: 3 additions & 0 deletions build_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@
# limitations under the License.

bazel build java/...

# Make sure we don't back slide on test related compilations.
bazel build @com_google_truth-j2cl javatests/jsinterop/base:testlib
5 changes: 2 additions & 3 deletions javatests/jsinterop/base/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ j2cl_library(
"super/*.java",
]),
deps = [
"//java/com/google/common/annotations:annotations-j2cl",
"//java/jsinterop/base:base-j2cl",
"//third_party/java/junit:junit-j2cl",
"//third_party/java/truth:truth-j2cl",
"//third_party:truth-j2cl",
"@com_google_j2cl//:jsinterop-annotations-j2cl",
"@com_google_j2cl//:junit",
],
)

Expand Down
11 changes: 7 additions & 4 deletions third_party/BUILD
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Description:
# Thirdparty dependencies indirection for bazel.

load("@com_google_j2cl//build_defs:rules.bzl", "j2cl_import")

package(
default_visibility = ["//:__subpackages__"],
licenses = ["notice"],
Expand All @@ -13,7 +11,12 @@ alias(
actual = "@org_jspecify",
)

j2cl_import(
alias(
name = "jspecify_annotations-j2cl",
jar = "@org_jspecify//jar",
actual = "@org_jspecify-j2cl",
)

alias(
name = "truth-j2cl",
actual = "@com_google_truth-j2cl",
)

0 comments on commit 91ca7a4

Please sign in to comment.