aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/sass/libsass.BUILD
blob: 42368036d810669c38fb7a1eb47a2ad66cba9872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package(default_visibility = ["@sassc//:__pkg__"])

filegroup(
    name = "srcs",
    srcs = glob([
         "src/**/*.h*",
         "src/**/*.c*",
    ]),
)

# Includes directive may seem unnecessary here, but its needed for the weird
# interplay between libsass/sassc projects. This is intentional.
cc_library(
    name = "headers",
    includes = ["include"],
    hdrs = glob(["include/**/*.h"]),
)