-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
50 lines (46 loc) · 940 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
load("@bazel_lint//bazel:buildifier.bzl", "buildifier")
load("@bazel_lint//cpp:clang.bzl", "clang_format")
buildifier(
name = "format_bazel",
srcs = ["WORKSPACE"],
glob = [
"**/*BUILD",
"**/*.bzl",
],
glob_exclude = [
"bazel-*/**",
],
)
clang_format(
name = "format_cc",
glob = [
"**/*.c",
"**/*.cc",
"**/*.h",
],
glob_exclude = [
"bazel-*/**",
],
style_file = ".clang-format",
)
cc_library(
name = "xsens_ll",
includes = ["src"],
visibility = ["//visibility:public"],
deps = [
"//src:data_packet",
"//src:msg_id",
"//src:xbus_parser",
"//src:xsens_manager",
"//src:xsens_types",
],
)
cc_library(
name = "xsens_ll_linux",
includes = ["src"],
visibility = ["//visibility:public"],
deps = [
":xsens_ll",
"//src:linux_xsens_manager",
],
)