File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change
1
+ try-import %workspace%/../../.bazelrc.user
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ bzl_library(
16
16
name = "ecsact_codegen" ,
17
17
srcs = [
18
18
"ecsact_codegen.bzl" ,
19
- "@ecsact_runtime //:codegen_plugin.bzl" ,
19
+ "@ecsact_codegen //:codegen_plugin.bzl" ,
20
20
"@rules_cc//cc:defs.bzl" ,
21
21
],
22
22
visibility = ["//ecsact:__subpackages__" ],
Original file line number Diff line number Diff line change 1
1
"""
2
2
"""
3
3
4
- load ("@ecsact_runtime //:codegen_plugin.bzl" , "EcsactCodegenPluginInfo" )
4
+ load ("@ecsact_codegen //:codegen_plugin.bzl" , "EcsactCodegenPluginInfo" )
5
5
6
6
def _ecsact_codegen (ctx ):
7
7
info = ctx .toolchains ["//ecsact:toolchain_type" ].ecsact_info
Original file line number Diff line number Diff line change @@ -29,11 +29,12 @@ def rules_ecsact_dependencies():
29
29
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz" ,
30
30
],
31
31
)
32
+
32
33
http_archive (
33
- name = "ecsact_runtime " ,
34
- sha256 = "e846a1ea81ca5d0ba9d39a4cd55209eb74c22bd85bc37a411eb5f6582b95040d " ,
35
- strip_prefix = "ecsact_runtime -0.1.0 " ,
36
- url = "https://github.com/ecsact-dev/ecsact_runtime /archive/refs/tags/0.1.0. tar.gz" ,
34
+ name = "ecsact_codegen " ,
35
+ sha256 = "5a1a466dbddbe042c2e5910f3b65ca44a5ffcef5831fdd0c3b2e2863c13cfb31 " ,
36
+ strip_prefix = "ecsact_codegen -0.0.2 " ,
37
+ urls = [ "https://github.com/ecsact-dev/ecsact_codegen /archive/refs/tags/0.0.2. tar.gz" ] ,
37
38
)
38
39
39
40
########
@@ -91,7 +92,7 @@ ecsact_toolchain(
91
92
"""
92
93
93
94
_CODEGEN_BUILD_CONTENT = """
94
- load("@ecsact_runtime //:codegen_plugin.bzl", "ecsact_codegen_plugin")
95
+ load("@ecsact_codegen //:codegen_plugin.bzl", "ecsact_codegen_plugin")
95
96
96
97
package(default_visibility = ["//visibility:public"])
97
98
You can’t perform that action at this time.
0 commit comments