Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 1 | # Copyright 2021 The Tint Authors |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | import("//build_overrides/build.gni") |
| 16 | import("../../tint_overrides_with_defaults.gni") |
| 17 | |
| 18 | ############################################################################### |
| 19 | # Common - Configs, etc. shared across targets |
| 20 | ############################################################################### |
| 21 | |
| 22 | config("tint_common_config") { |
| 23 | include_dirs = [ |
| 24 | "${target_gen_dir}", |
| 25 | "${tint_root_dir}/", |
| 26 | "${tint_spirv_headers_dir}/include", |
| 27 | "${tint_spirv_tools_dir}/", |
| 28 | "${tint_spirv_tools_dir}/include", |
| 29 | ] |
| 30 | } |
| 31 | |
| 32 | config("tint_public_config") { |
| 33 | defines = [] |
| 34 | if (tint_build_spv_reader) { |
| 35 | defines += [ "TINT_BUILD_SPV_READER=1" ] |
| 36 | } else { |
| 37 | defines += [ "TINT_BUILD_SPV_READER=0" ] |
| 38 | } |
| 39 | |
| 40 | if (tint_build_spv_writer) { |
| 41 | defines += [ "TINT_BUILD_SPV_WRITER=1" ] |
| 42 | } else { |
| 43 | defines += [ "TINT_BUILD_SPV_WRITER=0" ] |
| 44 | } |
| 45 | |
| 46 | if (tint_build_wgsl_reader) { |
| 47 | defines += [ "TINT_BUILD_WGSL_READER=1" ] |
| 48 | } else { |
| 49 | defines += [ "TINT_BUILD_WGSL_READER=0" ] |
| 50 | } |
| 51 | |
| 52 | if (tint_build_wgsl_writer) { |
| 53 | defines += [ "TINT_BUILD_WGSL_WRITER=1" ] |
| 54 | } else { |
| 55 | defines += [ "TINT_BUILD_WGSL_WRITER=0" ] |
| 56 | } |
| 57 | |
| 58 | if (tint_build_msl_writer) { |
| 59 | defines += [ "TINT_BUILD_MSL_WRITER=1" ] |
| 60 | } else { |
| 61 | defines += [ "TINT_BUILD_MSL_WRITER=0" ] |
| 62 | } |
| 63 | |
| 64 | if (tint_build_hlsl_writer) { |
| 65 | defines += [ "TINT_BUILD_HLSL_WRITER=1" ] |
| 66 | } else { |
| 67 | defines += [ "TINT_BUILD_HLSL_WRITER=0" ] |
| 68 | } |
| 69 | |
| 70 | if (tint_build_glsl_writer) { |
| 71 | defines += [ "TINT_BUILD_GLSL_WRITER=1" ] |
| 72 | } else { |
| 73 | defines += [ "TINT_BUILD_GLSL_WRITER=0" ] |
| 74 | } |
| 75 | |
| 76 | include_dirs = [ |
| 77 | "${tint_root_dir}/", |
| 78 | "${tint_root_dir}/include/", |
| 79 | "${tint_spirv_headers_dir}/include", |
| 80 | ] |
| 81 | } |
| 82 | |
| 83 | config("tint_config") { |
| 84 | include_dirs = [] |
| 85 | if (tint_build_spv_reader || tint_build_spv_writer) { |
| 86 | include_dirs += [ "${tint_spirv_tools_dir}/include/" ] |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | ############################################################################### |
| 91 | # Helper library for IO operations |
| 92 | # Only to be used by tests and sample executable |
| 93 | ############################################################################### |
| 94 | source_set("tint_utils_io") { |
| 95 | sources = [ |
| 96 | "utils/io/command.h", |
| 97 | "utils/io/tmpfile.h", |
| 98 | ] |
| 99 | |
| 100 | if (is_linux || is_mac) { |
| 101 | sources += [ "utils/io/command_posix.cc" ] |
| 102 | sources += [ "utils/io/tmpfile_posix.cc" ] |
| 103 | } else if (is_win) { |
| 104 | sources += [ "utils/io/command_windows.cc" ] |
| 105 | sources += [ "utils/io/tmpfile_windows.cc" ] |
| 106 | } else { |
| 107 | sources += [ "utils/io/command_other.cc" ] |
| 108 | sources += [ "utils/io/tmpfile_other.cc" ] |
| 109 | } |
| 110 | |
| 111 | public_deps = [ ":libtint_core_all_src" ] |
| 112 | } |
| 113 | |
| 114 | ############################################################################### |
| 115 | # Helper library for validating generated shaders |
| 116 | # As this depends on tint_utils_io, this is only to be used by tests and sample |
| 117 | # executable |
| 118 | ############################################################################### |
| 119 | source_set("tint_val") { |
| 120 | sources = [ |
| 121 | "val/hlsl.cc", |
| 122 | "val/msl.cc", |
| 123 | "val/val.h", |
| 124 | ] |
| 125 | public_deps = [ ":tint_utils_io" ] |
| 126 | } |
| 127 | |
| 128 | ############################################################################### |
| 129 | # Library - Tint core and optional modules of libtint |
| 130 | ############################################################################### |
| 131 | # libtint source sets are divided into a non-optional core in :libtint_core_src |
| 132 | # and optional :libtint_*_src subsets, because ninja does not like having |
| 133 | # multiple source files with the same name, like function.cc, in the same |
| 134 | # source set |
| 135 | # target. |
| 136 | # |
| 137 | # Targets that want to use tint as a library should depend on ":libtint" and |
| 138 | # use the build flags to control what is included, instead of trying to specify |
| 139 | # the subsets that they want. |
| 140 | |
| 141 | template("libtint_source_set") { |
| 142 | source_set(target_name) { |
| 143 | forward_variables_from(invoker, "*", [ "configs" ]) |
| 144 | |
| 145 | if (!defined(invoker.deps)) { |
| 146 | deps = [] |
| 147 | } |
| 148 | deps += [ |
| 149 | "${tint_spirv_headers_dir}:spv_headers", |
| 150 | "${tint_spirv_tools_dir}:spvtools_core_enums_unified1", |
| 151 | "${tint_spirv_tools_dir}:spvtools_core_tables_unified1", |
| 152 | "${tint_spirv_tools_dir}:spvtools_headers", |
| 153 | "${tint_spirv_tools_dir}:spvtools_language_header_cldebuginfo100", |
| 154 | "${tint_spirv_tools_dir}:spvtools_language_header_debuginfo", |
| 155 | "${tint_spirv_tools_dir}:spvtools_language_header_vkdebuginfo100", |
| 156 | ] |
| 157 | |
| 158 | if (defined(invoker.configs)) { |
| 159 | configs += invoker.configs |
| 160 | } |
| 161 | configs += [ ":tint_common_config" ] |
| 162 | if (build_with_chromium) { |
| 163 | configs -= [ "//build/config/compiler:chromium_code" ] |
| 164 | configs += [ "//build/config/compiler:no_chromium_code" ] |
| 165 | } |
| 166 | |
| 167 | if (!defined(invoker.public_configs)) { |
| 168 | public_configs = [] |
| 169 | } |
| 170 | public_configs += [ ":tint_public_config" ] |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | libtint_source_set("libtint_core_all_src") { |
| 175 | sources = [ |
| 176 | "ast/access.cc", |
| 177 | "ast/access.h", |
| 178 | "ast/alias.cc", |
| 179 | "ast/alias.h", |
| 180 | "ast/array.cc", |
| 181 | "ast/array.h", |
| 182 | "ast/assignment_statement.cc", |
| 183 | "ast/assignment_statement.h", |
| 184 | "ast/ast_type.cc", # TODO(bclayton) - rename to type.cc |
| 185 | "ast/atomic.cc", |
| 186 | "ast/atomic.h", |
| 187 | "ast/attribute.cc", |
| 188 | "ast/attribute.h", |
| 189 | "ast/binary_expression.cc", |
| 190 | "ast/binary_expression.h", |
| 191 | "ast/binding_attribute.cc", |
| 192 | "ast/binding_attribute.h", |
| 193 | "ast/bitcast_expression.cc", |
| 194 | "ast/bitcast_expression.h", |
| 195 | "ast/block_statement.cc", |
| 196 | "ast/block_statement.h", |
| 197 | "ast/bool.cc", |
| 198 | "ast/bool.h", |
| 199 | "ast/bool_literal_expression.cc", |
| 200 | "ast/bool_literal_expression.h", |
| 201 | "ast/break_statement.cc", |
| 202 | "ast/break_statement.h", |
| 203 | "ast/builtin.cc", |
| 204 | "ast/builtin.h", |
| 205 | "ast/builtin_attribute.cc", |
| 206 | "ast/builtin_attribute.h", |
| 207 | "ast/call_expression.cc", |
| 208 | "ast/call_expression.h", |
| 209 | "ast/call_statement.cc", |
| 210 | "ast/call_statement.h", |
| 211 | "ast/case_statement.cc", |
| 212 | "ast/case_statement.h", |
James Price | 4924186 | 2022-03-31 22:30:10 +0000 | [diff] [blame] | 213 | "ast/compound_assignment_statement.cc", |
| 214 | "ast/compound_assignment_statement.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 215 | "ast/continue_statement.cc", |
| 216 | "ast/continue_statement.h", |
| 217 | "ast/depth_multisampled_texture.cc", |
| 218 | "ast/depth_multisampled_texture.h", |
| 219 | "ast/depth_texture.cc", |
| 220 | "ast/depth_texture.h", |
| 221 | "ast/disable_validation_attribute.cc", |
| 222 | "ast/disable_validation_attribute.h", |
| 223 | "ast/discard_statement.cc", |
| 224 | "ast/discard_statement.h", |
| 225 | "ast/else_statement.cc", |
| 226 | "ast/else_statement.h", |
| 227 | "ast/expression.cc", |
| 228 | "ast/expression.h", |
| 229 | "ast/external_texture.cc", |
| 230 | "ast/external_texture.h", |
| 231 | "ast/f32.cc", |
| 232 | "ast/f32.h", |
| 233 | "ast/fallthrough_statement.cc", |
| 234 | "ast/fallthrough_statement.h", |
| 235 | "ast/float_literal_expression.cc", |
| 236 | "ast/float_literal_expression.h", |
| 237 | "ast/for_loop_statement.cc", |
| 238 | "ast/for_loop_statement.h", |
| 239 | "ast/function.cc", |
| 240 | "ast/function.h", |
| 241 | "ast/group_attribute.cc", |
| 242 | "ast/group_attribute.h", |
| 243 | "ast/i32.cc", |
| 244 | "ast/i32.h", |
| 245 | "ast/id_attribute.cc", |
| 246 | "ast/id_attribute.h", |
| 247 | "ast/identifier_expression.cc", |
| 248 | "ast/identifier_expression.h", |
| 249 | "ast/if_statement.cc", |
| 250 | "ast/if_statement.h", |
| 251 | "ast/index_accessor_expression.cc", |
| 252 | "ast/index_accessor_expression.h", |
| 253 | "ast/int_literal_expression.cc", |
| 254 | "ast/int_literal_expression.h", |
| 255 | "ast/internal_attribute.cc", |
| 256 | "ast/internal_attribute.h", |
| 257 | "ast/interpolate_attribute.cc", |
| 258 | "ast/interpolate_attribute.h", |
| 259 | "ast/invariant_attribute.cc", |
| 260 | "ast/invariant_attribute.h", |
| 261 | "ast/literal_expression.cc", |
| 262 | "ast/literal_expression.h", |
| 263 | "ast/location_attribute.cc", |
| 264 | "ast/location_attribute.h", |
| 265 | "ast/loop_statement.cc", |
| 266 | "ast/loop_statement.h", |
| 267 | "ast/matrix.cc", |
| 268 | "ast/matrix.h", |
| 269 | "ast/member_accessor_expression.cc", |
| 270 | "ast/member_accessor_expression.h", |
| 271 | "ast/module.cc", |
| 272 | "ast/module.h", |
| 273 | "ast/multisampled_texture.cc", |
| 274 | "ast/multisampled_texture.h", |
| 275 | "ast/node.cc", |
| 276 | "ast/node.h", |
| 277 | "ast/phony_expression.cc", |
| 278 | "ast/phony_expression.h", |
| 279 | "ast/pipeline_stage.cc", |
| 280 | "ast/pipeline_stage.h", |
| 281 | "ast/pointer.cc", |
| 282 | "ast/pointer.h", |
| 283 | "ast/return_statement.cc", |
| 284 | "ast/return_statement.h", |
| 285 | "ast/sampled_texture.cc", |
| 286 | "ast/sampled_texture.h", |
| 287 | "ast/sampler.cc", |
| 288 | "ast/sampler.h", |
| 289 | "ast/sint_literal_expression.cc", |
| 290 | "ast/sint_literal_expression.h", |
| 291 | "ast/stage_attribute.cc", |
| 292 | "ast/stage_attribute.h", |
| 293 | "ast/statement.cc", |
| 294 | "ast/statement.h", |
| 295 | "ast/storage_class.cc", |
| 296 | "ast/storage_class.h", |
| 297 | "ast/storage_texture.cc", |
| 298 | "ast/storage_texture.h", |
| 299 | "ast/stride_attribute.cc", |
| 300 | "ast/stride_attribute.h", |
| 301 | "ast/struct.cc", |
| 302 | "ast/struct.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 303 | "ast/struct_member.cc", |
| 304 | "ast/struct_member.h", |
| 305 | "ast/struct_member_align_attribute.cc", |
| 306 | "ast/struct_member_align_attribute.h", |
| 307 | "ast/struct_member_offset_attribute.cc", |
| 308 | "ast/struct_member_offset_attribute.h", |
| 309 | "ast/struct_member_size_attribute.cc", |
| 310 | "ast/struct_member_size_attribute.h", |
| 311 | "ast/switch_statement.cc", |
| 312 | "ast/switch_statement.h", |
| 313 | "ast/texture.cc", |
| 314 | "ast/texture.h", |
| 315 | "ast/traverse_expressions.h", |
| 316 | "ast/type.h", |
| 317 | "ast/type_decl.cc", |
| 318 | "ast/type_decl.h", |
| 319 | "ast/type_name.cc", |
| 320 | "ast/type_name.h", |
| 321 | "ast/u32.cc", |
| 322 | "ast/u32.h", |
| 323 | "ast/uint_literal_expression.cc", |
| 324 | "ast/uint_literal_expression.h", |
| 325 | "ast/unary_op.cc", |
| 326 | "ast/unary_op.h", |
| 327 | "ast/unary_op_expression.cc", |
| 328 | "ast/unary_op_expression.h", |
| 329 | "ast/variable.cc", |
| 330 | "ast/variable.h", |
| 331 | "ast/variable_decl_statement.cc", |
| 332 | "ast/variable_decl_statement.h", |
| 333 | "ast/vector.cc", |
| 334 | "ast/vector.h", |
| 335 | "ast/void.cc", |
| 336 | "ast/void.h", |
| 337 | "ast/workgroup_attribute.cc", |
| 338 | "ast/workgroup_attribute.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 339 | "builtin_table.cc", |
| 340 | "builtin_table.h", |
| 341 | "builtin_table.inl", |
| 342 | "castable.cc", |
| 343 | "castable.h", |
| 344 | "clone_context.cc", |
| 345 | "clone_context.h", |
| 346 | "debug.cc", |
| 347 | "debug.h", |
| 348 | "demangler.cc", |
| 349 | "demangler.h", |
| 350 | "diagnostic/diagnostic.cc", |
| 351 | "diagnostic/diagnostic.h", |
| 352 | "diagnostic/formatter.cc", |
| 353 | "diagnostic/formatter.h", |
| 354 | "diagnostic/printer.cc", |
| 355 | "diagnostic/printer.h", |
| 356 | "inspector/entry_point.cc", |
| 357 | "inspector/entry_point.h", |
| 358 | "inspector/inspector.cc", |
| 359 | "inspector/inspector.h", |
| 360 | "inspector/resource_binding.cc", |
| 361 | "inspector/resource_binding.h", |
| 362 | "inspector/scalar.cc", |
| 363 | "inspector/scalar.h", |
| 364 | "program.cc", |
| 365 | "program.h", |
| 366 | "program_builder.cc", |
| 367 | "program_builder.h", |
| 368 | "program_id.cc", |
| 369 | "program_id.h", |
| 370 | "reader/reader.cc", |
| 371 | "reader/reader.h", |
| 372 | "resolver/dependency_graph.cc", |
| 373 | "resolver/dependency_graph.h", |
| 374 | "resolver/resolver.cc", |
| 375 | "resolver/resolver.h", |
| 376 | "resolver/resolver_constants.cc", |
| 377 | "resolver/resolver_validation.cc", |
| 378 | "scope_stack.h", |
| 379 | "sem/array.h", |
| 380 | "sem/atomic_type.h", |
| 381 | "sem/behavior.h", |
| 382 | "sem/binding_point.h", |
| 383 | "sem/bool_type.h", |
| 384 | "sem/builtin.h", |
| 385 | "sem/builtin_type.h", |
| 386 | "sem/call.h", |
| 387 | "sem/call_target.h", |
| 388 | "sem/constant.h", |
| 389 | "sem/depth_multisampled_texture_type.h", |
| 390 | "sem/depth_texture_type.h", |
| 391 | "sem/expression.h", |
| 392 | "sem/external_texture_type.h", |
| 393 | "sem/f32_type.h", |
| 394 | "sem/for_loop_statement.h", |
| 395 | "sem/i32_type.h", |
| 396 | "sem/if_statement.h", |
| 397 | "sem/info.h", |
| 398 | "sem/loop_statement.h", |
| 399 | "sem/matrix_type.h", |
| 400 | "sem/module.h", |
| 401 | "sem/multisampled_texture_type.h", |
| 402 | "sem/node.h", |
| 403 | "sem/parameter_usage.h", |
| 404 | "sem/pipeline_stage_set.h", |
| 405 | "sem/pointer_type.h", |
| 406 | "sem/reference_type.h", |
| 407 | "sem/sampled_texture_type.h", |
| 408 | "sem/sampler_texture_pair.h", |
| 409 | "sem/sampler_type.h", |
| 410 | "sem/storage_texture_type.h", |
| 411 | "sem/switch_statement.h", |
| 412 | "sem/texture_type.h", |
| 413 | "sem/type.h", |
| 414 | "sem/type_constructor.h", |
| 415 | "sem/type_conversion.h", |
| 416 | "sem/type_manager.h", |
| 417 | "sem/type_mappings.h", |
| 418 | "sem/u32_type.h", |
| 419 | "sem/vector_type.h", |
| 420 | "sem/void_type.h", |
| 421 | "source.cc", |
| 422 | "source.h", |
| 423 | "symbol.cc", |
| 424 | "symbol.h", |
| 425 | "symbol_table.cc", |
| 426 | "symbol_table.h", |
| 427 | "text/unicode.cc", |
| 428 | "text/unicode.h", |
| 429 | "traits.h", |
| 430 | "transform/add_empty_entry_point.cc", |
| 431 | "transform/add_empty_entry_point.h", |
| 432 | "transform/add_spirv_block_attribute.cc", |
| 433 | "transform/add_spirv_block_attribute.h", |
| 434 | "transform/array_length_from_uniform.cc", |
| 435 | "transform/array_length_from_uniform.h", |
| 436 | "transform/binding_remapper.cc", |
| 437 | "transform/binding_remapper.h", |
Ben Clayton | 27aa57c | 2022-02-22 23:13:39 +0000 | [diff] [blame] | 438 | "transform/builtin_polyfill.cc", |
| 439 | "transform/builtin_polyfill.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 440 | "transform/calculate_array_length.cc", |
| 441 | "transform/calculate_array_length.h", |
| 442 | "transform/canonicalize_entry_point_io.cc", |
| 443 | "transform/canonicalize_entry_point_io.h", |
| 444 | "transform/combine_samplers.cc", |
| 445 | "transform/combine_samplers.h", |
| 446 | "transform/decompose_memory_access.cc", |
| 447 | "transform/decompose_memory_access.h", |
| 448 | "transform/decompose_strided_array.cc", |
| 449 | "transform/decompose_strided_array.h", |
| 450 | "transform/decompose_strided_matrix.cc", |
| 451 | "transform/decompose_strided_matrix.h", |
Corentin Wallez | b28d6c8 | 2022-04-07 11:36:06 +0000 | [diff] [blame^] | 452 | "transform/expand_compound_assignment.cc", |
| 453 | "transform/expand_compound_assignment.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 454 | "transform/first_index_offset.cc", |
| 455 | "transform/first_index_offset.h", |
| 456 | "transform/fold_constants.cc", |
| 457 | "transform/fold_constants.h", |
| 458 | "transform/fold_trivial_single_use_lets.cc", |
| 459 | "transform/fold_trivial_single_use_lets.h", |
| 460 | "transform/for_loop_to_loop.cc", |
| 461 | "transform/for_loop_to_loop.h", |
| 462 | "transform/localize_struct_array_assignment.cc", |
| 463 | "transform/localize_struct_array_assignment.h", |
| 464 | "transform/loop_to_for_loop.cc", |
| 465 | "transform/loop_to_for_loop.h", |
| 466 | "transform/manager.cc", |
| 467 | "transform/manager.h", |
| 468 | "transform/module_scope_var_to_entry_point_param.cc", |
| 469 | "transform/module_scope_var_to_entry_point_param.h", |
| 470 | "transform/multiplanar_external_texture.cc", |
| 471 | "transform/multiplanar_external_texture.h", |
| 472 | "transform/num_workgroups_from_uniform.cc", |
| 473 | "transform/num_workgroups_from_uniform.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 474 | "transform/promote_initializers_to_const_var.cc", |
| 475 | "transform/promote_initializers_to_const_var.h", |
Antonio Maiorano | c25ddf4 | 2022-03-15 15:03:03 +0000 | [diff] [blame] | 476 | "transform/promote_side_effects_to_decl.cc", |
| 477 | "transform/promote_side_effects_to_decl.h", |
Antonio Maiorano | b349710 | 2022-03-31 15:02:25 +0000 | [diff] [blame] | 478 | "transform/remove_continue_in_switch.cc", |
| 479 | "transform/remove_continue_in_switch.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 480 | "transform/remove_phonies.cc", |
| 481 | "transform/remove_phonies.h", |
| 482 | "transform/remove_unreachable_statements.cc", |
| 483 | "transform/remove_unreachable_statements.h", |
| 484 | "transform/renamer.cc", |
| 485 | "transform/renamer.h", |
| 486 | "transform/robustness.cc", |
| 487 | "transform/robustness.h", |
| 488 | "transform/simplify_pointers.cc", |
| 489 | "transform/simplify_pointers.h", |
| 490 | "transform/single_entry_point.cc", |
| 491 | "transform/single_entry_point.h", |
| 492 | "transform/transform.cc", |
| 493 | "transform/transform.h", |
| 494 | "transform/unshadow.cc", |
| 495 | "transform/unshadow.h", |
Antonio Maiorano | 66d6668 | 2022-03-28 20:51:32 +0000 | [diff] [blame] | 496 | "transform/unwind_discard_functions.cc", |
| 497 | "transform/unwind_discard_functions.h", |
Antonio Maiorano | c2e9bb7 | 2022-03-30 20:11:35 +0000 | [diff] [blame] | 498 | "transform/utils/get_insertion_point.cc", |
| 499 | "transform/utils/get_insertion_point.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 500 | "transform/utils/hoist_to_decl_before.cc", |
| 501 | "transform/utils/hoist_to_decl_before.h", |
| 502 | "transform/var_for_dynamic_index.cc", |
| 503 | "transform/var_for_dynamic_index.h", |
| 504 | "transform/vectorize_scalar_matrix_constructors.cc", |
| 505 | "transform/vectorize_scalar_matrix_constructors.h", |
| 506 | "transform/vertex_pulling.cc", |
| 507 | "transform/vertex_pulling.h", |
| 508 | "transform/wrap_arrays_in_structs.cc", |
| 509 | "transform/wrap_arrays_in_structs.h", |
| 510 | "transform/zero_init_workgroup_memory.cc", |
| 511 | "transform/zero_init_workgroup_memory.h", |
Ben Clayton | 4cb1329 | 2022-03-04 21:09:24 +0000 | [diff] [blame] | 512 | "utils/block_allocator.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 513 | "utils/crc32.h", |
| 514 | "utils/debugger.cc", |
| 515 | "utils/debugger.h", |
| 516 | "utils/enum_set.h", |
| 517 | "utils/hash.h", |
| 518 | "utils/map.h", |
| 519 | "utils/math.h", |
| 520 | "utils/scoped_assignment.h", |
| 521 | "utils/string.h", |
Ben Clayton | e228319 | 2022-03-05 00:29:15 +0000 | [diff] [blame] | 522 | "utils/unique_allocator.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 523 | "utils/unique_vector.h", |
| 524 | "writer/append_vector.cc", |
| 525 | "writer/append_vector.h", |
| 526 | "writer/array_length_from_uniform_options.cc", |
| 527 | "writer/array_length_from_uniform_options.h", |
| 528 | "writer/float_to_string.cc", |
| 529 | "writer/float_to_string.h", |
Antonio Maiorano | a730eb7 | 2022-04-06 13:57:54 +0000 | [diff] [blame] | 530 | "writer/generate_external_texture_bindings.cc", |
| 531 | "writer/generate_external_texture_bindings.h", |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 532 | "writer/text.cc", |
| 533 | "writer/text.h", |
| 534 | "writer/text_generator.cc", |
| 535 | "writer/text_generator.h", |
| 536 | "writer/writer.cc", |
| 537 | "writer/writer.h", |
| 538 | ] |
| 539 | |
| 540 | if (is_linux) { |
| 541 | sources += [ "diagnostic/printer_linux.cc" ] |
| 542 | } else if (is_win) { |
| 543 | sources += [ "diagnostic/printer_windows.cc" ] |
| 544 | } else { |
| 545 | sources += [ "diagnostic/printer_other.cc" ] |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | libtint_source_set("libtint_sem_src") { |
| 550 | sources = [ |
| 551 | "sem/array.cc", |
| 552 | "sem/array.h", |
| 553 | "sem/atomic_type.cc", |
| 554 | "sem/atomic_type.h", |
| 555 | "sem/behavior.cc", |
| 556 | "sem/behavior.h", |
| 557 | "sem/binding_point.h", |
| 558 | "sem/block_statement.cc", |
| 559 | "sem/bool_type.cc", |
| 560 | "sem/bool_type.h", |
| 561 | "sem/builtin.cc", |
| 562 | "sem/builtin.h", |
| 563 | "sem/builtin_type.cc", |
| 564 | "sem/builtin_type.h", |
| 565 | "sem/call.cc", |
| 566 | "sem/call.h", |
| 567 | "sem/call_target.cc", |
| 568 | "sem/call_target.h", |
| 569 | "sem/constant.cc", |
| 570 | "sem/constant.h", |
| 571 | "sem/depth_multisampled_texture_type.cc", |
| 572 | "sem/depth_multisampled_texture_type.h", |
| 573 | "sem/depth_texture_type.cc", |
| 574 | "sem/depth_texture_type.h", |
| 575 | "sem/expression.cc", |
| 576 | "sem/expression.h", |
| 577 | "sem/external_texture_type.cc", |
| 578 | "sem/external_texture_type.h", |
| 579 | "sem/f32_type.cc", |
| 580 | "sem/f32_type.h", |
| 581 | "sem/for_loop_statement.cc", |
| 582 | "sem/for_loop_statement.h", |
| 583 | "sem/function.cc", |
| 584 | "sem/i32_type.cc", |
| 585 | "sem/i32_type.h", |
| 586 | "sem/if_statement.cc", |
| 587 | "sem/if_statement.h", |
| 588 | "sem/info.cc", |
| 589 | "sem/info.h", |
| 590 | "sem/loop_statement.cc", |
| 591 | "sem/loop_statement.h", |
| 592 | "sem/matrix_type.cc", |
| 593 | "sem/matrix_type.h", |
| 594 | "sem/member_accessor_expression.cc", |
| 595 | "sem/module.cc", |
| 596 | "sem/module.h", |
| 597 | "sem/multisampled_texture_type.cc", |
| 598 | "sem/multisampled_texture_type.h", |
| 599 | "sem/node.cc", |
| 600 | "sem/node.h", |
| 601 | "sem/parameter_usage.cc", |
| 602 | "sem/parameter_usage.h", |
| 603 | "sem/pipeline_stage_set.h", |
| 604 | "sem/pointer_type.cc", |
| 605 | "sem/pointer_type.h", |
| 606 | "sem/reference_type.cc", |
| 607 | "sem/reference_type.h", |
| 608 | "sem/sampled_texture_type.cc", |
| 609 | "sem/sampled_texture_type.h", |
| 610 | "sem/sampler_type.cc", |
| 611 | "sem/sampler_type.h", |
| 612 | "sem/statement.cc", |
| 613 | "sem/storage_texture_type.cc", |
| 614 | "sem/storage_texture_type.h", |
| 615 | "sem/struct.cc", |
| 616 | "sem/switch_statement.cc", |
| 617 | "sem/switch_statement.h", |
| 618 | "sem/texture_type.cc", |
| 619 | "sem/texture_type.h", |
| 620 | "sem/type.cc", |
| 621 | "sem/type.h", |
| 622 | "sem/type_constructor.cc", |
| 623 | "sem/type_constructor.h", |
| 624 | "sem/type_conversion.cc", |
| 625 | "sem/type_conversion.h", |
| 626 | "sem/type_manager.cc", |
| 627 | "sem/type_manager.h", |
| 628 | "sem/type_mappings.h", |
| 629 | "sem/u32_type.cc", |
| 630 | "sem/u32_type.h", |
| 631 | "sem/variable.cc", |
| 632 | "sem/vector_type.cc", |
| 633 | "sem/vector_type.h", |
| 634 | "sem/void_type.cc", |
| 635 | "sem/void_type.h", |
| 636 | ] |
| 637 | |
| 638 | public_deps = [ ":libtint_core_all_src" ] |
| 639 | } |
| 640 | |
| 641 | libtint_source_set("libtint_core_src") { |
| 642 | public_deps = [ |
| 643 | ":libtint_core_all_src", |
| 644 | ":libtint_sem_src", |
| 645 | ] |
| 646 | } |
| 647 | |
| 648 | libtint_source_set("libtint_spv_reader_src") { |
| 649 | sources = [ |
| 650 | "reader/spirv/construct.cc", |
| 651 | "reader/spirv/construct.h", |
| 652 | "reader/spirv/entry_point_info.cc", |
| 653 | "reader/spirv/entry_point_info.h", |
| 654 | "reader/spirv/enum_converter.cc", |
| 655 | "reader/spirv/enum_converter.h", |
| 656 | "reader/spirv/fail_stream.h", |
| 657 | "reader/spirv/function.cc", |
| 658 | "reader/spirv/function.h", |
| 659 | "reader/spirv/namer.cc", |
| 660 | "reader/spirv/namer.h", |
| 661 | "reader/spirv/parser.cc", |
| 662 | "reader/spirv/parser.h", |
| 663 | "reader/spirv/parser_impl.cc", |
| 664 | "reader/spirv/parser_impl.h", |
| 665 | "reader/spirv/parser_type.cc", |
| 666 | "reader/spirv/parser_type.h", |
| 667 | "reader/spirv/usage.cc", |
| 668 | "reader/spirv/usage.h", |
| 669 | ] |
| 670 | |
| 671 | public_deps = [ |
| 672 | ":libtint_core_src", |
| 673 | "${tint_spirv_tools_dir}/:spvtools_opt", |
| 674 | ] |
| 675 | |
| 676 | public_configs = [ "${tint_spirv_tools_dir}/:spvtools_internal_config" ] |
| 677 | } |
| 678 | |
| 679 | libtint_source_set("libtint_spv_writer_src") { |
| 680 | sources = [ |
| 681 | "writer/spirv/binary_writer.cc", |
| 682 | "writer/spirv/binary_writer.h", |
| 683 | "writer/spirv/builder.cc", |
| 684 | "writer/spirv/builder.h", |
| 685 | "writer/spirv/function.cc", |
| 686 | "writer/spirv/function.h", |
| 687 | "writer/spirv/generator.cc", |
| 688 | "writer/spirv/generator.h", |
| 689 | "writer/spirv/instruction.cc", |
| 690 | "writer/spirv/instruction.h", |
| 691 | "writer/spirv/operand.cc", |
| 692 | "writer/spirv/operand.h", |
| 693 | "writer/spirv/scalar_constant.h", |
| 694 | ] |
| 695 | |
| 696 | public_deps = [ ":libtint_core_src" ] |
| 697 | } |
| 698 | |
| 699 | libtint_source_set("libtint_wgsl_reader_src") { |
| 700 | sources = [ |
| 701 | "reader/wgsl/lexer.cc", |
| 702 | "reader/wgsl/lexer.h", |
| 703 | "reader/wgsl/parser.cc", |
| 704 | "reader/wgsl/parser.h", |
| 705 | "reader/wgsl/parser_impl.cc", |
| 706 | "reader/wgsl/parser_impl.h", |
| 707 | "reader/wgsl/parser_impl_detail.h", |
| 708 | "reader/wgsl/token.cc", |
| 709 | "reader/wgsl/token.h", |
| 710 | ] |
| 711 | |
| 712 | public_deps = [ ":libtint_core_src" ] |
| 713 | } |
| 714 | |
| 715 | libtint_source_set("libtint_wgsl_writer_src") { |
| 716 | sources = [ |
| 717 | "writer/wgsl/generator.cc", |
| 718 | "writer/wgsl/generator.h", |
| 719 | "writer/wgsl/generator_impl.cc", |
| 720 | "writer/wgsl/generator_impl.h", |
| 721 | ] |
| 722 | |
| 723 | public_deps = [ ":libtint_core_src" ] |
| 724 | } |
| 725 | |
| 726 | libtint_source_set("libtint_msl_writer_src") { |
| 727 | sources = [ |
| 728 | "writer/msl/generator.cc", |
| 729 | "writer/msl/generator.h", |
| 730 | "writer/msl/generator_impl.cc", |
| 731 | "writer/msl/generator_impl.h", |
| 732 | ] |
| 733 | |
| 734 | public_deps = [ ":libtint_core_src" ] |
| 735 | } |
| 736 | |
| 737 | libtint_source_set("libtint_hlsl_writer_src") { |
| 738 | sources = [ |
| 739 | "writer/hlsl/generator.cc", |
| 740 | "writer/hlsl/generator.h", |
| 741 | "writer/hlsl/generator_impl.cc", |
| 742 | "writer/hlsl/generator_impl.h", |
| 743 | ] |
| 744 | |
| 745 | public_deps = [ ":libtint_core_src" ] |
| 746 | } |
| 747 | |
| 748 | libtint_source_set("libtint_glsl_writer_src") { |
| 749 | sources = [ |
| 750 | "transform/glsl.cc", |
| 751 | "transform/glsl.h", |
| 752 | "writer/glsl/generator.cc", |
| 753 | "writer/glsl/generator.h", |
| 754 | "writer/glsl/generator_impl.cc", |
| 755 | "writer/glsl/generator_impl.h", |
| 756 | ] |
| 757 | |
| 758 | public_deps = [ ":libtint_core_src" ] |
| 759 | } |
| 760 | |
| 761 | source_set("libtint") { |
| 762 | public_deps = [ ":libtint_core_src" ] |
| 763 | |
| 764 | if (tint_build_spv_reader) { |
| 765 | public_deps += [ ":libtint_spv_reader_src" ] |
| 766 | } |
| 767 | |
| 768 | if (tint_build_spv_writer) { |
| 769 | public_deps += [ ":libtint_spv_writer_src" ] |
| 770 | } |
| 771 | |
| 772 | if (tint_build_wgsl_reader) { |
| 773 | public_deps += [ ":libtint_wgsl_reader_src" ] |
| 774 | } |
| 775 | |
| 776 | if (tint_build_wgsl_writer) { |
| 777 | public_deps += [ ":libtint_wgsl_writer_src" ] |
| 778 | } |
| 779 | |
| 780 | if (tint_build_msl_writer) { |
| 781 | public_deps += [ ":libtint_msl_writer_src" ] |
| 782 | } |
| 783 | |
| 784 | if (tint_build_hlsl_writer) { |
| 785 | public_deps += [ ":libtint_hlsl_writer_src" ] |
| 786 | } |
| 787 | |
| 788 | if (tint_build_glsl_writer) { |
| 789 | public_deps += [ ":libtint_glsl_writer_src" ] |
| 790 | } |
| 791 | |
| 792 | configs += [ ":tint_common_config" ] |
| 793 | public_configs = [ ":tint_public_config" ] |
| 794 | |
| 795 | if (build_with_chromium) { |
| 796 | configs -= [ "//build/config/compiler:chromium_code" ] |
| 797 | configs += [ "//build/config/compiler:no_chromium_code" ] |
| 798 | } |
| 799 | } |