summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/BUILD.gn
blob: f67c31314284b0ceac66fd0507d09987406bc0da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//third_party/blink/renderer/core/core.gni")

blink_core_sources("css") {
  split_count = 10
  sources = [
    "abstract_property_set_css_style_declaration.cc",
    "abstract_property_set_css_style_declaration.h",
    "active_style_sheets.cc",
    "active_style_sheets.h",
    "basic_shape_functions.cc",
    "basic_shape_functions.h",
    "binary_data_font_face_source.cc",
    "binary_data_font_face_source.h",
    "computed_style_css_value_mapping.cc",
    "computed_style_css_value_mapping.h",
    "css_basic_shape_values.cc",
    "css_basic_shape_values.h",
    "css_border_image.cc",
    "css_border_image.h",
    "css_border_image_slice_value.cc",
    "css_border_image_slice_value.h",
    "css_calculation_value.cc",
    "css_calculation_value.h",
    "css_color_value.cc",
    "css_color_value.h",
    "css_computed_style_declaration.cc",
    "css_computed_style_declaration.h",
    "css_condition_rule.cc",
    "css_condition_rule.h",
    "css_content_distribution_value.cc",
    "css_content_distribution_value.h",
    "css_counter_value.cc",
    "css_counter_value.h",
    "css_crossfade_value.cc",
    "css_crossfade_value.h",
    "css_cursor_image_value.cc",
    "css_cursor_image_value.h",
    "css_custom_font_data.h",
    "css_custom_ident_value.cc",
    "css_custom_ident_value.h",
    "css_custom_property_declaration.cc",
    "css_custom_property_declaration.h",
    "css_default_style_sheets.cc",
    "css_default_style_sheets.h",
    "css_font_face.cc",
    "css_font_face.h",
    "css_font_face_rule.cc",
    "css_font_face_rule.h",
    "css_font_face_source.cc",
    "css_font_face_source.h",
    "css_font_face_src_value.cc",
    "css_font_face_src_value.h",
    "css_font_family_value.cc",
    "css_font_family_value.h",
    "css_font_feature_value.cc",
    "css_font_feature_value.h",
    "css_font_selector.cc",
    "css_font_selector.h",
    "css_font_style_range_value.cc",
    "css_font_style_range_value.h",
    "css_font_variation_value.cc",
    "css_font_variation_value.h",
    "css_function_value.cc",
    "css_function_value.h",
    "css_global_rule_set.cc",
    "css_global_rule_set.h",
    "css_gradient_value.cc",
    "css_gradient_value.h",
    "css_grid_auto_repeat_value.cc",
    "css_grid_auto_repeat_value.h",
    "css_grid_line_names_value.cc",
    "css_grid_line_names_value.h",
    "css_grid_template_areas_value.cc",
    "css_grid_template_areas_value.h",
    "css_grouping_rule.cc",
    "css_grouping_rule.h",
    "css_identifier_value.cc",
    "css_identifier_value.h",
    "css_image_generator_value.cc",
    "css_image_generator_value.h",
    "css_image_set_value.cc",
    "css_image_set_value.h",
    "css_image_value.cc",
    "css_image_value.h",
    "css_import_rule.cc",
    "css_import_rule.h",
    "css_inherited_value.cc",
    "css_inherited_value.h",
    "css_initial_value.cc",
    "css_initial_value.h",
    "css_keyframe_rule.cc",
    "css_keyframe_rule.h",
    "css_keyframes_rule.cc",
    "css_keyframes_rule.h",
    "css_layout_function_value.cc",
    "css_layout_function_value.h",
    "css_markup.cc",
    "css_markup.h",
    "css_media_rule.cc",
    "css_media_rule.h",
    "css_namespace_rule.cc",
    "css_namespace_rule.h",
    "css_page_rule.cc",
    "css_page_rule.h",
    "css_paint_image_generator.cc",
    "css_paint_image_generator.h",
    "css_paint_value.cc",
    "css_paint_value.h",
    "css_path_value.cc",
    "css_path_value.h",
    "css_pending_substitution_value.cc",
    "css_pending_substitution_value.h",
    "css_primitive_value.cc",
    "css_primitive_value.h",
    "css_primitive_value_mappings.h",
    "css_property_equality.cc",
    "css_property_equality.h",
    "css_property_id_templates.h",
    "css_property_source_data.cc",
    "css_property_source_data.h",
    "css_property_value.cc",
    "css_property_value.h",
    "css_property_value_set.cc",
    "css_property_value_set.h",
    "css_quad_value.cc",
    "css_quad_value.h",
    "css_ray_value.cc",
    "css_ray_value.h",
    "css_reflect_value.cc",
    "css_reflect_value.h",
    "css_reflection_direction.h",
    "css_resolution_units.h",
    "css_rule.cc",
    "css_rule.h",
    "css_rule_list.cc",
    "css_rule_list.h",
    "css_segmented_font_face.cc",
    "css_segmented_font_face.h",
    "css_selector.cc",
    "css_selector.h",
    "css_selector_list.cc",
    "css_selector_list.h",
    "css_selector_watch.cc",
    "css_selector_watch.h",
    "css_shadow_value.cc",
    "css_shadow_value.h",
    "css_string_value.cc",
    "css_string_value.h",
    "css_style_declaration.cc",
    "css_style_declaration.h",
    "css_style_rule.cc",
    "css_style_rule.h",
    "css_style_sheet.cc",
    "css_style_sheet.h",
    "css_supports_rule.cc",
    "css_supports_rule.h",
    "css_syntax_descriptor.cc",
    "css_syntax_descriptor.h",
    "css_timing_function_value.cc",
    "css_timing_function_value.h",
    "css_to_length_conversion_data.cc",
    "css_to_length_conversion_data.h",
    "css_unicode_range_value.cc",
    "css_unicode_range_value.h",
    "css_unset_value.cc",
    "css_unset_value.h",
    "css_uri_value.cc",
    "css_uri_value.h",
    "css_value.cc",
    "css_value.h",
    "css_value_id_mappings.h",
    "css_value_list.cc",
    "css_value_list.h",
    "css_value_pair.cc",
    "css_value_pair.h",
    "css_value_pool.cc",
    "css_value_pool.h",
    "css_variable_data.cc",
    "css_variable_data.h",
    "css_variable_reference_value.cc",
    "css_variable_reference_value.h",
    "css_viewport_rule.cc",
    "css_viewport_rule.h",
    "cssom/computed_style_property_map.cc",
    "cssom/computed_style_property_map.h",
    "cssom/css_keyword_value.cc",
    "cssom/css_keyword_value.h",
    "cssom/css_math_invert.cc",
    "cssom/css_math_invert.h",
    "cssom/css_math_max.cc",
    "cssom/css_math_max.h",
    "cssom/css_math_min.cc",
    "cssom/css_math_min.h",
    "cssom/css_math_negate.cc",
    "cssom/css_math_negate.h",
    "cssom/css_math_product.cc",
    "cssom/css_math_product.h",
    "cssom/css_math_sum.cc",
    "cssom/css_math_sum.h",
    "cssom/css_math_value.cc",
    "cssom/css_math_value.h",
    "cssom/css_matrix_component.cc",
    "cssom/css_matrix_component.h",
    "cssom/css_numeric_value.cc",
    "cssom/css_numeric_value.h",
    "cssom/css_numeric_value_type.cc",
    "cssom/css_numeric_value_type.h",
    "cssom/css_perspective.cc",
    "cssom/css_perspective.h",
    "cssom/css_position_value.cc",
    "cssom/css_position_value.h",
    "cssom/css_resource_value.h",
    "cssom/css_rotate.cc",
    "cssom/css_rotate.h",
    "cssom/css_scale.cc",
    "cssom/css_scale.h",
    "cssom/css_skew.cc",
    "cssom/css_skew.h",
    "cssom/css_skew_x.cc",
    "cssom/css_skew_x.h",
    "cssom/css_skew_y.cc",
    "cssom/css_skew_y.h",
    "cssom/css_style_image_value.cc",
    "cssom/css_style_image_value.h",
    "cssom/css_style_value.cc",
    "cssom/css_style_value.h",
    "cssom/css_style_variable_reference_value.cc",
    "cssom/css_style_variable_reference_value.h",
    "cssom/css_transform_component.cc",
    "cssom/css_transform_component.h",
    "cssom/css_transform_value.cc",
    "cssom/css_transform_value.h",
    "cssom/css_translate.cc",
    "cssom/css_translate.h",
    "cssom/css_unit_value.cc",
    "cssom/css_unit_value.h",
    "cssom/css_unit_values.h",
    "cssom/css_unparsed_value.cc",
    "cssom/css_unparsed_value.h",
    "cssom/css_unsupported_style_value.cc",
    "cssom/css_unsupported_style_value.h",
    "cssom/css_url_image_value.cc",
    "cssom/css_url_image_value.h",
    "cssom/cssom_keywords.h",
    "cssom/cssom_types.h",
    "cssom/declared_style_property_map.cc",
    "cssom/declared_style_property_map.h",
    "cssom/element_computed_style_map.h",
    "cssom/inline_style_property_map.cc",
    "cssom/inline_style_property_map.h",
    "cssom/prepopulated_computed_style_property_map.cc",
    "cssom/prepopulated_computed_style_property_map.h",
    "cssom/style_property_map.cc",
    "cssom/style_property_map.h",
    "cssom/style_property_map_read_only.cc",
    "cssom/style_property_map_read_only.h",
    "cssom/style_value_factory.cc",
    "cssom/style_value_factory.h",
    "document_style_environment_variables.cc",
    "document_style_environment_variables.h",
    "document_style_sheet_collection.cc",
    "document_style_sheet_collection.h",
    "document_style_sheet_collector.cc",
    "document_style_sheet_collector.h",
    "dom_window_css.cc",
    "dom_window_css.h",
    "element_rule_collector.cc",
    "element_rule_collector.h",
    "font_face.cc",
    "font_face.h",
    "font_face_cache.cc",
    "font_face_cache.h",
    "font_face_set.cc",
    "font_face_set.h",
    "font_face_set_document.cc",
    "font_face_set_document.h",
    "font_face_set_load_event.cc",
    "font_face_set_load_event.h",
    "font_face_set_worker.cc",
    "font_face_set_worker.h",
    "font_face_source.cc",
    "font_face_source.h",
    "font_size_functions.cc",
    "font_size_functions.h",
    "hash_tools.h",
    "inline_css_style_declaration.cc",
    "inline_css_style_declaration.h",
    "invalidation/invalidation_flags.cc",
    "invalidation/invalidation_flags.h",
    "invalidation/invalidation_set.cc",
    "invalidation/invalidation_set.h",
    "invalidation/node_invalidation_sets.h",
    "invalidation/pending_invalidations.cc",
    "invalidation/pending_invalidations.h",
    "invalidation/style_invalidator.cc",
    "invalidation/style_invalidator.h",
    "keyframe_style_rule_css_style_declaration.cc",
    "keyframe_style_rule_css_style_declaration.h",
    "layout_tree_rebuild_root.cc",
    "layout_tree_rebuild_root.h",
    "local_font_face_source.cc",
    "local_font_face_source.h",
    "media_list.cc",
    "media_list.h",
    "media_query.cc",
    "media_query.h",
    "media_query_evaluator.cc",
    "media_query_evaluator.h",
    "media_query_exp.cc",
    "media_query_exp.h",
    "media_query_list.cc",
    "media_query_list.h",
    "media_query_list_event.h",
    "media_query_list_listener.cc",
    "media_query_list_listener.h",
    "media_query_matcher.cc",
    "media_query_matcher.h",
    "media_values.cc",
    "media_values.h",
    "media_values_cached.cc",
    "media_values_cached.h",
    "media_values_dynamic.cc",
    "media_values_dynamic.h",
    "media_values_initial_viewport.cc",
    "media_values_initial_viewport.h",
    "offscreen_font_selector.cc",
    "offscreen_font_selector.h",
    "page_rule_collector.cc",
    "page_rule_collector.h",
    "parser/at_rule_descriptor_parser.cc",
    "parser/at_rule_descriptor_parser.h",
    "parser/css_at_rule_id.cc",
    "parser/css_at_rule_id.h",
    "parser/css_lazy_parsing_state.cc",
    "parser/css_lazy_parsing_state.h",
    "parser/css_lazy_property_parser_impl.cc",
    "parser/css_lazy_property_parser_impl.h",
    "parser/css_parser.cc",
    "parser/css_parser.h",
    "parser/css_parser_context.cc",
    "parser/css_parser_context.h",
    "parser/css_parser_fast_paths.cc",
    "parser/css_parser_fast_paths.h",
    "parser/css_parser_idioms.h",
    "parser/css_parser_impl.cc",
    "parser/css_parser_impl.h",
    "parser/css_parser_local_context.cc",
    "parser/css_parser_local_context.h",
    "parser/css_parser_mode.h",
    "parser/css_parser_observer.h",
    "parser/css_parser_selector.cc",
    "parser/css_parser_selector.h",
    "parser/css_parser_token.cc",
    "parser/css_parser_token.h",
    "parser/css_parser_token_range.cc",
    "parser/css_parser_token_range.h",
    "parser/css_parser_token_stream.cc",
    "parser/css_parser_token_stream.h",
    "parser/css_property_parser.cc",
    "parser/css_property_parser.h",
    "parser/css_property_parser_helpers.cc",
    "parser/css_property_parser_helpers.h",
    "parser/css_selector_parser.cc",
    "parser/css_selector_parser.h",
    "parser/css_supports_parser.cc",
    "parser/css_supports_parser.h",
    "parser/css_tokenizer.cc",
    "parser/css_tokenizer.h",
    "parser/css_tokenizer_input_stream.cc",
    "parser/css_tokenizer_input_stream.h",
    "parser/css_variable_parser.cc",
    "parser/css_variable_parser.h",
    "parser/font_variant_east_asian_parser.h",
    "parser/font_variant_ligatures_parser.h",
    "parser/font_variant_numeric_parser.h",
    "parser/media_query_block_watcher.cc",
    "parser/media_query_block_watcher.h",
    "parser/media_query_parser.cc",
    "parser/media_query_parser.h",
    "parser/sizes_attribute_parser.cc",
    "parser/sizes_attribute_parser.h",
    "parser/sizes_calc_parser.cc",
    "parser/sizes_calc_parser.h",
    "part_names.cc",
    "part_names.h",
    "properties/computed_style_utils.cc",
    "properties/computed_style_utils.h",
    "properties/css_parsing_utils.cc",
    "properties/css_parsing_utils.h",
    "properties/css_property_base_custom.cc",
    "properties/longhand.h",
    "properties/longhands/align_content_custom.cc",
    "properties/longhands/align_items_custom.cc",
    "properties/longhands/align_self_custom.cc",
    "properties/longhands/alignment_baseline_custom.cc",
    "properties/longhands/animation_delay_custom.cc",
    "properties/longhands/animation_direction_custom.cc",
    "properties/longhands/animation_duration_custom.cc",
    "properties/longhands/animation_fill_mode_custom.cc",
    "properties/longhands/animation_iteration_count_custom.cc",
    "properties/longhands/animation_name_custom.cc",
    "properties/longhands/animation_play_state_custom.cc",
    "properties/longhands/animation_timing_function_custom.cc",
    "properties/longhands/backdrop_filter_custom.cc",
    "properties/longhands/backface_visibility_custom.cc",
    "properties/longhands/background_attachment_custom.cc",
    "properties/longhands/background_blend_mode_custom.cc",
    "properties/longhands/background_clip_custom.cc",
    "properties/longhands/background_color_custom.cc",
    "properties/longhands/background_image_custom.cc",
    "properties/longhands/background_origin_custom.cc",
    "properties/longhands/background_position_x_custom.cc",
    "properties/longhands/background_position_y_custom.cc",
    "properties/longhands/background_size_custom.cc",
    "properties/longhands/baseline_shift_custom.cc",
    "properties/longhands/block_size_custom.cc",
    "properties/longhands/border_block_end_color_custom.cc",
    "properties/longhands/border_block_end_width_custom.cc",
    "properties/longhands/border_block_start_color_custom.cc",
    "properties/longhands/border_block_start_width_custom.cc",
    "properties/longhands/border_bottom_color_custom.cc",
    "properties/longhands/border_bottom_left_radius_custom.cc",
    "properties/longhands/border_bottom_right_radius_custom.cc",
    "properties/longhands/border_bottom_style_custom.cc",
    "properties/longhands/border_bottom_width_custom.cc",
    "properties/longhands/border_collapse_custom.cc",
    "properties/longhands/border_image_outset_custom.cc",
    "properties/longhands/border_image_repeat_custom.cc",
    "properties/longhands/border_image_slice_custom.cc",
    "properties/longhands/border_image_source_custom.cc",
    "properties/longhands/border_image_width_custom.cc",
    "properties/longhands/border_inline_end_color_custom.cc",
    "properties/longhands/border_inline_end_width_custom.cc",
    "properties/longhands/border_inline_start_color_custom.cc",
    "properties/longhands/border_inline_start_width_custom.cc",
    "properties/longhands/border_left_color_custom.cc",
    "properties/longhands/border_left_style_custom.cc",
    "properties/longhands/border_left_width_custom.cc",
    "properties/longhands/border_right_color_custom.cc",
    "properties/longhands/border_right_style_custom.cc",
    "properties/longhands/border_right_width_custom.cc",
    "properties/longhands/border_top_color_custom.cc",
    "properties/longhands/border_top_left_radius_custom.cc",
    "properties/longhands/border_top_right_radius_custom.cc",
    "properties/longhands/border_top_style_custom.cc",
    "properties/longhands/border_top_width_custom.cc",
    "properties/longhands/bottom_custom.cc",
    "properties/longhands/box_shadow_custom.cc",
    "properties/longhands/box_sizing_custom.cc",
    "properties/longhands/break_after_custom.cc",
    "properties/longhands/break_before_custom.cc",
    "properties/longhands/break_inside_custom.cc",
    "properties/longhands/buffered_rendering_custom.cc",
    "properties/longhands/caption_side_custom.cc",
    "properties/longhands/caret_color_custom.cc",
    "properties/longhands/clear_custom.cc",
    "properties/longhands/clip_custom.cc",
    "properties/longhands/clip_path_custom.cc",
    "properties/longhands/clip_rule_custom.cc",
    "properties/longhands/color_custom.cc",
    "properties/longhands/color_interpolation_custom.cc",
    "properties/longhands/color_interpolation_filters_custom.cc",
    "properties/longhands/color_rendering_custom.cc",
    "properties/longhands/column_count_custom.cc",
    "properties/longhands/column_fill_custom.cc",
    "properties/longhands/column_gap_custom.cc",
    "properties/longhands/column_rule_color_custom.cc",
    "properties/longhands/column_rule_style_custom.cc",
    "properties/longhands/column_rule_width_custom.cc",
    "properties/longhands/column_span_custom.cc",
    "properties/longhands/column_width_custom.cc",
    "properties/longhands/contain_custom.cc",
    "properties/longhands/content_custom.cc",
    "properties/longhands/counter_increment_custom.cc",
    "properties/longhands/counter_reset_custom.cc",
    "properties/longhands/cursor_custom.cc",
    "properties/longhands/cx_custom.cc",
    "properties/longhands/cy_custom.cc",
    "properties/longhands/d_custom.cc",
    "properties/longhands/direction_custom.cc",
    "properties/longhands/display_custom.cc",
    "properties/longhands/dominant_baseline_custom.cc",
    "properties/longhands/empty_cells_custom.cc",
    "properties/longhands/fill_custom.cc",
    "properties/longhands/fill_opacity_custom.cc",
    "properties/longhands/fill_rule_custom.cc",
    "properties/longhands/filter_custom.cc",
    "properties/longhands/flex_basis_custom.cc",
    "properties/longhands/flex_direction_custom.cc",
    "properties/longhands/flex_grow_custom.cc",
    "properties/longhands/flex_shrink_custom.cc",
    "properties/longhands/flex_wrap_custom.cc",
    "properties/longhands/float_custom.cc",
    "properties/longhands/flood_color_custom.cc",
    "properties/longhands/flood_opacity_custom.cc",
    "properties/longhands/font_family_custom.cc",
    "properties/longhands/font_feature_settings_custom.cc",
    "properties/longhands/font_kerning_custom.cc",
    "properties/longhands/font_size_adjust_custom.cc",
    "properties/longhands/font_size_custom.cc",
    "properties/longhands/font_stretch_custom.cc",
    "properties/longhands/font_style_custom.cc",
    "properties/longhands/font_variant_caps_custom.cc",
    "properties/longhands/font_variant_east_asian_custom.cc",
    "properties/longhands/font_variant_ligatures_custom.cc",
    "properties/longhands/font_variant_numeric_custom.cc",
    "properties/longhands/font_variation_settings_custom.cc",
    "properties/longhands/font_weight_custom.cc",
    "properties/longhands/grid_auto_columns_custom.cc",
    "properties/longhands/grid_auto_flow_custom.cc",
    "properties/longhands/grid_auto_rows_custom.cc",
    "properties/longhands/grid_column_end_custom.cc",
    "properties/longhands/grid_column_start_custom.cc",
    "properties/longhands/grid_row_end_custom.cc",
    "properties/longhands/grid_row_start_custom.cc",
    "properties/longhands/grid_template_areas_custom.cc",
    "properties/longhands/grid_template_columns_custom.cc",
    "properties/longhands/grid_template_rows_custom.cc",
    "properties/longhands/height_custom.cc",
    "properties/longhands/hyphens_custom.cc",
    "properties/longhands/image_orientation_custom.cc",
    "properties/longhands/image_rendering_custom.cc",
    "properties/longhands/inline_size_custom.cc",
    "properties/longhands/inset_block_end_custom.cc",
    "properties/longhands/inset_block_start_custom.cc",
    "properties/longhands/inset_inline_end_custom.cc",
    "properties/longhands/inset_inline_start_custom.cc",
    "properties/longhands/isolation_custom.cc",
    "properties/longhands/justify_content_custom.cc",
    "properties/longhands/justify_items_custom.cc",
    "properties/longhands/justify_self_custom.cc",
    "properties/longhands/left_custom.cc",
    "properties/longhands/letter_spacing_custom.cc",
    "properties/longhands/lighting_color_custom.cc",
    "properties/longhands/line_break_custom.cc",
    "properties/longhands/line_height_custom.cc",
    "properties/longhands/line_height_step_custom.cc",
    "properties/longhands/list_style_image_custom.cc",
    "properties/longhands/list_style_position_custom.cc",
    "properties/longhands/list_style_type_custom.cc",
    "properties/longhands/margin_block_end_custom.cc",
    "properties/longhands/margin_block_start_custom.cc",
    "properties/longhands/margin_bottom_custom.cc",
    "properties/longhands/margin_inline_end_custom.cc",
    "properties/longhands/margin_inline_start_custom.cc",
    "properties/longhands/margin_left_custom.cc",
    "properties/longhands/margin_right_custom.cc",
    "properties/longhands/margin_top_custom.cc",
    "properties/longhands/marker_end_custom.cc",
    "properties/longhands/marker_mid_custom.cc",
    "properties/longhands/marker_start_custom.cc",
    "properties/longhands/mask_custom.cc",
    "properties/longhands/mask_source_type_custom.cc",
    "properties/longhands/mask_type_custom.cc",
    "properties/longhands/max_block_size_custom.cc",
    "properties/longhands/max_height_custom.cc",
    "properties/longhands/max_inline_size_custom.cc",
    "properties/longhands/max_width_custom.cc",
    "properties/longhands/min_block_size_custom.cc",
    "properties/longhands/min_height_custom.cc",
    "properties/longhands/min_inline_size_custom.cc",
    "properties/longhands/min_width_custom.cc",
    "properties/longhands/mix_blend_mode_custom.cc",
    "properties/longhands/object_fit_custom.cc",
    "properties/longhands/object_position_custom.cc",
    "properties/longhands/offset_anchor_custom.cc",
    "properties/longhands/offset_distance_custom.cc",
    "properties/longhands/offset_path_custom.cc",
    "properties/longhands/offset_position_custom.cc",
    "properties/longhands/offset_rotate_custom.cc",
    "properties/longhands/opacity_custom.cc",
    "properties/longhands/order_custom.cc",
    "properties/longhands/orphans_custom.cc",
    "properties/longhands/outline_color_custom.cc",
    "properties/longhands/outline_offset_custom.cc",
    "properties/longhands/outline_style_custom.cc",
    "properties/longhands/outline_width_custom.cc",
    "properties/longhands/overflow_anchor_custom.cc",
    "properties/longhands/overflow_wrap_custom.cc",
    "properties/longhands/overflow_x_custom.cc",
    "properties/longhands/overflow_y_custom.cc",
    "properties/longhands/overscroll_behavior_x_custom.cc",
    "properties/longhands/overscroll_behavior_y_custom.cc",
    "properties/longhands/padding_block_end_custom.cc",
    "properties/longhands/padding_block_start_custom.cc",
    "properties/longhands/padding_bottom_custom.cc",
    "properties/longhands/padding_inline_end_custom.cc",
    "properties/longhands/padding_inline_start_custom.cc",
    "properties/longhands/padding_left_custom.cc",
    "properties/longhands/padding_right_custom.cc",
    "properties/longhands/padding_top_custom.cc",
    "properties/longhands/page_custom.cc",
    "properties/longhands/paint_order_custom.cc",
    "properties/longhands/perspective_custom.cc",
    "properties/longhands/perspective_origin_custom.cc",
    "properties/longhands/pointer_events_custom.cc",
    "properties/longhands/position_custom.cc",
    "properties/longhands/quotes_custom.cc",
    "properties/longhands/r_custom.cc",
    "properties/longhands/resize_custom.cc",
    "properties/longhands/right_custom.cc",
    "properties/longhands/rotate_custom.cc",
    "properties/longhands/row_gap_custom.cc",
    "properties/longhands/rx_custom.cc",
    "properties/longhands/ry_custom.cc",
    "properties/longhands/scale_custom.cc",
    "properties/longhands/scroll_behavior_custom.cc",
    "properties/longhands/scroll_customization_custom.cc",
    "properties/longhands/scroll_margin_block_end_custom.cc",
    "properties/longhands/scroll_margin_block_start_custom.cc",
    "properties/longhands/scroll_margin_bottom_custom.cc",
    "properties/longhands/scroll_margin_inline_end_custom.cc",
    "properties/longhands/scroll_margin_inline_start_custom.cc",
    "properties/longhands/scroll_margin_left_custom.cc",
    "properties/longhands/scroll_margin_right_custom.cc",
    "properties/longhands/scroll_margin_top_custom.cc",
    "properties/longhands/scroll_padding_block_end_custom.cc",
    "properties/longhands/scroll_padding_block_start_custom.cc",
    "properties/longhands/scroll_padding_bottom_custom.cc",
    "properties/longhands/scroll_padding_inline_end_custom.cc",
    "properties/longhands/scroll_padding_inline_start_custom.cc",
    "properties/longhands/scroll_padding_left_custom.cc",
    "properties/longhands/scroll_padding_right_custom.cc",
    "properties/longhands/scroll_padding_top_custom.cc",
    "properties/longhands/scroll_snap_align_custom.cc",
    "properties/longhands/scroll_snap_stop_custom.cc",
    "properties/longhands/scroll_snap_type_custom.cc",
    "properties/longhands/shape_image_threshold_custom.cc",
    "properties/longhands/shape_margin_custom.cc",
    "properties/longhands/shape_outside_custom.cc",
    "properties/longhands/shape_rendering_custom.cc",
    "properties/longhands/size_custom.cc",
    "properties/longhands/speak_custom.cc",
    "properties/longhands/stop_color_custom.cc",
    "properties/longhands/stop_opacity_custom.cc",
    "properties/longhands/stroke_custom.cc",
    "properties/longhands/stroke_dasharray_custom.cc",
    "properties/longhands/stroke_dashoffset_custom.cc",
    "properties/longhands/stroke_linecap_custom.cc",
    "properties/longhands/stroke_linejoin_custom.cc",
    "properties/longhands/stroke_miterlimit_custom.cc",
    "properties/longhands/stroke_opacity_custom.cc",
    "properties/longhands/stroke_width_custom.cc",
    "properties/longhands/tab_size_custom.cc",
    "properties/longhands/table_layout_custom.cc",
    "properties/longhands/text_align_custom.cc",
    "properties/longhands/text_align_last_custom.cc",
    "properties/longhands/text_anchor_custom.cc",
    "properties/longhands/text_combine_upright_custom.cc",
    "properties/longhands/text_decoration_color_custom.cc",
    "properties/longhands/text_decoration_line_custom.cc",
    "properties/longhands/text_decoration_skip_ink_custom.cc",
    "properties/longhands/text_decoration_style_custom.cc",
    "properties/longhands/text_indent_custom.cc",
    "properties/longhands/text_justify_custom.cc",
    "properties/longhands/text_orientation_custom.cc",
    "properties/longhands/text_overflow_custom.cc",
    "properties/longhands/text_rendering_custom.cc",
    "properties/longhands/text_shadow_custom.cc",
    "properties/longhands/text_size_adjust_custom.cc",
    "properties/longhands/text_transform_custom.cc",
    "properties/longhands/text_underline_position_custom.cc",
    "properties/longhands/top_custom.cc",
    "properties/longhands/touch_action_custom.cc",
    "properties/longhands/transform_box_custom.cc",
    "properties/longhands/transform_custom.cc",
    "properties/longhands/transform_origin_custom.cc",
    "properties/longhands/transform_style_custom.cc",
    "properties/longhands/transition_delay_custom.cc",
    "properties/longhands/transition_duration_custom.cc",
    "properties/longhands/transition_property_custom.cc",
    "properties/longhands/transition_timing_function_custom.cc",
    "properties/longhands/translate_custom.cc",
    "properties/longhands/unicode_bidi_custom.cc",
    "properties/longhands/user_select_custom.cc",
    "properties/longhands/variable.cc",
    "properties/longhands/variable.h",
    "properties/longhands/vector_effect_custom.cc",
    "properties/longhands/vertical_align_custom.cc",
    "properties/longhands/visibility_custom.cc",
    "properties/longhands/webkit_app_region_custom.cc",
    "properties/longhands/webkit_appearance_custom.cc",
    "properties/longhands/webkit_border_horizontal_spacing_custom.cc",
    "properties/longhands/webkit_border_image_custom.cc",
    "properties/longhands/webkit_border_vertical_spacing_custom.cc",
    "properties/longhands/webkit_box_align_custom.cc",
    "properties/longhands/webkit_box_decoration_break_custom.cc",
    "properties/longhands/webkit_box_direction_custom.cc",
    "properties/longhands/webkit_box_flex_custom.cc",
    "properties/longhands/webkit_box_ordinal_group_custom.cc",
    "properties/longhands/webkit_box_orient_custom.cc",
    "properties/longhands/webkit_box_pack_custom.cc",
    "properties/longhands/webkit_box_reflect_custom.cc",
    "properties/longhands/webkit_font_size_delta_custom.cc",
    "properties/longhands/webkit_font_smoothing_custom.cc",
    "properties/longhands/webkit_highlight_custom.cc",
    "properties/longhands/webkit_hyphenate_character_custom.cc",
    "properties/longhands/webkit_line_break_custom.cc",
    "properties/longhands/webkit_line_clamp_custom.cc",
    "properties/longhands/webkit_locale_custom.cc",
    "properties/longhands/webkit_margin_after_collapse_custom.cc",
    "properties/longhands/webkit_margin_before_collapse_custom.cc",
    "properties/longhands/webkit_margin_bottom_collapse_custom.cc",
    "properties/longhands/webkit_margin_top_collapse_custom.cc",
    "properties/longhands/webkit_mask_box_image_outset_custom.cc",
    "properties/longhands/webkit_mask_box_image_repeat_custom.cc",
    "properties/longhands/webkit_mask_box_image_slice_custom.cc",
    "properties/longhands/webkit_mask_box_image_source_custom.cc",
    "properties/longhands/webkit_mask_box_image_width_custom.cc",
    "properties/longhands/webkit_mask_clip_custom.cc",
    "properties/longhands/webkit_mask_composite_custom.cc",
    "properties/longhands/webkit_mask_image_custom.cc",
    "properties/longhands/webkit_mask_origin_custom.cc",
    "properties/longhands/webkit_mask_position_x_custom.cc",
    "properties/longhands/webkit_mask_position_y_custom.cc",
    "properties/longhands/webkit_mask_size_custom.cc",
    "properties/longhands/webkit_perspective_origin_x_custom.cc",
    "properties/longhands/webkit_perspective_origin_y_custom.cc",
    "properties/longhands/webkit_print_color_adjust_custom.cc",
    "properties/longhands/webkit_rtl_ordering_custom.cc",
    "properties/longhands/webkit_ruby_position_custom.cc",
    "properties/longhands/webkit_tap_highlight_color_custom.cc",
    "properties/longhands/webkit_text_combine_custom.cc",
    "properties/longhands/webkit_text_decorations_in_effect_custom.cc",
    "properties/longhands/webkit_text_emphasis_color_custom.cc",
    "properties/longhands/webkit_text_emphasis_position_custom.cc",
    "properties/longhands/webkit_text_emphasis_style_custom.cc",
    "properties/longhands/webkit_text_fill_color_custom.cc",
    "properties/longhands/webkit_text_orientation_custom.cc",
    "properties/longhands/webkit_text_security_custom.cc",
    "properties/longhands/webkit_text_stroke_color_custom.cc",
    "properties/longhands/webkit_text_stroke_width_custom.cc",
    "properties/longhands/webkit_transform_origin_x_custom.cc",
    "properties/longhands/webkit_transform_origin_y_custom.cc",
    "properties/longhands/webkit_transform_origin_z_custom.cc",
    "properties/longhands/webkit_user_drag_custom.cc",
    "properties/longhands/webkit_user_modify_custom.cc",
    "properties/longhands/webkit_writing_mode_custom.cc",
    "properties/longhands/white_space_custom.cc",
    "properties/longhands/widows_custom.cc",
    "properties/longhands/width_custom.cc",
    "properties/longhands/will_change_custom.cc",
    "properties/longhands/word_break_custom.cc",
    "properties/longhands/word_spacing_custom.cc",
    "properties/longhands/writing_mode_custom.cc",
    "properties/longhands/x_custom.cc",
    "properties/longhands/y_custom.cc",
    "properties/longhands/z_index_custom.cc",
    "properties/longhands/zoom_custom.cc",
    "properties/shorthand.h",
    "properties/shorthands/animation_custom.cc",
    "properties/shorthands/background_custom.cc",
    "properties/shorthands/background_position_custom.cc",
    "properties/shorthands/background_repeat_custom.cc",
    "properties/shorthands/border_block_color_custom.cc",
    "properties/shorthands/border_block_custom.cc",
    "properties/shorthands/border_block_end_custom.cc",
    "properties/shorthands/border_block_start_custom.cc",
    "properties/shorthands/border_block_style_custom.cc",
    "properties/shorthands/border_block_width_custom.cc",
    "properties/shorthands/border_bottom_custom.cc",
    "properties/shorthands/border_color_custom.cc",
    "properties/shorthands/border_custom.cc",
    "properties/shorthands/border_image_custom.cc",
    "properties/shorthands/border_inline_color_custom.cc",
    "properties/shorthands/border_inline_custom.cc",
    "properties/shorthands/border_inline_end_custom.cc",
    "properties/shorthands/border_inline_start_custom.cc",
    "properties/shorthands/border_inline_style_custom.cc",
    "properties/shorthands/border_inline_width_custom.cc",
    "properties/shorthands/border_left_custom.cc",
    "properties/shorthands/border_radius_custom.cc",
    "properties/shorthands/border_right_custom.cc",
    "properties/shorthands/border_spacing_custom.cc",
    "properties/shorthands/border_style_custom.cc",
    "properties/shorthands/border_top_custom.cc",
    "properties/shorthands/border_width_custom.cc",
    "properties/shorthands/column_rule_custom.cc",
    "properties/shorthands/columns_custom.cc",
    "properties/shorthands/flex_custom.cc",
    "properties/shorthands/flex_flow_custom.cc",
    "properties/shorthands/font_custom.cc",
    "properties/shorthands/font_variant_custom.cc",
    "properties/shorthands/gap_custom.cc",
    "properties/shorthands/grid_area_custom.cc",
    "properties/shorthands/grid_column_custom.cc",
    "properties/shorthands/grid_column_gap_custom.cc",
    "properties/shorthands/grid_custom.cc",
    "properties/shorthands/grid_gap_custom.cc",
    "properties/shorthands/grid_row_custom.cc",
    "properties/shorthands/grid_row_gap_custom.cc",
    "properties/shorthands/grid_template_custom.cc",
    "properties/shorthands/inset_block_custom.cc",
    "properties/shorthands/inset_custom.cc",
    "properties/shorthands/inset_inline_custom.cc",
    "properties/shorthands/list_style_custom.cc",
    "properties/shorthands/margin_block_custom.cc",
    "properties/shorthands/margin_custom.cc",
    "properties/shorthands/margin_inline_custom.cc",
    "properties/shorthands/marker_custom.cc",
    "properties/shorthands/offset_custom.cc",
    "properties/shorthands/outline_custom.cc",
    "properties/shorthands/overflow_custom.cc",
    "properties/shorthands/overscroll_behavior_custom.cc",
    "properties/shorthands/padding_block_custom.cc",
    "properties/shorthands/padding_custom.cc",
    "properties/shorthands/padding_inline_custom.cc",
    "properties/shorthands/page_break_after_custom.cc",
    "properties/shorthands/page_break_before_custom.cc",
    "properties/shorthands/page_break_inside_custom.cc",
    "properties/shorthands/place_content_custom.cc",
    "properties/shorthands/place_items_custom.cc",
    "properties/shorthands/place_self_custom.cc",
    "properties/shorthands/scroll_margin_block_custom.cc",
    "properties/shorthands/scroll_margin_custom.cc",
    "properties/shorthands/scroll_margin_inline_custom.cc",
    "properties/shorthands/scroll_padding_block_custom.cc",
    "properties/shorthands/scroll_padding_custom.cc",
    "properties/shorthands/scroll_padding_inline_custom.cc",
    "properties/shorthands/text_decoration_custom.cc",
    "properties/shorthands/transition_custom.cc",
    "properties/shorthands/webkit_column_break_after_custom.cc",
    "properties/shorthands/webkit_column_break_before_custom.cc",
    "properties/shorthands/webkit_column_break_inside_custom.cc",
    "properties/shorthands/webkit_margin_collapse_custom.cc",
    "properties/shorthands/webkit_mask_box_image_custom.cc",
    "properties/shorthands/webkit_mask_custom.cc",
    "properties/shorthands/webkit_mask_position_custom.cc",
    "properties/shorthands/webkit_mask_repeat_custom.cc",
    "properties/shorthands/webkit_text_emphasis_custom.cc",
    "properties/shorthands/webkit_text_stroke_custom.cc",
    "properties/style_building_utils.h",
    "property_registration.cc",
    "property_registration.h",
    "property_registry.cc",
    "property_registry.h",
    "property_set_css_style_declaration.cc",
    "property_set_css_style_declaration.h",
    "pseudo_style_request.h",
    "remote_font_face_source.cc",
    "remote_font_face_source.h",
    "resolver/animated_style_builder.cc",
    "resolver/animated_style_builder.h",
    "resolver/css_property_priority.h",
    "resolver/css_to_style_map.cc",
    "resolver/css_to_style_map.h",
    "resolver/css_variable_animator.cc",
    "resolver/css_variable_animator.h",
    "resolver/css_variable_resolver.cc",
    "resolver/css_variable_resolver.h",
    "resolver/element_resolve_context.cc",
    "resolver/element_resolve_context.h",
    "resolver/element_style_resources.cc",
    "resolver/element_style_resources.h",
    "resolver/filter_operation_resolver.cc",
    "resolver/filter_operation_resolver.h",
    "resolver/font_builder.cc",
    "resolver/font_builder.h",
    "resolver/font_style_resolver.cc",
    "resolver/font_style_resolver.h",
    "resolver/match_request.h",
    "resolver/match_result.cc",
    "resolver/match_result.h",
    "resolver/matched_properties_cache.cc",
    "resolver/matched_properties_cache.h",
    "resolver/media_query_result.h",
    "resolver/scoped_style_resolver.cc",
    "resolver/scoped_style_resolver.h",
    "resolver/selector_filter_parent_scope.cc",
    "resolver/selector_filter_parent_scope.h",
    "resolver/style_adjuster.cc",
    "resolver/style_adjuster.h",
    "resolver/style_builder.cc",
    "resolver/style_builder.h",
    "resolver/style_builder_converter.cc",
    "resolver/style_builder_converter.h",
    "resolver/style_resolver.cc",
    "resolver/style_resolver.h",
    "resolver/style_resolver_state.cc",
    "resolver/style_resolver_state.h",
    "resolver/style_resolver_stats.cc",
    "resolver/style_resolver_stats.h",
    "resolver/style_rule_usage_tracker.cc",
    "resolver/style_rule_usage_tracker.h",
    "resolver/transform_builder.cc",
    "resolver/transform_builder.h",
    "resolver/viewport_style_resolver.cc",
    "resolver/viewport_style_resolver.h",
    "rule_feature_set.cc",
    "rule_feature_set.h",
    "rule_set.cc",
    "rule_set.h",
    "select_rule_feature_set.cc",
    "select_rule_feature_set.h",
    "selector_checker.cc",
    "selector_checker.h",
    "selector_filter.cc",
    "selector_filter.h",
    "selector_query.cc",
    "selector_query.h",
    "shadow_tree_style_sheet_collection.cc",
    "shadow_tree_style_sheet_collection.h",
    "style_attribute_mutation_scope.cc",
    "style_attribute_mutation_scope.h",
    "style_auto_color.h",
    "style_change_reason.cc",
    "style_change_reason.h",
    "style_color.cc",
    "style_color.h",
    "style_element.cc",
    "style_element.h",
    "style_engine.cc",
    "style_engine.h",
    "style_engine_context.cc",
    "style_engine_context.h",
    "style_environment_variables.cc",
    "style_environment_variables.h",
    "style_invalidation_root.cc",
    "style_invalidation_root.h",
    "style_media.cc",
    "style_media.h",
    "style_property_serializer.cc",
    "style_property_serializer.h",
    "style_property_shorthand_custom.cc",
    "style_recalc_root.cc",
    "style_recalc_root.h",
    "style_rule.cc",
    "style_rule.h",
    "style_rule_css_style_declaration.cc",
    "style_rule_css_style_declaration.h",
    "style_rule_import.cc",
    "style_rule_import.h",
    "style_rule_keyframe.cc",
    "style_rule_keyframe.h",
    "style_rule_namespace.h",
    "style_sheet.cc",
    "style_sheet.h",
    "style_sheet_candidate.cc",
    "style_sheet_candidate.h",
    "style_sheet_collection.cc",
    "style_sheet_collection.h",
    "style_sheet_contents.cc",
    "style_sheet_contents.h",
    "style_sheet_list.cc",
    "style_sheet_list.h",
    "style_traversal_root.cc",
    "style_traversal_root.h",
    "tree_scope_style_sheet_collection.cc",
    "tree_scope_style_sheet_collection.h",
    "zoom_adjusted_pixel_value.h",
  ]
}