19 lines
335 B
Python
19 lines
335 B
Python
|
|
librule(
|
|
sources = ["col.cc"],
|
|
headers = ["arraylist.h", "heap.h", "string.h", "fastalloc.h"],
|
|
deplibs = ["base:base"]
|
|
)
|
|
|
|
binrule(
|
|
name = "col_test",
|
|
sources = ["col_test.cc"],
|
|
linkables = [":col"])
|
|
|
|
|
|
binrule(
|
|
name = "timing_test",
|
|
sources = ["timing_test.cc"],
|
|
linkables = [":col", "fx:fx"])
|
|
|