BUILD 832 字节
Newer Older
D
Dong Li 已提交
1 2
load("//tools:cpplint.bzl", "cpplint")

D
Dong Li 已提交
3 4
package(default_visibility = ["//visibility:public"])

5 6
cc_library(
    name = "curve_math",
7 8
    srcs = ["curve_math.cc"],
    hdrs = ["curve_math.h"],
9 10
)

11 12
cc_library(
    name = "discrete_points_math",
13 14
    srcs = ["discrete_points_math.cc"],
    hdrs = ["discrete_points_math.h"],
15 16 17
    copts = [
        "-DMODULE_NAME=\\\"planning\\\"",
    ],
18 19 20
    deps = [
        "//cyber/common:log",
    ],
21 22
)

Q
Qi Luo 已提交
23 24 25
cc_test(
    name = "curve_math_test",
    size = "small",
26
    srcs = ["curve_math_test.cc"],
Q
Qi Luo 已提交
27 28 29 30 31 32
    deps = [
        ":curve_math",
        "@gtest//:main",
    ],
)

33 34
cc_library(
    name = "polynomial_xd",
35 36
    srcs = ["polynomial_xd.cc"],
    hdrs = ["polynomial_xd.h"],
37 38 39
    copts = [
        "-DMODULE_NAME=\\\"planning\\\"",
    ],
40
    deps = [
41
        "//cyber/common:log",
42 43 44
    ],
)

D
Dong Li 已提交
45
cpplint()