blob: c5c40aa91f3e08c871a3011de25c7eda1b4b8a8d [file] [log] [blame]
source_set("factorial") {
sources = [
"factorial.cc",
"factorial.h",
]
}
executable("factorial_test") {
testonly = true
sources = [
"factorial_unittest.cc",
]
deps = [
":factorial",
"//third_party/gtest",
]
}