| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- # 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 = ["//explorer:__subpackages__"])
- cc_library(
- name = "ast",
- srcs = [
- "ast_node.cpp",
- "ast_rtti.cpp",
- "bindings.cpp",
- "clone_context.cpp",
- "declaration.cpp",
- "element.cpp",
- "expression.cpp",
- "impl_binding.cpp",
- "pattern.cpp",
- "statement.cpp",
- "value.cpp",
- ],
- hdrs = [
- "address.h",
- "ast.h",
- "ast_kinds.h",
- "ast_node.h",
- "ast_rtti.h",
- "bindings.h",
- "clone_context.h",
- "declaration.h",
- "element.h",
- "element_path.h",
- "expression.h",
- "impl_binding.h",
- "pattern.h",
- "return_term.h",
- "statement.h",
- "value.h",
- "value_node.h",
- "value_transform.h",
- ],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- textual_hdrs = [
- "value_kinds.def",
- ],
- deps = [
- ":expression_category",
- ":library_name",
- ":paren_contents",
- "//common:check",
- "//common:enum_base",
- "//common:error",
- "//common:indirect_value",
- "//common:ostream",
- "//explorer/base:arena",
- "//explorer/base:decompose",
- "//explorer/base:error_builders",
- "//explorer/base:nonnull",
- "//explorer/base:print_as_id",
- "//explorer/base:source_location",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "ast_test_matchers",
- testonly = 1,
- srcs = [
- "ast_test_matchers_internal.cpp",
- "ast_test_matchers_internal.h",
- ],
- hdrs = ["ast_test_matchers.h"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = [
- ":ast",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "ast_test_matchers_test",
- size = "small",
- srcs = ["ast_test_matchers_test.cpp"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = [
- ":ast",
- ":ast_test_matchers",
- "//explorer/base:arena",
- "//testing/base:gtest_main",
- "@googletest//:gtest",
- ],
- )
- cc_test(
- name = "expression_test",
- size = "small",
- srcs = ["expression_test.cpp"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = [
- ":ast",
- ":paren_contents",
- "//explorer/base:arena",
- "//testing/base:gtest_main",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "library_name",
- hdrs = ["library_name.h"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- )
- cc_library(
- name = "paren_contents",
- hdrs = ["paren_contents.h"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = [
- "//explorer/base:error_builders",
- "//explorer/base:source_location",
- ],
- )
- cc_test(
- name = "element_test",
- size = "small",
- srcs = ["element_test.cpp"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = [
- ":ast",
- ":paren_contents",
- "//explorer/base:arena",
- "//testing/base:gtest_main",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "pattern_test",
- size = "small",
- srcs = ["pattern_test.cpp"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = [
- ":ast",
- ":paren_contents",
- "//explorer/base:arena",
- "//testing/base:gtest_main",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "static_scope",
- srcs = ["static_scope.cpp"],
- hdrs = ["static_scope.h"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = [
- ":ast",
- "//common:check",
- "//common:error",
- "//common:ostream",
- "//explorer/base:error_builders",
- "//explorer/base:nonnull",
- "//explorer/base:print_as_id",
- "//explorer/base:source_location",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "expression_category",
- hdrs = ["expression_category.h"],
- # Running clang-tidy is slow, and explorer is currently feature frozen, so
- # don't spend time linting it.
- tags = ["no-clang-tidy"],
- deps = ["@llvm-project//llvm:Support"],
- )
|