Skip to content

Latest commit

 

History

History
42 lines (37 loc) · 1.04 KB

indent.org

File metadata and controls

42 lines (37 loc) · 1.04 KB

#

#

#

Test data for bazel-mode/indent-region

workspace(name = "root")
cc_library(
    name = "lib",
    srcs = [
        "aaa.cc",
    ] + glob(["*_test.cc"]),
)

# A slightly more complex construct.
[
    cc_binary(
        name = name,
        srcs = name + ".cc",
    )
    for name in [
        "bin-a",
        "bin-b",
    ]
]