| 12345678910111213141516171819202122232425262728 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- load("//bazel/cc_rules:defs.bzl", "cc_library")
- package(default_visibility = ["//visibility:public"])
- filegroup(
- name = "testdata",
- srcs = glob(["testdata/**/*.carbon"]),
- )
- cc_library(
- name = "format",
- srcs = [
- "format.cpp",
- "formatter.cpp",
- "formatter.h",
- ],
- hdrs = ["format.h"],
- deps = [
- "//common:ostream",
- "//toolchain/lex:token_index",
- "//toolchain/lex:token_kind",
- "//toolchain/lex:tokenized_buffer",
- ],
- )
|