File: blink_platform.gypi

package info (click to toggle)
chromium-browser 41.0.2272.118-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,189,132 kB
  • sloc: cpp: 9,691,462; ansic: 3,341,451; python: 712,689; asm: 518,779; xml: 208,926; java: 169,820; sh: 119,353; perl: 68,907; makefile: 28,311; yacc: 13,305; objc: 11,385; tcl: 3,186; cs: 2,225; sql: 2,217; lex: 2,215; lisp: 1,349; pascal: 1,256; awk: 407; ruby: 155; sed: 53; php: 14; exp: 11
file content (980 lines) | stat: -rw-r--r-- 35,764 bytes parent folder | download
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
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
{
  'includes': [
    'platform_generated.gypi',
  ],
  'variables': {
    'platform_files': [
      'AsyncFileSystemCallbacks.h',
      'CalculationValue.h',
      'CheckedInt.h',
      'Clock.cpp',
      'Clock.h',
      'ContentDecryptionModuleResult.h',
      'ContentType.cpp',
      'ContentType.h',
      'ContextMenu.cpp',
      'ContextMenu.h',
      'ContextMenuItem.cpp',
      'ContextMenuItem.h',
      'Cookie.h',
      'CrossThreadCopier.cpp',
      'CrossThreadCopier.h',
      'Crypto.cpp',
      'Crypto.h',
      'CryptoResult.h',
      'Cursor.cpp',
      'Cursor.h',
      'DateComponents.cpp',
      'DateComponents.h',
      'Decimal.cpp',
      'Decimal.h',
      'DragImage.cpp',
      'DragImage.h',
      'EventDispatchForbiddenScope.h',
      'EventTracer.cpp',
      'EventTracer.h',
      'FileChooser.cpp',
      'FileChooser.h',
      'FileMetadata.cpp',
      'FileMetadata.h',
      'FileSystemType.h',
      'FloatConversion.h',
      'HostWindow.h',
      'JSONValues.cpp',
      'JSONValues.h',
      'KeyboardCodes.h',
      'KillRing.h',
      'KillRingNone.cpp',
      'Language.cpp',
      'Language.h',
      'LayoutTestSupport.cpp',
      'LayoutTestSupport.h',
      'LayoutUnit.h',
      'Length.cpp',
      'Length.h',
      'LengthBox.cpp',
      'LengthBox.h',
      'LengthFunctions.cpp',
      'LengthFunctions.h',
      'LengthPoint.h',
      'LengthSize.h',
      'LifecycleContext.h',
      'LifecycleNotifier.h',
      'LifecycleObserver.h',
      'LinkHash.cpp',
      'LinkHash.h',
      'Logging.cpp',
      'Logging.h',
      'MIMETypeFromURL.cpp',
      'MIMETypeFromURL.h',
      'MIMETypeRegistry.cpp',
      'MIMETypeRegistry.h',
      'NotImplemented.cpp',
      'NotImplemented.h',
      'PODArena.h',
      'PODFreeListArena.h',
      'PODInterval.h',
      'PODIntervalTree.h',
      'PODRedBlackTree.h',
      'ParsingUtilities.h',
      'Partitions.cpp',
      'Partitions.h',
      'PasteMode.h',
      'PermissionCallbacks.cpp',
      'PermissionCallbacks.h',
      'PlatformEvent.h',
      'PlatformGestureEvent.h',
      'PlatformInstrumentation.cpp',
      'PlatformInstrumentation.h',
      'PlatformKeyboardEvent.cpp',
      'PlatformKeyboardEvent.h',
      'PlatformMouseEvent.h',
      'PlatformResourceLoader.cpp',
      'PlatformResourceLoader.h',
      'PlatformScreen.cpp',
      'PlatformScreen.h',
      'PlatformThreadData.cpp',
      'PlatformThreadData.h',
      'PlatformTouchEvent.h',
      'PlatformTouchPoint.h',
      'PlatformWheelEvent.h',
      'PopupMenu.h',
      'PopupMenuStyle.h',
      'Prerender.cpp',
      'Prerender.h',
      'PrerenderClient.h',
      'PurgeableVector.cpp',
      'PurgeableVector.h',
      'RefCountedSupplement.h',
      'ScriptForbiddenScope.cpp',
      'ScriptForbiddenScope.h',
      'SecureTextInput.cpp',
      'SecureTextInput.h',
      'SerializedResource.h',
      'SharedBuffer.cpp',
      'SharedBuffer.h',
      'SharedBufferChunkReader.cpp',
      'SharedBufferChunkReader.h',
      'SharedTimer.cpp',
      'SharedTimer.h',
      'StorageQuotaCallbacks.h',
      'Supplementable.h',
      'Task.h',
      'TaskSynchronizer.cpp',
      'TaskSynchronizer.h',
      'Theme.cpp',
      'Theme.h',
      'ThemeTypes.h',
      'ThreadTimers.cpp',
      'ThreadTimers.h',
      'Timer.cpp',
      'Timer.h',
      'TraceEvent.h',
      'TracedValue.cpp',
      'TracedValue.h',
      'URLPatternMatcher.cpp',
      'URLPatternMatcher.h',
      'UUID.cpp',
      'UUID.h',
      'UserGestureIndicator.cpp',
      'UserGestureIndicator.h',
      'WebThread.cpp',
      'WebThreadSupportingGC.cpp',
      'WebThreadSupportingGC.h',
      'Widget.cpp',
      'Widget.h',
      'WindowsKeyboardCodes.h',
      'animation/AnimationUtilities.h',
      'animation/AnimationValue.h',
      'animation/KeyframeValueList.cpp',
      'animation/KeyframeValueList.h',
      'animation/TimingFunction.cpp',
      'animation/TimingFunction.h',
      'animation/UnitBezier.h',
      'audio/AudioArray.h',
      'audio/AudioBus.cpp',
      'audio/AudioBus.h',
      'audio/AudioChannel.cpp',
      'audio/AudioChannel.h',
      'audio/AudioDSPKernel.cpp',
      'audio/AudioDSPKernel.h',
      'audio/AudioDSPKernelProcessor.cpp',
      'audio/AudioDSPKernelProcessor.h',
      'audio/AudioDelayDSPKernel.cpp',
      'audio/AudioDelayDSPKernel.h',
      'audio/AudioDestination.cpp',
      'audio/AudioDestination.h',
      'audio/AudioDestinationConsumer.h',
      'audio/AudioFIFO.cpp',
      'audio/AudioFIFO.h',
      'audio/AudioFileReader.h',
      'audio/AudioIOCallback.h',
      'audio/AudioProcessor.cpp',
      'audio/AudioProcessor.h',
      'audio/AudioPullFIFO.cpp',
      'audio/AudioPullFIFO.h',
      'audio/AudioResampler.cpp',
      'audio/AudioResampler.h',
      'audio/AudioResamplerKernel.cpp',
      'audio/AudioResamplerKernel.h',
      'audio/AudioSourceProvider.h',
      'audio/AudioSourceProviderClient.h',
      'audio/AudioUtilities.cpp',
      'audio/AudioUtilities.h',
      'audio/Biquad.cpp',
      'audio/Biquad.h',
      'audio/Cone.cpp',
      'audio/Cone.h',
      'audio/DenormalDisabler.h',
      'audio/DirectConvolver.cpp',
      'audio/DirectConvolver.h',
      'audio/Distance.cpp',
      'audio/Distance.h',
      'audio/DownSampler.cpp',
      'audio/DownSampler.h',
      'audio/DynamicsCompressor.cpp',
      'audio/DynamicsCompressor.h',
      'audio/DynamicsCompressorKernel.cpp',
      'audio/DynamicsCompressorKernel.h',
      'audio/EqualPowerPanner.cpp',
      'audio/EqualPowerPanner.h',
      'audio/FFTConvolver.cpp',
      'audio/FFTConvolver.h',
      'audio/FFTFrame.cpp',
      'audio/FFTFrame.h',
      'audio/FFTFrameStub.cpp',
      'audio/HRTFDatabase.cpp',
      'audio/HRTFDatabase.h',
      'audio/HRTFDatabaseLoader.cpp',
      'audio/HRTFDatabaseLoader.h',
      'audio/HRTFElevation.cpp',
      'audio/HRTFElevation.h',
      'audio/HRTFKernel.cpp',
      'audio/HRTFKernel.h',
      'audio/HRTFPanner.cpp',
      'audio/HRTFPanner.h',
      'audio/MultiChannelResampler.cpp',
      'audio/MultiChannelResampler.h',
      'audio/Panner.cpp',
      'audio/Panner.h',
      'audio/Reverb.cpp',
      'audio/Reverb.h',
      'audio/ReverbAccumulationBuffer.cpp',
      'audio/ReverbAccumulationBuffer.h',
      'audio/ReverbConvolver.cpp',
      'audio/ReverbConvolver.h',
      'audio/ReverbConvolverStage.cpp',
      'audio/ReverbConvolverStage.h',
      'audio/ReverbInputBuffer.cpp',
      'audio/ReverbInputBuffer.h',
      'audio/SincResampler.cpp',
      'audio/SincResampler.h',
      'audio/Spatializer.cpp',
      'audio/Spatializer.h',
      'audio/StereoPanner.cpp',
      'audio/StereoPanner.h',
      'audio/UpSampler.cpp',
      'audio/UpSampler.h',
      'audio/VectorMath.cpp',
      'audio/VectorMath.h',
      'audio/ZeroPole.cpp',
      'audio/ZeroPole.h',
      'audio/android/FFTFrameOpenMAXDLAndroid.cpp',
      'audio/ffmpeg/FFTFrameFFMPEG.cpp',
      'audio/ipp/FFTFrameIPP.cpp',
      'audio/mac/FFTFrameMac.cpp',
      'blob/BlobData.cpp',
      'blob/BlobData.h',
      'blob/BlobRegistry.cpp',
      'blob/BlobRegistry.h',
      'blob/BlobURL.cpp',
      'blob/BlobURL.h',
      'clipboard/ClipboardMimeTypes.cpp',
      'clipboard/ClipboardMimeTypes.h',
      'clipboard/ClipboardUtilities.cpp',
      'clipboard/ClipboardUtilities.h',
      'clipboard/ClipboardUtilitiesPosix.cpp',
      'clipboard/ClipboardUtilitiesWin.cpp',
      'credentialmanager/PlatformCredential.cpp',
      'credentialmanager/PlatformCredential.h',
      'credentialmanager/PlatformFederatedCredential.cpp',
      'credentialmanager/PlatformFederatedCredential.h',
      'credentialmanager/PlatformLocalCredential.cpp',
      'credentialmanager/PlatformLocalCredential.h',
      'exported/Platform.cpp',
      'exported/WebActiveGestureAnimation.cpp',
      'exported/WebActiveGestureAnimation.h',
      'exported/WebAudioBus.cpp',
      'exported/WebAudioDevice.cpp',
      'exported/WebBlobData.cpp',
      'exported/WebContentDecryptionModule.cpp',
      'exported/WebContentDecryptionModuleAccess.cpp',
      'exported/WebContentDecryptionModuleResult.cpp',
      'exported/WebContentDecryptionModuleSession.cpp',
      'exported/WebConvertableToTraceFormat.cpp',
      'exported/WebCredential.cpp',
      'exported/WebCryptoAlgorithm.cpp',
      'exported/WebCryptoKey.cpp',
      'exported/WebCryptoKeyAlgorithm.cpp',
      'exported/WebCryptoResult.cpp',
      'exported/WebCursorInfo.cpp',
      'exported/WebData.cpp',
      'exported/WebDeviceMotionData.cpp',
      'exported/WebDeviceOrientationData.cpp',
      'exported/WebEncryptedMediaClient.cpp',
      'exported/WebFederatedCredential.cpp',
      'exported/WebFileSystemCallbacks.cpp',
      'exported/WebFilterKeyframe.cpp',
      'exported/WebHTTPBody.cpp',
      'exported/WebHTTPLoadInfo.cpp',
      'exported/WebImageSkia.cpp',
      'exported/WebLocalCredential.cpp',
      'exported/WebMediaConstraints.cpp',
      'exported/WebMediaDeviceInfo.cpp',
      'exported/WebMediaStream.cpp',
      'exported/WebMediaStreamSource.cpp',
      'exported/WebMediaStreamTrack.cpp',
      'exported/WebMediaStreamTrackSourcesRequest.cpp',
      'exported/WebPermissionCallbacks.cpp',
      'exported/WebPrerender.cpp',
      'exported/WebPrerenderingSupport.cpp',
      'exported/WebRTCConfiguration.cpp',
      'exported/WebRTCICECandidate.cpp',
      'exported/WebRTCOfferOptions.cpp',
      'exported/WebRTCSessionDescription.cpp',
      'exported/WebRTCSessionDescriptionRequest.cpp',
      'exported/WebRTCStatsRequest.cpp',
      'exported/WebRTCStatsResponse.cpp',
      'exported/WebRTCVoidRequest.cpp',
      'exported/WebScrollbarImpl.cpp',
      'exported/WebScrollbarImpl.h',
      'exported/WebScrollbarThemeClientImpl.cpp',
      'exported/WebScrollbarThemeClientImpl.h',
      'exported/WebScrollbarThemeGeometryNative.cpp',
      'exported/WebScrollbarThemeGeometryNative.h',
      'exported/WebSerializedOrigin.cpp',
      'exported/WebServiceWorkerRequest.cpp',
      'exported/WebServiceWorkerResponse.cpp',
      'exported/WebSocketHandshakeRequestInfo.cpp',
      'exported/WebSocketHandshakeResponseInfo.cpp',
      'exported/WebSourceInfo.cpp',
      'exported/WebSpeechSynthesisUtterance.cpp',
      'exported/WebSpeechSynthesisVoice.cpp',
      'exported/WebSpeechSynthesizerClientImpl.cpp',
      'exported/WebSpeechSynthesizerClientImpl.h',
      'exported/WebStorageQuotaCallbacks.cpp',
      'exported/WebThreadSafeData.cpp',
      'exported/WebTraceLocation.cpp',
      'exported/WebTransformKeyframe.cpp',
      'exported/WebURL.cpp',
      'exported/WebURLError.cpp',
      'exported/WebURLLoadTiming.cpp',
      'exported/WebURLRequest.cpp',
      'exported/WebURLRequestPrivate.h',
      'exported/WebURLResponse.cpp',
      'exported/WebURLResponsePrivate.h',
      'exported/WrappedResourceRequest.h',
      'exported/WrappedResourceResponse.h',
      'exported/linux/WebFontInfo.cpp',
      'exported/linux/WebFontRenderStyle.cpp',
      'fonts/AlternateFontFamily.h',
      'fonts/Character.cpp',
      'fonts/Character.h',
      'fonts/CustomFontData.h',
      'fonts/FixedPitchFontType.h',
      'fonts/Font.cpp',
      'fonts/Font.h',
      'fonts/FontBaseline.h',
      'fonts/FontCache.cpp',
      'fonts/FontCache.h',
      'fonts/FontCacheClient.h',
      'fonts/FontCacheKey.h',
      'fonts/FontCustomPlatformData.h',
      'fonts/FontData.cpp',
      'fonts/FontData.h',
      'fonts/FontDataCache.cpp',
      'fonts/FontDataCache.h',
      'fonts/FontDescription.cpp',
      'fonts/FontFaceCreationParams.h',
      'fonts/FontFallbackList.cpp',
      'fonts/FontFallbackList.h',
      'fonts/FontFamily.cpp',
      'fonts/FontFamily.h',
      'fonts/FontFeatureSettings.cpp',
      'fonts/FontFeatureSettings.h',
      'fonts/FontPlatformData.cpp',
      'fonts/FontPlatformData.h',
      'fonts/FontRenderStyle.h',
      'fonts/GenericFontFamilySettings.cpp',
      'fonts/GenericFontFamilySettings.h',
      'fonts/GlyphBuffer.h',
      'fonts/GlyphMetricsMap.h',
      'fonts/GlyphPage.h',
      'fonts/GlyphPageTreeNode.cpp',
      'fonts/GlyphPageTreeNode.h',
      'fonts/Latin1TextIterator.h',
      'fonts/SegmentedFontData.cpp',
      'fonts/SegmentedFontData.h',
      'fonts/SimpleFontData.cpp',
      'fonts/SimpleFontData.h',
      'fonts/TextBlob.h',
      'fonts/VDMXParser.cpp',
      'fonts/VDMXParser.h',
      'fonts/WidthCache.h',
      'fonts/android/FontCacheAndroid.cpp',
      'fonts/linux/FontCacheLinux.cpp',
      'fonts/linux/FontPlatformDataLinux.cpp',
      'fonts/mac/FontCacheMac.mm',
      'fonts/mac/FontCustomPlatformDataMac.cpp',
      'fonts/mac/FontPlatformDataMac.mm',
      'fonts/mac/MemoryActivatedFont.h',
      'fonts/mac/MemoryActivatedFont.mm',
      'fonts/opentype/OpenTypeSanitizer.cpp',
      'fonts/opentype/OpenTypeSanitizer.h',
      'fonts/opentype/OpenTypeTypes.h',
      'fonts/opentype/OpenTypeVerticalData.cpp',
      'fonts/opentype/OpenTypeVerticalData.h',
      'fonts/shaping/HarfBuzzFace.cpp',
      'fonts/shaping/HarfBuzzFace.h',
      'fonts/shaping/HarfBuzzShaper.cpp',
      'fonts/shaping/HarfBuzzShaper.h',
      'fonts/shaping/SimpleShaper.cpp',
      'fonts/shaping/SimpleShaper.h',
      'fonts/skia/FontCacheSkia.cpp',
      'fonts/skia/FontCustomPlatformDataSkia.cpp',
      'fonts/win/FontCacheSkiaWin.cpp',
      'fonts/win/FontFallbackWin.cpp',
      'fonts/win/FontFallbackWin.h',
      'fonts/win/FontPlatformDataWin.cpp',
      'geometry/DoublePoint.cpp',
      'geometry/DoublePoint.h',
      'geometry/DoubleSize.cpp',
      'geometry/DoubleSize.h',
      'geometry/FloatRectOutsets.h',
      'geometry/FloatPoint.cpp',
      'geometry/FloatPoint.h',
      'geometry/FloatPoint3D.cpp',
      'geometry/FloatPoint3D.h',
      'geometry/FloatPolygon.cpp',
      'geometry/FloatPolygon.h',
      'geometry/FloatQuad.cpp',
      'geometry/FloatQuad.h',
      'geometry/FloatRect.cpp',
      'geometry/FloatRect.h',
      'geometry/FloatRoundedRect.cpp',
      'geometry/FloatRoundedRect.h',
      'geometry/FloatSize.cpp',
      'geometry/FloatSize.h',
      'geometry/IntRectOutsets.h',
      'geometry/IntPoint.h',
      'geometry/IntRect.cpp',
      'geometry/IntRect.h',
      'geometry/IntSize.h',
      'geometry/IntSizeHash.h',
      'geometry/LayoutRectOutsets.cpp',
      'geometry/LayoutRectOutsets.h',
      'geometry/LayoutPoint.h',
      'geometry/LayoutRect.cpp',
      'geometry/LayoutRect.h',
      'geometry/LayoutSize.h',
      'geometry/Region.cpp',
      'geometry/Region.h',
      'geometry/TransformState.cpp',
      'geometry/TransformState.h',
      'geometry/cg/FloatPointCG.cpp',
      'geometry/cg/FloatRectCG.cpp',
      'geometry/cg/FloatSizeCG.cpp',
      'geometry/cg/IntPointCG.cpp',
      'geometry/cg/IntRectCG.cpp',
      'geometry/cg/IntSizeCG.cpp',
      'geometry/mac/FloatPointMac.mm',
      'geometry/mac/FloatRectMac.mm',
      'geometry/mac/FloatSizeMac.mm',
      'geometry/mac/IntPointMac.mm',
      'geometry/mac/IntRectMac.mm',
      'geometry/mac/IntSizeMac.mm',
      'graphics/BitmapImage.cpp',
      'graphics/BitmapImage.h',
      'graphics/BitmapPattern.cpp',
      'graphics/BitmapPattern.h',
      'graphics/BitmapPatternBase.cpp',
      'graphics/BitmapPatternBase.h',
      'graphics/Canvas2DImageBufferSurface.h',
      'graphics/Canvas2DLayerBridge.cpp',
      'graphics/Canvas2DLayerBridge.h',
      'graphics/Canvas2DLayerManager.cpp',
      'graphics/Canvas2DLayerManager.h',
      'graphics/Color.cpp',
      'graphics/Color.h',
      'graphics/ColorSpace.cpp',
      'graphics/ColorSpace.h',
      'graphics/CompositingReasons.cpp',
      'graphics/CompositingReasons.h',
      'graphics/ContentLayerDelegate.cpp',
      'graphics/ContentLayerDelegate.h',
      'graphics/CrossfadeGeneratedImage.cpp',
      'graphics/CrossfadeGeneratedImage.h',
      'graphics/DecodingImageGenerator.cpp',
      'graphics/DecodingImageGenerator.h',
      'graphics/DeferredImageDecoder.cpp',
      'graphics/DeferredImageDecoder.h',
      'graphics/PicturePattern.cpp',
      'graphics/PicturePattern.h',
      'graphics/DrawLooperBuilder.cpp',
      'graphics/DrawLooperBuilder.h',
      'graphics/FirstPaintInvalidationTracking.cpp',
      'graphics/FirstPaintInvalidationTracking.h',
      'graphics/FrameData.cpp',
      'graphics/FrameData.h',
      'graphics/GeneratedImage.cpp',
      'graphics/GeneratedImage.h',
      'graphics/Gradient.cpp',
      'graphics/Gradient.h',
      'graphics/GradientGeneratedImage.cpp',
      'graphics/GradientGeneratedImage.h',
      'graphics/GraphicsContext.cpp',
      'graphics/GraphicsContext.h',
      'graphics/GraphicsContextAnnotation.h',
      'graphics/GraphicsContextRecorder.cpp',
      'graphics/GraphicsContextRecorder.h',
      'graphics/GraphicsContextState.cpp',
      'graphics/GraphicsContextState.h',
      'graphics/GraphicsContextStateSaver.h',
      'graphics/GraphicsLayer.cpp',
      'graphics/GraphicsLayer.h',
      'graphics/GraphicsLayerClient.h',
      'graphics/GraphicsLayerDebugInfo.cpp',
      'graphics/GraphicsLayerDebugInfo.h',
      'graphics/GraphicsLayerFactory.h',
      'graphics/GraphicsTypes.cpp',
      'graphics/GraphicsTypes.h',
      'graphics/GraphicsTypes3D.h',
      'graphics/Image.cpp',
      'graphics/Image.h',
      'graphics/ImageAnimationPolicy.h',
      'graphics/ImageBuffer.cpp',
      'graphics/ImageBuffer.h',
      'graphics/ImageBufferClient.h',
      'graphics/ImageBufferSurface.cpp',
      'graphics/ImageBufferSurface.h',
      'graphics/ImageDecodingStore.cpp',
      'graphics/ImageDecodingStore.h',
      'graphics/ImageFilter.cpp',
      'graphics/ImageFilter.h',
      'graphics/ImageFrameGenerator.cpp',
      'graphics/ImageFrameGenerator.h',
      'graphics/ImageObserver.cpp',
      'graphics/ImageObserver.h',
      'graphics/ImageOrientation.cpp',
      'graphics/ImageOrientation.h',
      'graphics/ImageSource.cpp',
      'graphics/ImageSource.h',
      'graphics/LoggingCanvas.cpp',
      'graphics/LoggingCanvas.h',
      'graphics/PaintInvalidationReason.cpp',
      'graphics/PaintInvalidationReason.h',
      'graphics/Path.cpp',
      'graphics/Path.h',
      'graphics/PathTraversalState.cpp',
      'graphics/PathTraversalState.h',
      'graphics/Pattern.cpp',
      'graphics/Pattern.h',
      'graphics/ProfilingCanvas.cpp',
      'graphics/ProfilingCanvas.h',
      'graphics/RecordingImageBufferSurface.cpp',
      'graphics/RecordingImageBufferSurface.h',
      'graphics/RegionTracker.cpp',
      'graphics/RegionTracker.h',
      'graphics/ReplayingCanvas.cpp',
      'graphics/ReplayingCanvas.h',
      'graphics/StaticBitmapImage.cpp',
      'graphics/StaticBitmapImage.h',
      'graphics/StaticBitmapPattern.cpp',
      'graphics/StaticBitmapPattern.h',
      'graphics/StrokeData.cpp',
      'graphics/StrokeData.h',
      'graphics/ThreadSafeDataTransport.cpp',
      'graphics/ThreadSafeDataTransport.h',
      'graphics/UnacceleratedImageBufferSurface.cpp',
      'graphics/UnacceleratedImageBufferSurface.h',
      'graphics/cpu/arm/WebGLImageConversionNEON.h',
      'graphics/filters/DistantLightSource.cpp',
      'graphics/filters/DistantLightSource.h',
      'graphics/filters/FEBlend.cpp',
      'graphics/filters/FEBlend.h',
      'graphics/filters/FEColorMatrix.cpp',
      'graphics/filters/FEColorMatrix.h',
      'graphics/filters/FEComponentTransfer.cpp',
      'graphics/filters/FEComponentTransfer.h',
      'graphics/filters/FEComposite.cpp',
      'graphics/filters/FEComposite.h',
      'graphics/filters/FEConvolveMatrix.cpp',
      'graphics/filters/FEConvolveMatrix.h',
      'graphics/filters/FEDiffuseLighting.cpp',
      'graphics/filters/FEDiffuseLighting.h',
      'graphics/filters/FEDisplacementMap.cpp',
      'graphics/filters/FEDisplacementMap.h',
      'graphics/filters/FEDropShadow.cpp',
      'graphics/filters/FEDropShadow.h',
      'graphics/filters/FEFlood.cpp',
      'graphics/filters/FEFlood.h',
      'graphics/filters/FEGaussianBlur.cpp',
      'graphics/filters/FEGaussianBlur.h',
      'graphics/filters/FELighting.cpp',
      'graphics/filters/FELighting.h',
      'graphics/filters/FEMerge.cpp',
      'graphics/filters/FEMerge.h',
      'graphics/filters/FEMorphology.cpp',
      'graphics/filters/FEMorphology.h',
      'graphics/filters/FEOffset.cpp',
      'graphics/filters/FEOffset.h',
      'graphics/filters/FESpecularLighting.cpp',
      'graphics/filters/FESpecularLighting.h',
      'graphics/filters/FETile.cpp',
      'graphics/filters/FETile.h',
      'graphics/filters/FETurbulence.cpp',
      'graphics/filters/FETurbulence.h',
      'graphics/filters/Filter.h',
      'graphics/filters/FilterEffect.cpp',
      'graphics/filters/FilterEffect.h',
      'graphics/filters/FilterOperation.cpp',
      'graphics/filters/FilterOperation.h',
      'graphics/filters/FilterOperations.cpp',
      'graphics/filters/FilterOperations.h',
      'graphics/filters/LightSource.cpp',
      'graphics/filters/LightSource.h',
      'graphics/filters/PointLightSource.cpp',
      'graphics/filters/PointLightSource.h',
      'graphics/filters/ReferenceFilter.cpp',
      'graphics/filters/ReferenceFilter.h',
      'graphics/filters/SkiaImageFilterBuilder.cpp',
      'graphics/filters/SkiaImageFilterBuilder.h',
      'graphics/filters/SourceAlpha.cpp',
      'graphics/filters/SourceAlpha.h',
      'graphics/filters/SourceGraphic.cpp',
      'graphics/filters/SourceGraphic.h',
      'graphics/filters/SpotLightSource.cpp',
      'graphics/filters/SpotLightSource.h',
      'graphics/gpu/AcceleratedImageBufferSurface.cpp',
      'graphics/gpu/AcceleratedImageBufferSurface.h',
      'graphics/gpu/DrawingBuffer.cpp',
      'graphics/gpu/DrawingBuffer.h',
      'graphics/gpu/Extensions3DUtil.cpp',
      'graphics/gpu/Extensions3DUtil.h',
      'graphics/gpu/WebGLImageBufferSurface.cpp',
      'graphics/gpu/WebGLImageBufferSurface.h',
      'graphics/gpu/WebGLImageConversion.cpp',
      'graphics/gpu/WebGLImageConversion.h',
      'graphics/media/MediaPlayer.cpp',
      'graphics/media/MediaPlayer.h',
      'graphics/paint/CachedDisplayItem.h',
      'graphics/paint/ClipDisplayItem.cpp',
      'graphics/paint/ClipDisplayItem.h',
      'graphics/paint/ClipPathDisplayItem.cpp',
      'graphics/paint/ClipPathDisplayItem.h',
      'graphics/paint/ClipPathRecorder.cpp',
      'graphics/paint/ClipPathRecorder.h',
      'graphics/paint/ClipRecorder.cpp',
      'graphics/paint/ClipRecorder.h',
      'graphics/paint/ClipRecorderStack.cpp',
      'graphics/paint/ClipRecorderStack.h',
      'graphics/paint/DisplayItem.cpp',
      'graphics/paint/DisplayItem.h',
      'graphics/paint/DisplayItemList.cpp',
      'graphics/paint/DisplayItemList.h',
      'graphics/paint/DrawingDisplayItem.cpp',
      'graphics/paint/DrawingDisplayItem.h',
      'graphics/paint/DrawingRecorder.cpp',
      'graphics/paint/DrawingRecorder.h',
      'graphics/paint/FilterDisplayItem.cpp',
      'graphics/paint/FilterDisplayItem.h',
      'graphics/paint/FloatClipDisplayItem.cpp',
      'graphics/paint/FloatClipDisplayItem.h',
      'graphics/paint/TransformDisplayItem.cpp',
      'graphics/paint/TransformDisplayItem.h',
      'graphics/paint/TransparencyDisplayItem.cpp',
      'graphics/paint/TransparencyDisplayItem.h',
      'graphics/skia/GaneshUtils.cpp',
      'graphics/skia/GaneshUtils.h',
      'graphics/skia/NativeImageSkia.cpp',
      'graphics/skia/NativeImageSkia.h',
      'graphics/skia/SkSizeHash.h',
      'graphics/skia/SkiaUtils.cpp',
      'graphics/skia/SkiaUtils.h',
      'image-decoders/ImageDecoder.cpp',
      'image-decoders/ImageDecoder.h',
      'image-decoders/ImageFrame.cpp',
      'image-decoders/ImageFrame.h',
      'image-decoders/bmp/BMPImageDecoder.cpp',
      'image-decoders/bmp/BMPImageDecoder.h',
      'image-decoders/bmp/BMPImageReader.cpp',
      'image-decoders/bmp/BMPImageReader.h',
      'image-decoders/gif/GIFImageDecoder.cpp',
      'image-decoders/gif/GIFImageDecoder.h',
      'image-decoders/gif/GIFImageReader.cpp',
      'image-decoders/gif/GIFImageReader.h',
      'image-decoders/ico/ICOImageDecoder.cpp',
      'image-decoders/ico/ICOImageDecoder.h',
      'image-decoders/jpeg/JPEGImageDecoder.cpp',
      'image-decoders/jpeg/JPEGImageDecoder.h',
      'image-decoders/png/PNGImageDecoder.cpp',
      'image-decoders/png/PNGImageDecoder.h',
      'image-decoders/webp/WEBPImageDecoder.cpp',
      'image-decoders/webp/WEBPImageDecoder.h',
      'image-encoders/skia/JPEGImageEncoder.cpp',
      'image-encoders/skia/JPEGImageEncoder.h',
      'image-encoders/skia/PNGImageEncoder.cpp',
      'image-encoders/skia/PNGImageEncoder.h',
      'image-encoders/skia/WEBPImageEncoder.cpp',
      'image-encoders/skia/WEBPImageEncoder.h',
      'mac/BlockExceptions.h',
      'mac/BlockExceptions.mm',
      'mac/ColorMac.h',
      'mac/ColorMac.mm',
      'mac/KillRingMac.mm',
      'mac/LocalCurrentGraphicsContext.h',
      'mac/LocalCurrentGraphicsContext.mm',
      'mac/NSScrollerImpDetails.h',
      'mac/ScrollAnimatorMac.h',
      'mac/ScrollAnimatorMac.mm',
      'mac/ScrollElasticityController.h',
      'mac/ScrollElasticityController.mm',
      'mac/ThemeMac.h',
      'mac/ThemeMac.mm',
      'mac/WebCoreNSCellExtras.h',
      'mac/WebCoreNSCellExtras.mm',
      'mac/WebFontCache.h',
      'mac/WebFontCache.mm',
      'mediastream/MediaStreamCenter.cpp',
      'mediastream/MediaStreamCenter.h',
      'mediastream/MediaStreamComponent.cpp',
      'mediastream/MediaStreamComponent.h',
      'mediastream/MediaStreamDescriptor.cpp',
      'mediastream/MediaStreamDescriptor.h',
      'mediastream/MediaStreamSource.cpp',
      'mediastream/MediaStreamSource.h',
      'mediastream/MediaStreamTrackSourcesRequest.h',
      'mediastream/MediaStreamWebAudioSource.cpp',
      'mediastream/MediaStreamWebAudioSource.h',
      'mediastream/RTCConfiguration.h',
      'mediastream/RTCSessionDescriptionRequest.h',
      'mediastream/RTCStatsRequest.h',
      'mediastream/RTCStatsResponseBase.h',
      'mediastream/RTCVoidRequest.h',
      'mhtml/ArchiveResource.cpp',
      'mhtml/ArchiveResourceCollection.cpp',
      'mhtml/ArchiveResourceCollection.h',
      'mhtml/MHTMLArchive.cpp',
      'mhtml/MHTMLArchive.h',
      'mhtml/MHTMLParser.cpp',
      'mhtml/MHTMLParser.h',
      'network/ContentSecurityPolicyParsers.cpp',
      'network/ContentSecurityPolicyParsers.h',
      'network/ContentSecurityPolicyResponseHeaders.cpp',
      'network/ContentSecurityPolicyResponseHeaders.h',
      'network/DNS.cpp',
      'network/DNS.h',
      'network/FormData.cpp',
      'network/FormData.h',
      'network/FormDataBuilder.cpp',
      'network/FormDataBuilder.h',
      'network/HTTPHeaderMap.cpp',
      'network/HTTPHeaderMap.h',
      'network/HTTPParsers.cpp',
      'network/HTTPParsers.h',
      'network/HTTPRequest.cpp',
      'network/HTTPRequest.h',
      'network/ParsedContentType.cpp',
      'network/ParsedContentType.h',
      'network/ResourceError.cpp',
      'network/ResourceError.h',
      'network/ResourceRequest.cpp',
      'network/ResourceRequest.h',
      'network/ResourceResponse.cpp',
      'network/ResourceResponse.h',
      'network/WebSocketHandshakeRequest.cpp',
      'network/WebSocketHandshakeRequest.h',
      'network/WebSocketHandshakeResponse.cpp',
      'network/WebSocketHandshakeResponse.h',
      'plugins/PluginData.cpp',
      'plugins/PluginData.h',
      'plugins/PluginListBuilder.cpp',
      'plugins/PluginListBuilder.h',
      'scheduler/Scheduler.cpp',
      'scheduler/Scheduler.h',
      'scroll/ProgrammaticScrollAnimator.cpp',
      'scroll/ProgrammaticScrollAnimator.h',
      'scroll/ScrollAnimator.cpp',
      'scroll/ScrollAnimator.h',
      'scroll/ScrollAnimatorNone.cpp',
      'scroll/ScrollAnimatorNone.h',
      'scroll/ScrollTypes.h',
      'scroll/ScrollableArea.cpp',
      'scroll/ScrollableArea.h',
      'scroll/Scrollbar.cpp',
      'scroll/Scrollbar.h',
      'scroll/ScrollbarTheme.cpp',
      'scroll/ScrollbarTheme.h',
      'scroll/ScrollbarThemeAndroid.cpp',
      'scroll/ScrollbarThemeAura.cpp',
      'scroll/ScrollbarThemeAura.h',
      'scroll/ScrollbarThemeClient.h',
      'scroll/ScrollbarThemeMacCommon.h',
      'scroll/ScrollbarThemeMacCommon.mm',
      'scroll/ScrollbarThemeMacNonOverlayAPI.h',
      'scroll/ScrollbarThemeMacNonOverlayAPI.mm',
      'scroll/ScrollbarThemeMacOverlayAPI.h',
      'scroll/ScrollbarThemeMacOverlayAPI.mm',
      'scroll/ScrollbarThemeMock.cpp',
      'scroll/ScrollbarThemeMock.h',
      'scroll/ScrollbarThemeNonMacCommon.cpp',
      'scroll/ScrollbarThemeNonMacCommon.h',
      'scroll/ScrollbarThemeOverlay.cpp',
      'scroll/ScrollbarThemeOverlay.h',
      'scroll/ScrollbarThemeOverlayMock.h',
      'speech/PlatformSpeechSynthesisUtterance.cpp',
      'speech/PlatformSpeechSynthesisUtterance.h',
      'speech/PlatformSpeechSynthesisVoice.cpp',
      'speech/PlatformSpeechSynthesisVoice.h',
      'speech/PlatformSpeechSynthesizer.cpp',
      'speech/PlatformSpeechSynthesizer.h',
      'text/BidiCharacterRun.cpp',
      'text/BidiCharacterRun.h',
      'text/BidiContext.cpp',
      'text/BidiContext.h',
      'text/BidiResolver.h',
      'text/BidiRunList.h',
      'text/BidiTextRun.cpp',
      'text/BidiTextRun.h',
      'text/DateTimeFormat.cpp',
      'text/DateTimeFormat.h',
      'text/DecodeEscapeSequences.h',
      'text/LineEnding.cpp',
      'text/LineEnding.h',
      'text/LocaleICU.cpp',
      'text/LocaleICU.h',
      'text/LocaleMac.h',
      'text/LocaleMac.mm',
      'text/LocaleToScriptMapping.cpp',
      'text/LocaleToScriptMapping.h',
      'text/LocaleWin.cpp',
      'text/LocaleWin.h',
      'text/NonCJKGlyphOrientation.h',
      'text/ParserUtilities.h',
      'text/PlatformLocale.cpp',
      'text/PlatformLocale.h',
      'text/QuotedPrintable.cpp',
      'text/QuotedPrintable.h',
      'text/SegmentedString.cpp',
      'text/SegmentedString.h',
      'text/StringTruncator.cpp',
      'text/StringTruncator.h',
      'text/SuffixTree.h',
      'text/SurrogatePairAwareTextIterator.cpp',
      'text/SurrogatePairAwareTextIterator.h',
      'text/TextBoundaries.cpp',
      'text/TextBoundaries.h',
      'text/TextBreakIterator.cpp',
      'text/TextBreakIterator.h',
      'text/TextBreakIteratorICU.cpp',
      'text/TextBreakIteratorInternalICU.cpp',
      'text/TextBreakIteratorInternalICU.h',
      'text/TextCheckerClient.h',
      'text/TextChecking.h',
      'text/TextDecoration.h',
      'text/TextEncodingDetector.cpp',
      'text/TextEncodingDetector.h',
      'text/TextPath.h',
      'text/TextRun.cpp',
      'text/TextRun.h',
      'text/TextRunIterator.h',
      'text/TextStream.cpp',
      'text/TextStream.h',
      'text/UnicodeBidi.h',
      'text/UnicodeRange.cpp',
      'text/UnicodeRange.h',
      'text/UnicodeUtilities.cpp',
      'text/UnicodeUtilities.h',
      'transforms/AffineTransform.cpp',
      'transforms/AffineTransform.h',
      'transforms/IdentityTransformOperation.h',
      'transforms/InterpolatedTransformOperation.cpp',
      'transforms/InterpolatedTransformOperation.h',
      'transforms/Matrix3DTransformOperation.cpp',
      'transforms/Matrix3DTransformOperation.h',
      'transforms/MatrixTransformOperation.cpp',
      'transforms/MatrixTransformOperation.h',
      'transforms/PerspectiveTransformOperation.cpp',
      'transforms/PerspectiveTransformOperation.h',
      'transforms/RotateTransformOperation.cpp',
      'transforms/RotateTransformOperation.h',
      'transforms/ScaleTransformOperation.cpp',
      'transforms/ScaleTransformOperation.h',
      'transforms/SkewTransformOperation.cpp',
      'transforms/SkewTransformOperation.h',
      'transforms/TransformOperations.cpp',
      'transforms/TransformationMatrix.cpp',
      'transforms/TransformationMatrix.h',
      'transforms/TranslateTransformOperation.cpp',
      'transforms/TranslateTransformOperation.h',
      'weborigin/DatabaseIdentifier.cpp',
      'weborigin/DatabaseIdentifier.h',
      'weborigin/KURL.cpp',
      'weborigin/KURL.h',
      'weborigin/KURLHash.h',
      'weborigin/KnownPorts.cpp',
      'weborigin/KnownPorts.h',
      'weborigin/OriginAccessEntry.cpp',
      'weborigin/OriginAccessEntry.h',
      'weborigin/Referrer.h',
      'weborigin/ReferrerPolicy.h',
      'weborigin/SchemeRegistry.cpp',
      'weborigin/SchemeRegistry.h',
      'weborigin/SecurityOrigin.cpp',
      'weborigin/SecurityOrigin.h',
      'weborigin/SecurityOriginCache.h',
      'weborigin/SecurityOriginHash.h',
      'weborigin/SecurityPolicy.cpp',
      'weborigin/SecurityPolicy.h',
      'win/HWndDC.h',
      'win/SystemInfo.cpp',
      'win/SystemInfo.h',
    ],
    'platform_test_files': [
      'ClockTest.cpp',
      'DecimalTest.cpp',
      'DragImageTest.cpp',
      'LayoutUnitTest.cpp',
      'LifecycleContextTest.cpp',
      'PODArenaTest.cpp',
      'PODFreeListArenaTest.cpp',
      'PODIntervalTreeTest.cpp',
      'PODRedBlackTreeTest.cpp',
      'PurgeableVectorTest.cpp',
      'SharedBufferTest.cpp',
      'TestingPlatformSupport.cpp',
      'TestingPlatformSupport.h',
      'TracedValueTest.cpp',
      'animation/TimingFunctionTest.cpp',
      'animation/UnitBezierTest.cpp',
      'clipboard/ClipboardUtilitiesTest.cpp',
      'fonts/FontCacheTest.cpp',
      'fonts/FontDescriptionTest.cpp',
      'fonts/FontTest.cpp',
      'fonts/GlyphBufferTest.cpp',
      'fonts/GlyphPageTreeNodeTest.cpp',
      'fonts/android/FontCacheAndroidTest.cpp',
      'geometry/FloatBoxTest.cpp',
      'geometry/FloatBoxTestHelpers.cpp',
      'geometry/FloatPolygonTest.cpp',
      'geometry/FloatRoundedRectTest.cpp',
      'geometry/LayoutRectOutsetsTest.cpp',
      'geometry/RegionTest.cpp',
      'graphics/GraphicsContextTest.cpp',
      'graphics/RecordingImageBufferSurfaceTest.cpp',
      'graphics/ThreadSafeDataTransportTest.cpp',
      'graphics/filters/FilterOperationsTest.cpp',
      'graphics/filters/ImageFilterBuilderTest.cpp',
      'graphics/gpu/DrawingBufferTest.cpp',
      'graphics/test/MockDiscardablePixelRef.h',
      'image-decoders/ImageDecoderTest.cpp',
      'mac/ScrollElasticityControllerTest.mm',
      'network/FormDataTest.cpp',
      'network/HTTPParsersTest.cpp',
      'network/ResourceRequestTest.cpp',
      'scheduler/SchedulerTest.cpp',
      'scroll/ScrollableAreaTest.cpp',
      'testing/ArenaTestHelpers.h',
      'testing/TreeTestHelpers.cpp',
      'testing/TreeTestHelpers.h',
      'text/BidiResolverTest.cpp',
      'text/DateTimeFormatTest.cpp',
      'text/SegmentedStringTest.cpp',
      'text/UnicodeUtilitiesTest.cpp',
      'transforms/TransformOperationsTest.cpp',
      'transforms/TransformationMatrixTest.cpp',
      'weborigin/DatabaseIdentifierTest.cpp',
      'weborigin/KURLTest.cpp',
      'weborigin/OriginAccessEntryTest.cpp',
      'weborigin/SchemeRegistryTest.cpp',
      'weborigin/SecurityOriginTest.cpp',
      'weborigin/SecurityPolicyTest.cpp',
    ],
    # NOTE: these are legacy unit tests, do not add more!
    'platform_web_unittest_files': [
      'graphics/BitmapImageTest.cpp',
      'graphics/Canvas2DLayerBridgeTest.cpp',
      'graphics/Canvas2DLayerManagerTest.cpp',
      'graphics/DeferredImageDecoderTest.cpp',
      'graphics/GraphicsLayerTest.cpp',
      'graphics/ImageDecodingStoreTest.cpp',
      'graphics/ImageFrameGeneratorTest.cpp',
      'graphics/ImageLayerChromiumTest.cpp',
      'graphics/test/MockImageDecoder.h',
      'graphics/test/MockWebGraphicsContext3D.h',
      'image-decoders/gif/GIFImageDecoderTest.cpp',
      'image-decoders/jpeg/JPEGImageDecoderTest.cpp',
      'image-decoders/webp/WEBPImageDecoderTest.cpp',
    ],
  },
}