From 4bda3334129fedea1f3c2e3bb4bf489e06e42c41 Mon Sep 17 00:00:00 2001 From: mehrdadn Date: Tue, 9 Jun 2020 19:21:41 -0700 Subject: [PATCH] Fix Windows build issue introduced in #8852 (#8869) Co-authored-by: Mehrdad --- BUILD.bazel | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index fe69d9cad..d93084b37 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -295,10 +295,8 @@ cc_library( "@bazel_tools//src/conditions:windows": PROPAGATED_WINDOWS_DEFINES, "//conditions:default": [], }), - includes = [ - "src", - ], linkopts = PLASMA_LINKOPTS, + strip_include_prefix = "src", deps = [ ":common_fbs", ":plasma_fbs", @@ -394,10 +392,8 @@ cc_library( "src/ray/thirdparty/dlmalloc.c", ], copts = PLASMA_COPTS, - includes = [ - "src", - ], linkopts = PLASMA_LINKOPTS, + strip_include_prefix = "src", deps = [ ":ae", ":plasma_client", @@ -1277,6 +1273,7 @@ cc_library( ], visibility = ["//visibility:public"], deps = [ + ":platform_shims", ":sha256", "@boost//:asio", "@com_github_google_glog//:glog",