blob: 7a5ca932794be375498580d5a826f97ba8a80251 [file] [log] [blame]
Ryan Harrisondbc13af2022-02-21 15:19:07 +00001# 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
15import("//build_overrides/build.gni")
16import("../../tint_overrides_with_defaults.gni")
17
18###############################################################################
19# Common - Configs, etc. shared across targets
20###############################################################################
21
22config("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
32config("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
83config("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###############################################################################
94source_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###############################################################################
119source_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
141template("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
174libtint_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 Price49241862022-03-31 22:30:10 +0000213 "ast/compound_assignment_statement.cc",
214 "ast/compound_assignment_statement.h",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000215 "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 Harrisondbc13af2022-02-21 15:19:07 +0000303 "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 Harrisondbc13af2022-02-21 15:19:07 +0000339 "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 Clayton27aa57c2022-02-22 23:13:39 +0000438 "transform/builtin_polyfill.cc",
439 "transform/builtin_polyfill.h",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000440 "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",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000452 "transform/first_index_offset.cc",
453 "transform/first_index_offset.h",
454 "transform/fold_constants.cc",
455 "transform/fold_constants.h",
456 "transform/fold_trivial_single_use_lets.cc",
457 "transform/fold_trivial_single_use_lets.h",
458 "transform/for_loop_to_loop.cc",
459 "transform/for_loop_to_loop.h",
460 "transform/localize_struct_array_assignment.cc",
461 "transform/localize_struct_array_assignment.h",
462 "transform/loop_to_for_loop.cc",
463 "transform/loop_to_for_loop.h",
464 "transform/manager.cc",
465 "transform/manager.h",
466 "transform/module_scope_var_to_entry_point_param.cc",
467 "transform/module_scope_var_to_entry_point_param.h",
468 "transform/multiplanar_external_texture.cc",
469 "transform/multiplanar_external_texture.h",
470 "transform/num_workgroups_from_uniform.cc",
471 "transform/num_workgroups_from_uniform.h",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000472 "transform/promote_initializers_to_const_var.cc",
473 "transform/promote_initializers_to_const_var.h",
Antonio Maioranoc25ddf42022-03-15 15:03:03 +0000474 "transform/promote_side_effects_to_decl.cc",
475 "transform/promote_side_effects_to_decl.h",
Antonio Maioranob3497102022-03-31 15:02:25 +0000476 "transform/remove_continue_in_switch.cc",
477 "transform/remove_continue_in_switch.h",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000478 "transform/remove_phonies.cc",
479 "transform/remove_phonies.h",
480 "transform/remove_unreachable_statements.cc",
481 "transform/remove_unreachable_statements.h",
482 "transform/renamer.cc",
483 "transform/renamer.h",
484 "transform/robustness.cc",
485 "transform/robustness.h",
486 "transform/simplify_pointers.cc",
487 "transform/simplify_pointers.h",
488 "transform/single_entry_point.cc",
489 "transform/single_entry_point.h",
490 "transform/transform.cc",
491 "transform/transform.h",
492 "transform/unshadow.cc",
493 "transform/unshadow.h",
Antonio Maiorano66d66682022-03-28 20:51:32 +0000494 "transform/unwind_discard_functions.cc",
495 "transform/unwind_discard_functions.h",
Antonio Maioranoc2e9bb72022-03-30 20:11:35 +0000496 "transform/utils/get_insertion_point.cc",
497 "transform/utils/get_insertion_point.h",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000498 "transform/utils/hoist_to_decl_before.cc",
499 "transform/utils/hoist_to_decl_before.h",
500 "transform/var_for_dynamic_index.cc",
501 "transform/var_for_dynamic_index.h",
502 "transform/vectorize_scalar_matrix_constructors.cc",
503 "transform/vectorize_scalar_matrix_constructors.h",
504 "transform/vertex_pulling.cc",
505 "transform/vertex_pulling.h",
506 "transform/wrap_arrays_in_structs.cc",
507 "transform/wrap_arrays_in_structs.h",
508 "transform/zero_init_workgroup_memory.cc",
509 "transform/zero_init_workgroup_memory.h",
Ben Clayton4cb13292022-03-04 21:09:24 +0000510 "utils/block_allocator.h",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000511 "utils/crc32.h",
512 "utils/debugger.cc",
513 "utils/debugger.h",
514 "utils/enum_set.h",
515 "utils/hash.h",
516 "utils/map.h",
517 "utils/math.h",
518 "utils/scoped_assignment.h",
519 "utils/string.h",
Ben Claytone2283192022-03-05 00:29:15 +0000520 "utils/unique_allocator.h",
Ryan Harrisondbc13af2022-02-21 15:19:07 +0000521 "utils/unique_vector.h",
522 "writer/append_vector.cc",
523 "writer/append_vector.h",
524 "writer/array_length_from_uniform_options.cc",
525 "writer/array_length_from_uniform_options.h",
526 "writer/float_to_string.cc",
527 "writer/float_to_string.h",
528 "writer/text.cc",
529 "writer/text.h",
530 "writer/text_generator.cc",
531 "writer/text_generator.h",
532 "writer/writer.cc",
533 "writer/writer.h",
534 ]
535
536 if (is_linux) {
537 sources += [ "diagnostic/printer_linux.cc" ]
538 } else if (is_win) {
539 sources += [ "diagnostic/printer_windows.cc" ]
540 } else {
541 sources += [ "diagnostic/printer_other.cc" ]
542 }
543}
544
545libtint_source_set("libtint_sem_src") {
546 sources = [
547 "sem/array.cc",
548 "sem/array.h",
549 "sem/atomic_type.cc",
550 "sem/atomic_type.h",
551 "sem/behavior.cc",
552 "sem/behavior.h",
553 "sem/binding_point.h",
554 "sem/block_statement.cc",
555 "sem/bool_type.cc",
556 "sem/bool_type.h",
557 "sem/builtin.cc",
558 "sem/builtin.h",
559 "sem/builtin_type.cc",
560 "sem/builtin_type.h",
561 "sem/call.cc",
562 "sem/call.h",
563 "sem/call_target.cc",
564 "sem/call_target.h",
565 "sem/constant.cc",
566 "sem/constant.h",
567 "sem/depth_multisampled_texture_type.cc",
568 "sem/depth_multisampled_texture_type.h",
569 "sem/depth_texture_type.cc",
570 "sem/depth_texture_type.h",
571 "sem/expression.cc",
572 "sem/expression.h",
573 "sem/external_texture_type.cc",
574 "sem/external_texture_type.h",
575 "sem/f32_type.cc",
576 "sem/f32_type.h",
577 "sem/for_loop_statement.cc",
578 "sem/for_loop_statement.h",
579 "sem/function.cc",
580 "sem/i32_type.cc",
581 "sem/i32_type.h",
582 "sem/if_statement.cc",
583 "sem/if_statement.h",
584 "sem/info.cc",
585 "sem/info.h",
586 "sem/loop_statement.cc",
587 "sem/loop_statement.h",
588 "sem/matrix_type.cc",
589 "sem/matrix_type.h",
590 "sem/member_accessor_expression.cc",
591 "sem/module.cc",
592 "sem/module.h",
593 "sem/multisampled_texture_type.cc",
594 "sem/multisampled_texture_type.h",
595 "sem/node.cc",
596 "sem/node.h",
597 "sem/parameter_usage.cc",
598 "sem/parameter_usage.h",
599 "sem/pipeline_stage_set.h",
600 "sem/pointer_type.cc",
601 "sem/pointer_type.h",
602 "sem/reference_type.cc",
603 "sem/reference_type.h",
604 "sem/sampled_texture_type.cc",
605 "sem/sampled_texture_type.h",
606 "sem/sampler_type.cc",
607 "sem/sampler_type.h",
608 "sem/statement.cc",
609 "sem/storage_texture_type.cc",
610 "sem/storage_texture_type.h",
611 "sem/struct.cc",
612 "sem/switch_statement.cc",
613 "sem/switch_statement.h",
614 "sem/texture_type.cc",
615 "sem/texture_type.h",
616 "sem/type.cc",
617 "sem/type.h",
618 "sem/type_constructor.cc",
619 "sem/type_constructor.h",
620 "sem/type_conversion.cc",
621 "sem/type_conversion.h",
622 "sem/type_manager.cc",
623 "sem/type_manager.h",
624 "sem/type_mappings.h",
625 "sem/u32_type.cc",
626 "sem/u32_type.h",
627 "sem/variable.cc",
628 "sem/vector_type.cc",
629 "sem/vector_type.h",
630 "sem/void_type.cc",
631 "sem/void_type.h",
632 ]
633
634 public_deps = [ ":libtint_core_all_src" ]
635}
636
637libtint_source_set("libtint_core_src") {
638 public_deps = [
639 ":libtint_core_all_src",
640 ":libtint_sem_src",
641 ]
642}
643
644libtint_source_set("libtint_spv_reader_src") {
645 sources = [
646 "reader/spirv/construct.cc",
647 "reader/spirv/construct.h",
648 "reader/spirv/entry_point_info.cc",
649 "reader/spirv/entry_point_info.h",
650 "reader/spirv/enum_converter.cc",
651 "reader/spirv/enum_converter.h",
652 "reader/spirv/fail_stream.h",
653 "reader/spirv/function.cc",
654 "reader/spirv/function.h",
655 "reader/spirv/namer.cc",
656 "reader/spirv/namer.h",
657 "reader/spirv/parser.cc",
658 "reader/spirv/parser.h",
659 "reader/spirv/parser_impl.cc",
660 "reader/spirv/parser_impl.h",
661 "reader/spirv/parser_type.cc",
662 "reader/spirv/parser_type.h",
663 "reader/spirv/usage.cc",
664 "reader/spirv/usage.h",
665 ]
666
667 public_deps = [
668 ":libtint_core_src",
669 "${tint_spirv_tools_dir}/:spvtools_opt",
670 ]
671
672 public_configs = [ "${tint_spirv_tools_dir}/:spvtools_internal_config" ]
673}
674
675libtint_source_set("libtint_spv_writer_src") {
676 sources = [
677 "writer/spirv/binary_writer.cc",
678 "writer/spirv/binary_writer.h",
679 "writer/spirv/builder.cc",
680 "writer/spirv/builder.h",
681 "writer/spirv/function.cc",
682 "writer/spirv/function.h",
683 "writer/spirv/generator.cc",
684 "writer/spirv/generator.h",
685 "writer/spirv/instruction.cc",
686 "writer/spirv/instruction.h",
687 "writer/spirv/operand.cc",
688 "writer/spirv/operand.h",
689 "writer/spirv/scalar_constant.h",
690 ]
691
692 public_deps = [ ":libtint_core_src" ]
693}
694
695libtint_source_set("libtint_wgsl_reader_src") {
696 sources = [
697 "reader/wgsl/lexer.cc",
698 "reader/wgsl/lexer.h",
699 "reader/wgsl/parser.cc",
700 "reader/wgsl/parser.h",
701 "reader/wgsl/parser_impl.cc",
702 "reader/wgsl/parser_impl.h",
703 "reader/wgsl/parser_impl_detail.h",
704 "reader/wgsl/token.cc",
705 "reader/wgsl/token.h",
706 ]
707
708 public_deps = [ ":libtint_core_src" ]
709}
710
711libtint_source_set("libtint_wgsl_writer_src") {
712 sources = [
713 "writer/wgsl/generator.cc",
714 "writer/wgsl/generator.h",
715 "writer/wgsl/generator_impl.cc",
716 "writer/wgsl/generator_impl.h",
717 ]
718
719 public_deps = [ ":libtint_core_src" ]
720}
721
722libtint_source_set("libtint_msl_writer_src") {
723 sources = [
724 "writer/msl/generator.cc",
725 "writer/msl/generator.h",
726 "writer/msl/generator_impl.cc",
727 "writer/msl/generator_impl.h",
728 ]
729
730 public_deps = [ ":libtint_core_src" ]
731}
732
733libtint_source_set("libtint_hlsl_writer_src") {
734 sources = [
735 "writer/hlsl/generator.cc",
736 "writer/hlsl/generator.h",
737 "writer/hlsl/generator_impl.cc",
738 "writer/hlsl/generator_impl.h",
739 ]
740
741 public_deps = [ ":libtint_core_src" ]
742}
743
744libtint_source_set("libtint_glsl_writer_src") {
745 sources = [
746 "transform/glsl.cc",
747 "transform/glsl.h",
748 "writer/glsl/generator.cc",
749 "writer/glsl/generator.h",
750 "writer/glsl/generator_impl.cc",
751 "writer/glsl/generator_impl.h",
752 ]
753
754 public_deps = [ ":libtint_core_src" ]
755}
756
757source_set("libtint") {
758 public_deps = [ ":libtint_core_src" ]
759
760 if (tint_build_spv_reader) {
761 public_deps += [ ":libtint_spv_reader_src" ]
762 }
763
764 if (tint_build_spv_writer) {
765 public_deps += [ ":libtint_spv_writer_src" ]
766 }
767
768 if (tint_build_wgsl_reader) {
769 public_deps += [ ":libtint_wgsl_reader_src" ]
770 }
771
772 if (tint_build_wgsl_writer) {
773 public_deps += [ ":libtint_wgsl_writer_src" ]
774 }
775
776 if (tint_build_msl_writer) {
777 public_deps += [ ":libtint_msl_writer_src" ]
778 }
779
780 if (tint_build_hlsl_writer) {
781 public_deps += [ ":libtint_hlsl_writer_src" ]
782 }
783
784 if (tint_build_glsl_writer) {
785 public_deps += [ ":libtint_glsl_writer_src" ]
786 }
787
788 configs += [ ":tint_common_config" ]
789 public_configs = [ ":tint_public_config" ]
790
791 if (build_with_chromium) {
792 configs -= [ "//build/config/compiler:chromium_code" ]
793 configs += [ "//build/config/compiler:no_chromium_code" ]
794 }
795}