From c6c6e70155e43cafe24ebca83464179ab20102c0 Mon Sep 17 00:00:00 2001 From: Liangliang He Date: Mon, 28 May 2018 09:43:43 +0800 Subject: [PATCH] remove libmace.so target --- mace/core/BUILD | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/mace/core/BUILD b/mace/core/BUILD index 01b666ea..a08c0c7e 100644 --- a/mace/core/BUILD +++ b/mace/core/BUILD @@ -84,7 +84,11 @@ cc_library( hdrs = glob([ "runtime/opencl/*.h", ]), - copts = ["-Werror", "-Wextra", "-Wno-missing-field-initializers"], + copts = [ + "-Werror", + "-Wextra", + "-Wno-missing-field-initializers", + ], deps = [ "@opencl_clhpp//:opencl_clhpp", "@opencl_headers//:opencl20_headers", @@ -101,7 +105,11 @@ cc_library( hdrs = [ "testing/test_benchmark.h", ], - copts = ["-Werror", "-Wextra", "-Wno-missing-field-initializers"], + copts = [ + "-Werror", + "-Wextra", + "-Wno-missing-field-initializers", + ], deps = [ ":core", "//external:gflags_nothreads", @@ -109,11 +117,3 @@ cc_library( ], alwayslink = 1, ) - -cc_binary( - name = "libmace.so", - linkshared = 1, - deps = [ - "//mace/core", - ], -) -- GitLab