From 3e787560344961563c36cb676cb24412d57f61d1 Mon Sep 17 00:00:00 2001 From: Gergely Szilvasy Date: Fri, 27 May 2016 08:22:40 -0700 Subject: [PATCH] Remove TARGETS files --- example/sql/TARGETS | 14 ----------- tests/TARGETS | 58 --------------------------------------------- 2 files changed, 72 deletions(-) delete mode 100644 example/sql/TARGETS delete mode 100644 tests/TARGETS diff --git a/example/sql/TARGETS b/example/sql/TARGETS deleted file mode 100644 index af6f259..0000000 --- a/example/sql/TARGETS +++ /dev/null @@ -1,14 +0,0 @@ -haskell_binary( - name = 'example', - srcs = [ - 'Main.hs', - ], - deps = [ - '@/sigma/haxl/core', - ], - packages = [ - 'hashable', - 'text', - 'random', - ], -) diff --git a/tests/TARGETS b/tests/TARGETS deleted file mode 100644 index d60db35..0000000 --- a/tests/TARGETS +++ /dev/null @@ -1,58 +0,0 @@ -haskell_unittest( - name = 'haxl-core-unit', - warnings_flags = [ - '-fno-warn-name-shadowing', - '-fno-warn-missing-signatures', - ], - srcs = [ - 'TestTypes.hs', - 'MockTAO.hs', - 'BatchTests.hs', - 'CoreTests.hs', - 'ExampleDataSource.hs', - 'TestExampleDataSource.hs', - 'DataCacheTest.hs', - 'LoadCache.hs', - 'Main.hs', - ], - deps = [ - '@/sigma/haxl/core', - '@/sigma/haxl/util', - ], - packages = [ - 'HUnit', - 'aeson', - 'bytestring', - 'containers', - 'hashable', - 'text', - 'unordered-containers', - ], - ) - - -haskell_binary( - name = 'haxl-datacache-bench', - main = 'Bench', - srcs = [ - 'Bench.hs', - ], - warnings_flags = [ - '-fno-warn-name-shadowing', - '-fno-warn-missing-signatures', - ], - compiler_flags = [ - '-rtsopts' - ], - deps = [ - '@/sigma/haxl/core', - ], - packages = [ - 'hashable', - 'containers', - 'aeson', - 'unordered-containers', - 'bytestring', - 'time', - ], - )