BUILD 1.5 KB
Newer Older
D
Dong Li 已提交
1 2 3 4
package(default_visibility = ["//visibility:public"])

cc_proto_library(
    name = "error_code_proto",
L
Lei Wang 已提交
5 6 7 8 9 10 11 12
    deps = [
        ":error_code_proto_lib",
    ],
)

proto_library(
    name = "error_code_proto_lib",
    srcs = [
D
Dong Li 已提交
13 14 15 16 17 18
        "error_code.proto",
    ],
)

cc_proto_library(
    name = "header_proto",
L
Lei Wang 已提交
19 20 21 22 23 24 25 26
    deps = [
        ":header_proto_lib",
    ],
)

proto_library(
    name = "header_proto_lib",
    srcs = [
D
Dong Li 已提交
27 28 29
        "header.proto",
    ],
    deps = [
L
Lei Wang 已提交
30
        ":error_code_proto_lib",
D
Dong Li 已提交
31 32 33
    ],
)

34 35
cc_proto_library(
    name = "vehicle_signal_proto",
L
Lei Wang 已提交
36 37 38 39 40 41 42 43
    deps = [
        ":vehicle_signal_proto_lib",
    ],
)

proto_library(
    name = "vehicle_signal_proto_lib",
    srcs = [
44 45 46 47
        "vehicle_signal.proto",
    ],
)

D
Dong Li 已提交
48 49
cc_proto_library(
    name = "common_proto",
L
Lei Wang 已提交
50 51 52 53 54 55 56 57
    deps = [
        ":common_proto_lib",
    ],
)

proto_library(
    name = "common_proto_lib",
    srcs = [
D
Dong Li 已提交
58 59 60
        "geometry.proto",
    ],
    deps = [
L
Lei Wang 已提交
61 62
        ":error_code_proto_lib",
        ":header_proto_lib",
D
Dong Li 已提交
63 64 65 66 67
    ],
)

cc_proto_library(
    name = "gnss_status_proto",
L
Lei Wang 已提交
68 69 70 71 72 73 74 75
    deps = [
        ":gnss_status_proto_lib",
    ],
)

proto_library(
    name = "gnss_status_proto_lib",
    srcs = [
D
Dong Li 已提交
76 77 78
        "gnss_status.proto",
    ],
    deps = [
L
Lei Wang 已提交
79 80
        ":error_code_proto_lib",
        ":header_proto_lib",
D
Dong Li 已提交
81 82 83
    ],
)

K
Kecheng Xu 已提交
84
cc_proto_library(
85
    name = "pnc_point_proto",
L
Lei Wang 已提交
86 87
    deps = [
        ":pnc_point_proto_lib",
K
Kecheng Xu 已提交
88 89 90
    ],
)

L
Lei Wang 已提交
91 92 93
proto_library(
    name = "pnc_point_proto_lib",
    srcs = [
94
        "pnc_point.proto",
D
Dong Li 已提交
95 96
    ],
)