| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- # 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", "cc_test")
- package(default_visibility = ["//visibility:public"])
- cc_library(
- name = "index_base",
- hdrs = ["index_base.h"],
- deps = [
- "//common:ostream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "kind_switch",
- hdrs = ["kind_switch.h"],
- deps = [
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "pretty_stack_trace_function",
- hdrs = ["pretty_stack_trace_function.h"],
- deps = [
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "mem_usage",
- hdrs = ["mem_usage.h"],
- deps = [
- ":yaml",
- "//common:map",
- "//common:set",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "timings",
- hdrs = ["timings.h"],
- deps = [
- ":yaml",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "value_ids",
- hdrs = ["value_ids.h"],
- deps = [
- ":index_base",
- "//common:check",
- "//common:ostream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "value_store",
- hdrs = ["value_store.h"],
- deps = [
- ":mem_usage",
- ":yaml",
- "//common:check",
- "//common:hashtable_key_context",
- "//common:ostream",
- "//common:set",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "value_store_test",
- size = "small",
- srcs = ["value_store_test.cpp"],
- deps = [
- ":value_ids",
- ":value_store",
- "//common:raw_string_ostream",
- "//testing/base:gtest_main",
- "//toolchain/testing:yaml_test_helpers",
- "@googletest//:gtest",
- ],
- )
- cc_library(
- name = "int",
- srcs = ["int.cpp"],
- hdrs = ["int.h"],
- deps = [
- ":index_base",
- ":mem_usage",
- ":value_store",
- ":yaml",
- "//common:check",
- "//common:hashtable_key_context",
- "//common:ostream",
- "//common:set",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "int_test",
- size = "small",
- srcs = ["int_test.cpp"],
- deps = [
- ":int",
- "//common:raw_string_ostream",
- "//testing/base:gtest_main",
- "//toolchain/testing:yaml_test_helpers",
- "@googletest//:gtest",
- ],
- )
- cc_library(
- name = "shared_value_stores",
- hdrs = ["shared_value_stores.h"],
- deps = [
- ":int",
- ":mem_usage",
- ":value_ids",
- ":value_store",
- ":yaml",
- ],
- )
- cc_test(
- name = "shared_value_stores_test",
- size = "small",
- srcs = ["shared_value_stores_test.cpp"],
- deps = [
- ":shared_value_stores",
- "//common:raw_string_ostream",
- "//testing/base:gtest_main",
- "//toolchain/testing:yaml_test_helpers",
- "@googletest//:gtest",
- ],
- )
- cc_library(
- name = "yaml",
- hdrs = ["yaml.h"],
- deps = [
- "//common:check",
- "//common:ostream",
- "@llvm-project//llvm:Support",
- ],
- )
|