mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
This reverts commit 875c84ed63
.
This commit is contained in:
parent
a5523466a2
commit
0bb922c29f
2 changed files with 10 additions and 16 deletions
|
@ -9,23 +9,19 @@ cc_library(
|
|||
"cpp/src/arrow/io/interfaces.cc",
|
||||
"cpp/src/arrow/memory_pool.cc",
|
||||
"cpp/src/arrow/status.cc",
|
||||
"cpp/src/arrow/util/io_util.cc",
|
||||
"cpp/src/arrow/util/io-util.cc",
|
||||
"cpp/src/arrow/util/logging.cc",
|
||||
"cpp/src/arrow/util/memory.cc",
|
||||
"cpp/src/arrow/util/string.cc",
|
||||
"cpp/src/arrow/util/string_builder.cc",
|
||||
"cpp/src/arrow/util/thread_pool.cc",
|
||||
"cpp/src/arrow/util/thread-pool.cc",
|
||||
],
|
||||
hdrs = [
|
||||
"cpp/src/arrow/buffer.h",
|
||||
"cpp/src/arrow/io/concurrency.h",
|
||||
"cpp/src/arrow/io/interfaces.h",
|
||||
"cpp/src/arrow/io/util_internal.h",
|
||||
"cpp/src/arrow/memory_pool.h",
|
||||
"cpp/src/arrow/status.h",
|
||||
"cpp/src/arrow/util/bit_util.h",
|
||||
"cpp/src/arrow/util/checked_cast.h",
|
||||
"cpp/src/arrow/util/io_util.h",
|
||||
"cpp/src/arrow/util/bit-util.h",
|
||||
"cpp/src/arrow/util/io-util.h",
|
||||
"cpp/src/arrow/util/logging.h",
|
||||
"cpp/src/arrow/util/macros.h",
|
||||
"cpp/src/arrow/util/memory.h",
|
||||
|
@ -33,14 +29,12 @@ cc_library(
|
|||
"cpp/src/arrow/util/string.h",
|
||||
"cpp/src/arrow/util/string_builder.h",
|
||||
"cpp/src/arrow/util/string_view.h",
|
||||
"cpp/src/arrow/util/thread_pool.h",
|
||||
"cpp/src/arrow/util/thread-pool.h",
|
||||
"cpp/src/arrow/util/type_traits.h",
|
||||
"cpp/src/arrow/util/ubsan.h",
|
||||
"cpp/src/arrow/util/visibility.h",
|
||||
"cpp/src/arrow/util/windows_compatibility.h",
|
||||
"cpp/src/arrow/vendored/string_view.hpp",
|
||||
"cpp/src/arrow/vendored/xxhash.h",
|
||||
"cpp/src/arrow/vendored/xxhash/xxh3.h",
|
||||
"cpp/src/arrow/vendored/xxhash/xxhash.c",
|
||||
"cpp/src/arrow/vendored/xxhash/xxhash.h",
|
||||
],
|
||||
|
@ -182,17 +176,17 @@ FLATC_ARGS = [
|
|||
|
||||
flatbuffer_cc_library(
|
||||
name = "common_fbs",
|
||||
srcs = ["cpp/src/plasma/common.fbs"],
|
||||
srcs = ["cpp/src/plasma/format/common.fbs"],
|
||||
flatc_args = FLATC_ARGS,
|
||||
out_prefix = "cpp/src/plasma/",
|
||||
)
|
||||
|
||||
flatbuffer_cc_library(
|
||||
name = "plasma_fbs",
|
||||
srcs = ["cpp/src/plasma/plasma.fbs"],
|
||||
srcs = ["cpp/src/plasma/format/plasma.fbs"],
|
||||
flatc_args = FLATC_ARGS,
|
||||
includes = ["cpp/src/plasma/common.fbs"],
|
||||
includes = ["cpp/src/plasma/format/common.fbs"],
|
||||
out_prefix = "cpp/src/plasma/",
|
||||
)
|
||||
|
||||
exports_files(["cpp/src/plasma/common.fbs"])
|
||||
exports_files(["cpp/src/plasma/format/common.fbs"])
|
||||
|
|
|
@ -74,7 +74,7 @@ def ray_deps_setup():
|
|||
new_git_repository(
|
||||
name = "plasma",
|
||||
build_file = "@//bazel:BUILD.plasma",
|
||||
commit = "0aad5a08e539a7b7f4abd4ee57e08fe78957d412",
|
||||
commit = "141a213a54f4979ab0b94b94928739359a2ee9ad",
|
||||
remote = "https://github.com/apache/arrow",
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue