-
Notifications
You must be signed in to change notification settings - Fork 1
/
BUILD
60 lines (52 loc) · 1017 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
51
52
53
54
55
56
57
58
59
60
##
## Main library
##
#
# Donner main library, packages together the SVG library and associated renderer.
#
cc_library(
name = "donner",
visibility = ["//visibility:public"],
deps = [
"//donner/svg/renderer",
],
)
##
## Devtools
##
filegroup(
name = "clang_tidy_config",
srcs = [".clang-tidy"],
visibility = ["//visibility:public"],
)
config_setting(
name = "debug_build",
values = {"compilation_mode": "dbg"},
)
config_setting(
name = "fast_build",
values = {"compilation_mode": "fastbuild"},
)
config_setting(
name = "release_build",
values = {"compilation_mode": "opt"},
)
filegroup(
name = "docs_files",
srcs = glob([
"docs/**/*.md",
"docs/**/*.svg",
"docs/**/*.png",
]),
visibility = ["//tools:__pkg__"],
)
# Logo SVGs, which are consumed by the renderer tests.
filegroup(
name = "logo_svgs",
srcs = glob([
"*.svg",
]),
visibility = [
"//donner:__subpackages__",
],
)