1import("../../test_template.gni")
2import("test_src_math.gni")
3
4foreach(s, math_list) {
5  test_unittest(s) {
6    target_dir = "math"
7  }
8}
9
10group("math_test") {
11  testonly = true
12  deps = []
13
14  foreach(s, math_list) {
15    deps += [ ":${s}" ]
16  }
17}
18