Skip to content

Commit

Permalink
Convert j2objc workspace name to use _, not -
Browse files Browse the repository at this point in the history
We're restricted repository names in preparation for improving the runfiles
situation.

RELNOTES: j2objc tools can now be accessed via @bazel_j2objc, not @bazel-j2objc.

--
MOS_MIGRATED_REVID=113071304
  • Loading branch information
kchodorow committed Jan 27, 2016
1 parent 8882114 commit 8b197ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# External dependencies for the java_* rules.

new_http_archive(
name = "bazel-j2objc",
name = "bazel_j2objc",
url = "https://github.com/google/j2objc/releases/download/0.9.8.1/j2objc-0.9.8.1.zip",
sha256 = "3edff65fbfaa0a99fdb36dad97059070ba09b77ace7753573771204395dd862b",
build_file = __embedded_dir__ + "/embedded_tools/third_party/java/j2objc/BUILD.remote"
Expand Down
2 changes: 1 addition & 1 deletion third_party/java/j2objc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ objc_library(
sdk_frameworks = [
"Security",
],
deps = ["@bazel-j2objc//:jre_emul_archive"],
deps = ["@bazel_j2objc//:jre_emul_archive"],
)

# Proto support is a work in progress.
Expand Down
2 changes: 1 addition & 1 deletion tools/j2objc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ filegroup(
java_binary(
name = "j2objc",
main_class = "com.google.devtools.j2objc.J2ObjC",
runtime_deps = ["@bazel-j2objc//:j2objc"],
runtime_deps = ["@bazel_j2objc//:j2objc"],
)

py_library(
Expand Down

0 comments on commit 8b197ac

Please sign in to comment.