| 12345678910111213141516171819202122232425 |
- # 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("@rules_cc//cc:defs.bzl", "cc_library")
- package(default_visibility = ["//visibility:public"])
- filegroup(
- name = "testdata",
- data = glob(["testdata/**/*.carbon"]),
- )
- cc_library(
- name = "codegen",
- srcs = ["codegen.cpp"],
- hdrs = ["codegen.h"],
- deps = [
- "@llvm-project//llvm:Core",
- "@llvm-project//llvm:MC",
- "@llvm-project//llvm:Support",
- "@llvm-project//llvm:Target",
- "@llvm-project//llvm:TargetParser",
- ],
- )
|