blob: ff65b46bdf12af9859dc0abb56cee12f6c796edf [file] [log] [blame]
# Copyright 2023 The Tint Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
# File generated by 'tools/src/cmd/gen' using the template:
# tools/src/cmd/gen/build/BUILD.bazel.tmpl
#
# To regenerate run: './tools/run gen'
#
# Do not modify this file directly
################################################################################
load("//src/tint:flags.bzl", "COPTS")
load("@bazel_skylib//lib:selects.bzl", "selects")
cc_library(
name = "ast_parser",
srcs = [
"ast_parser.cc",
"construct.cc",
"entry_point_info.cc",
"enum_converter.cc",
"function.cc",
"namer.cc",
"parse.cc",
"type.cc",
"usage.cc",
],
hdrs = [
"ast_parser.h",
"attributes.h",
"construct.h",
"entry_point_info.h",
"enum_converter.h",
"fail_stream.h",
"function.h",
"namer.h",
"parse.h",
"type.h",
"usage.h",
],
deps = [
"//src/tint/api/common",
"//src/tint/lang/core",
"//src/tint/lang/core/constant",
"//src/tint/lang/core/type",
"//src/tint/lang/spirv/reader/common",
"//src/tint/lang/wgsl/ast",
"//src/tint/lang/wgsl/ast/transform",
"//src/tint/lang/wgsl/program",
"//src/tint/lang/wgsl/resolver",
"//src/tint/lang/wgsl/sem",
"//src/tint/utils/containers",
"//src/tint/utils/diagnostic",
"//src/tint/utils/ice",
"//src/tint/utils/id",
"//src/tint/utils/macros",
"//src/tint/utils/math",
"//src/tint/utils/memory",
"//src/tint/utils/reflection",
"//src/tint/utils/result",
"//src/tint/utils/rtti",
"//src/tint/utils/symbol",
"//src/tint/utils/text",
"//src/tint/utils/traits",
] + select({
":tint_build_spv_reader": [
"//src/tint/lang/spirv/reader/ast_lower",
],
"//conditions:default": [],
}) + select({
":tint_build_spv_reader_or_tint_build_spv_writer": [
"@spirv_headers//:spirv_cpp11_headers", "@spirv_headers//:spirv_c_headers",
"@spirv_tools//:spirv_tools_opt",
],
"//conditions:default": [],
}),
copts = COPTS,
visibility = ["//visibility:public"],
)
cc_library(
name = "test",
alwayslink = True,
srcs = [
"ast_parser_test.cc",
"barrier_test.cc",
"constant_test.cc",
"convert_member_decoration_test.cc",
"convert_type_test.cc",
"enum_converter_test.cc",
"fail_stream_test.cc",
"function_arithmetic_test.cc",
"function_bit_test.cc",
"function_call_test.cc",
"function_cfg_test.cc",
"function_composite_test.cc",
"function_conversion_test.cc",
"function_decl_test.cc",
"function_glsl_std_450_test.cc",
"function_logical_test.cc",
"function_memory_test.cc",
"function_misc_test.cc",
"function_var_test.cc",
"get_decorations_test.cc",
"handle_test.cc",
"helper_test.cc",
"helper_test.h",
"import_test.cc",
"module_function_decl_test.cc",
"module_var_test.cc",
"named_types_test.cc",
"namer_test.cc",
"parser_test.cc",
"spirv_tools_helpers_test.cc",
"spirv_tools_helpers_test.h",
"type_test.cc",
"usage_test.cc",
"user_name_test.cc",
],
deps = [
"//src/tint/api/common",
"//src/tint/lang/core",
"//src/tint/lang/core/constant",
"//src/tint/lang/core/type",
"//src/tint/lang/spirv/reader/common",
"//src/tint/lang/wgsl/ast",
"//src/tint/lang/wgsl/program",
"//src/tint/lang/wgsl/sem",
"//src/tint/lang/wgsl/writer/ast_printer",
"//src/tint/utils/containers",
"//src/tint/utils/diagnostic",
"//src/tint/utils/generator",
"//src/tint/utils/ice",
"//src/tint/utils/id",
"//src/tint/utils/macros",
"//src/tint/utils/math",
"//src/tint/utils/memory",
"//src/tint/utils/reflection",
"//src/tint/utils/result",
"//src/tint/utils/rtti",
"//src/tint/utils/symbol",
"//src/tint/utils/text",
"//src/tint/utils/traits",
"@gtest",
] + select({
":tint_build_spv_reader": [
"//src/tint/lang/spirv/reader/ast_parser",
],
"//conditions:default": [],
}) + select({
":tint_build_spv_reader_or_tint_build_spv_writer": [
"@spirv_headers//:spirv_cpp11_headers", "@spirv_headers//:spirv_c_headers",
"@spirv_tools//:spirv_tools_opt",
"@spirv_tools",
],
"//conditions:default": [],
}),
copts = COPTS,
visibility = ["//visibility:public"],
)
alias(
name = "tint_build_spv_reader",
actual = "//src/tint:tint_build_spv_reader_true",
)
alias(
name = "tint_build_spv_writer",
actual = "//src/tint:tint_build_spv_writer_true",
)
selects.config_setting_group(
name = "tint_build_spv_reader_or_tint_build_spv_writer",
match_any = [
"tint_build_spv_reader",
"tint_build_spv_writer",
],
)