diff --git a/BUILD b/BUILD index 6db5fd90..11983048 100644 --- a/BUILD +++ b/BUILD @@ -133,7 +133,7 @@ cc_library( ], deps = [ ":wasm_vm_headers", - "//external:wee8", + "@v8//:wee8", ], ) @@ -151,7 +151,7 @@ cc_library( ], deps = [ ":wasm_vm_headers", - "//external:wamr", + "@com_github_bytecodealliance_wasm_micro_runtime//:wamr_lib", ], ) @@ -178,7 +178,7 @@ cc_library( }), deps = [ ":wasm_vm_headers", - "//external:wasmedge", + "@com_github_wasmedge_wasmedge//:wasmedge_lib", ], ) @@ -217,7 +217,7 @@ cc_library( }), deps = [ ":wasm_vm_headers", - "//external:wasmtime", + "@com_github_bytecodealliance_wasmtime//:wasmtime_lib", ], ) @@ -276,7 +276,7 @@ cc_library( }), deps = [ ":wasm_vm_headers", - "//external:prefixed_wasmtime", + "@com_github_bytecodealliance_wasmtime//:prefixed_wasmtime_lib", ], ) diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index 09939a70..3881f7f8 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -257,11 +257,6 @@ def proxy_wasm_cpp_host_repositories(): build_file = "@proxy_wasm_cpp_host//bazel/external:intel_ittapi.BUILD", ) - native.bind( - name = "wee8", - actual = "@v8//:wee8", - ) - # WAMR with dependencies. maybe( @@ -274,11 +269,6 @@ def proxy_wasm_cpp_host_repositories(): url = "https://github.com/bytecodealliance/wasm-micro-runtime/archive/refs/tags/WAMR-2.4.1.zip", ) - native.bind( - name = "wamr", - actual = "@com_github_bytecodealliance_wasm_micro_runtime//:wamr_lib", - ) - maybe( http_archive, name = "llvm-15_0_7", @@ -299,11 +289,6 @@ def proxy_wasm_cpp_host_repositories(): url = "https://github.com/WasmEdge/WasmEdge/archive/refs/tags/proxy-wasm/0.13.1.tar.gz", ) - native.bind( - name = "wasmedge", - actual = "@com_github_wasmedge_wasmedge//:wasmedge_lib", - ) - # Wasmtime with dependencies. maybe( @@ -314,13 +299,3 @@ def proxy_wasm_cpp_host_repositories(): strip_prefix = "wasmtime-24.0.0", url = "https://github.com/bytecodealliance/wasmtime/archive/v24.0.0.tar.gz", ) - - native.bind( - name = "wasmtime", - actual = "@com_github_bytecodealliance_wasmtime//:wasmtime_lib", - ) - - native.bind( - name = "prefixed_wasmtime", - actual = "@com_github_bytecodealliance_wasmtime//:prefixed_wasmtime_lib", - )