Remove TARGETS files

This commit is contained in:
Gergely Szilvasy 2016-05-27 08:22:40 -07:00
parent f09fc218c3
commit 3e78756034
2 changed files with 0 additions and 72 deletions

View File

@ -1,14 +0,0 @@
haskell_binary(
name = 'example',
srcs = [
'Main.hs',
],
deps = [
'@/sigma/haxl/core',
],
packages = [
'hashable',
'text',
'random',
],
)

View File

@ -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',
],
)