summaryrefslogtreecommitdiffstats
path: root/webkit/webcore.gyp
blob: b8dc8d03957c56f7fa5c8d91e8918e132967543a (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
# Copyright (c) 2009 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.

{
  'includes': [
    'features.gypi',
    '../third_party/WebKit/WebCore/WebCore.gypi',
  ],
  'variables': {
    'webcore_include_dirs': [
      '../third_party/WebKit/WebCore',
      '../third_party/WebKit/WebCore/accessibility',
      '../third_party/WebKit/WebCore/accessibility/chromium',
      '../third_party/WebKit/WebCore/bindings/v8',
      '../third_party/WebKit/WebCore/bindings/v8/custom',
      '../third_party/WebKit/WebCore/bridge',
      '../third_party/WebKit/WebCore/css',
      '../third_party/WebKit/WebCore/dom',
      '../third_party/WebKit/WebCore/dom/default',
      '../third_party/WebKit/WebCore/editing',
      '../third_party/WebKit/WebCore/history',
      '../third_party/WebKit/WebCore/html',
      '../third_party/WebKit/WebCore/html/canvas',
      '../third_party/WebKit/WebCore/inspector',
      '../third_party/WebKit/WebCore/loader',
      '../third_party/WebKit/WebCore/loader/appcache',
      '../third_party/WebKit/WebCore/loader/archive',
      '../third_party/WebKit/WebCore/loader/icon',
      '../third_party/WebKit/WebCore/notifications',
      '../third_party/WebKit/WebCore/page',
      '../third_party/WebKit/WebCore/page/animation',
      '../third_party/WebKit/WebCore/page/chromium',
      '../third_party/WebKit/WebCore/platform',
      '../third_party/WebKit/WebCore/platform/animation',
      '../third_party/WebKit/WebCore/platform/chromium',
      '../third_party/WebKit/WebCore/platform/graphics',
      '../third_party/WebKit/WebCore/platform/graphics/chromium',
      '../third_party/WebKit/WebCore/platform/graphics/opentype',
      '../third_party/WebKit/WebCore/platform/graphics/skia',
      '../third_party/WebKit/WebCore/platform/graphics/transforms',
      '../third_party/WebKit/WebCore/platform/image-decoders',
      '../third_party/WebKit/WebCore/platform/image-decoders/bmp',
      '../third_party/WebKit/WebCore/platform/image-decoders/gif',
      '../third_party/WebKit/WebCore/platform/image-decoders/ico',
      '../third_party/WebKit/WebCore/platform/image-decoders/jpeg',
      '../third_party/WebKit/WebCore/platform/image-decoders/png',
      '../third_party/WebKit/WebCore/platform/image-decoders/skia',
      '../third_party/WebKit/WebCore/platform/image-decoders/xbm',
      '../third_party/WebKit/WebCore/platform/image-encoders/skia',
      '../third_party/WebKit/WebCore/platform/mock',
      '../third_party/WebKit/WebCore/platform/network',
      '../third_party/WebKit/WebCore/platform/network/chromium',
      '../third_party/WebKit/WebCore/platform/sql',
      '../third_party/WebKit/WebCore/platform/text',
      '../third_party/WebKit/WebCore/plugins',
      '../third_party/WebKit/WebCore/rendering',
      '../third_party/WebKit/WebCore/rendering/style',
      '../third_party/WebKit/WebCore/storage',
      '../third_party/WebKit/WebCore/svg',
      '../third_party/WebKit/WebCore/svg/animation',
      '../third_party/WebKit/WebCore/svg/graphics',
      '../third_party/WebKit/WebCore/workers',
      '../third_party/WebKit/WebCore/xml',
    ],
    'conditions': [
      ['OS=="mac"', {
        'webcore_include_dirs+': [
          # platform/graphics/cg and mac needs to come before
          # platform/graphics/chromium so that the Mac build picks up the
          # version of ImageBufferData.h in the cg directory and
          # FontPlatformData.h in the mac directory.  The + prepends this
          # directory to the list.
          # TODO(port): This shouldn't need to be prepended.
          # TODO(port): Eliminate dependency on platform/graphics/mac and
          # related directories.
          # platform/graphics/cg may need to stick around, though.
          '../third_party/WebKit/WebCore/platform/graphics/cg',
          '../third_party/WebKit/WebCore/platform/graphics/mac',
        ],
        'webcore_include_dirs': [
          # TODO(port): Eliminate dependency on platform/mac and related
          # directories.
          '../third_party/WebKit/WebCore/loader/archive/cf',
          '../third_party/WebKit/WebCore/platform/mac',
          '../third_party/WebKit/WebCore/platform/text/mac',
        ],
      }],
      ['OS=="win"', {
        'webcore_include_dirs': [
          '../third_party/WebKit/WebCore/page/win',
          '../third_party/WebKit/WebCore/platform/graphics/win',
          '../third_party/WebKit/WebCore/platform/text/win',
          '../third_party/WebKit/WebCore/platform/win',
        ],
      }],
    ],
  },
  'targets': [
    {
      'target_name': 'webcore',
      'type': '<(library)',
      'msvs_guid': '1C16337B-ACF3-4D03-AA90-851C5B5EADA6',
      'dependencies': [
        'javascriptcore.gyp:pcre',
        'javascriptcore.gyp:wtf',
        '../build/temp_gyp/googleurl.gyp:googleurl',
        '../skia/skia.gyp:skia',
        '../third_party/libjpeg/libjpeg.gyp:libjpeg',
        '../third_party/libpng/libpng.gyp:libpng',
        '../third_party/libxml/libxml.gyp:libxml',
        '../third_party/libxslt/libxslt.gyp:libxslt',
        '../third_party/npapi/npapi.gyp:npapi',
        '../third_party/sqlite/sqlite.gyp:sqlite',
      ],
      'defines': [
        'WEBCORE_NAVIGATOR_VENDOR="Google Inc."', 
      ],
      'conditions': [
        ['OS=="linux"', {
          'defines': [
            # Mozilla on Linux effectively uses uname -sm, but when running
            # 32-bit x86 code on an x86_64 processor, it uses
            # "Linux i686 (x86_64)".  Matching that would require making a
            # run-time determination.
            'WEBCORE_NAVIGATOR_PLATFORM="Linux i686"',
          ],
        }],
        ['OS=="mac"', {
          'defines': [
            # Match Safari and Mozilla on Mac x86.
            'WEBCORE_NAVIGATOR_PLATFORM="MacIntel"',

            # Chromium's version of WebCore includes the following Objective-C
            # classes. The system-provided WebCore framework may also provide
            # these classes. Because of the nature of Objective-C binding
            # (dynamically at runtime), it's possible for the Chromium-provided
            # versions to interfere with the system-provided versions.  This may
            # happen when a system framework attempts to use WebCore.framework,
            # such as when converting an HTML-flavored string to an
            # NSAttributedString.  The solution is to force Objective-C class
            # names that would conflict to use alternate names.

            # TODO(mark) This list will hopefully shrink but may also grow.
            # Periodically run:
            # nm libwebcore.a | grep -E '[atsATS] ([+-]\[|\.objc_class_name)'
            # and make sure that everything listed there has the alternate
            # ChromiumWebCoreObjC name, and that nothing extraneous is listed
            # here. If all Objective-C can be eliminated from Chromium's WebCore
            # library, these defines should be removed entirely.
            # TODO(yaar) move these out of command line defines.
            'ScrollbarPrefsObserver=ChromiumWebCoreObjCScrollbarPrefsObserver',
            'WebCoreRenderThemeNotificationObserver=ChromiumWebCoreObjCWebCoreRenderThemeNotificationObserver',
            'WebFontCache=ChromiumWebCoreObjCWebFontCache',
          ],
        }],
        ['OS=="win"', {
          'defines': [
            # Match Safari and Mozilla on Windows.
            'WEBCORE_NAVIGATOR_PLATFORM="Win32"',
          ],
          'dependencies': [
            # Needed on windows for some actions and rules
            '../build/win/system.gyp:cygwin'
          ],
        }],
      ], 
      'actions': [
        # Actions to build derived sources.
        {
          'action_name': 'CSSPropertyNames',
          'inputs': [
            '../third_party/WebKit/WebCore/css/makeprop.pl',
            '../third_party/WebKit/WebCore/css/CSSPropertyNames.in',
            '../third_party/WebKit/WebCore/css/SVGCSSPropertyNames.in',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/CSSPropertyNames.cpp',
            '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSPropertyNames.h',
          ],
          'action': ['python', 'build/action_csspropertynames.py', '<@(_outputs)', '--', '<@(_inputs)'],
        },
        {
          'action_name': 'CSSValueKeywords',
          'inputs': [
            '../third_party/WebKit/WebCore/css/makevalues.pl',
            '../third_party/WebKit/WebCore/css/CSSValueKeywords.in',
            '../third_party/WebKit/WebCore/css/SVGCSSValueKeywords.in',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/CSSValueKeywords.c',
            '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.h',
          ],
          'action': ['python', 'build/action_cssvaluekeywords.py', '<@(_outputs)', '--', '<@(_inputs)'],
        },
        {
          'action_name': 'HTMLNames',
          'inputs': [
            '../third_party/WebKit/WebCore/dom/make_names.pl',
            '../third_party/WebKit/WebCore/html/HTMLTagNames.in',
            '../third_party/WebKit/WebCore/html/HTMLAttributeNames.in',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/HTMLNames.cpp',
            '<(SHARED_INTERMEDIATE_DIR)/webkit/HTMLNames.h',
            '<(INTERMEDIATE_DIR)/HTMLElementFactory.cpp',
            # Pass --wrapperFactory to make_names to get these (JSC build?)
            #'<(INTERMEDIATE_DIR)/JSHTMLElementWrapperFactory.cpp',
            #'<(INTERMEDIATE_DIR)/JSHTMLElementWrapperFactory.h',
          ],
          'action': ['python', 'build/action_makenames.py', '<@(_outputs)', '--', '<@(_inputs)', '--', '--factory', '--extraDefines', '<(feature_defines)'],
          'process_outputs_as_sources': 1,
        },
        {
          'action_name': 'SVGNames',
          'inputs': [
            '../third_party/WebKit/WebCore/dom/make_names.pl',
            '../third_party/WebKit/WebCore/svg/svgtags.in',
            '../third_party/WebKit/WebCore/svg/svgattrs.in',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/SVGNames.cpp',
            '<(INTERMEDIATE_DIR)/SVGNames.h',
            '<(INTERMEDIATE_DIR)/SVGElementFactory.cpp',
            '<(INTERMEDIATE_DIR)/SVGElementFactory.h',
            # Pass --wrapperFactory to make_names to get these (JSC build?)
            #'<(INTERMEDIATE_DIR)/JSSVGElementWrapperFactory.cpp',
            #'<(INTERMEDIATE_DIR)/JSSVGElementWrapperFactory.h',
          ],
          'action': ['python', 'build/action_makenames.py', '<@(_outputs)', '--', '<@(_inputs)', '--', '--factory', '--extraDefines', '<(feature_defines)'],
          'process_outputs_as_sources': 1,
        },
        {
          'action_name': 'UserAgentStyleSheets',
          'inputs': [
            '../third_party/WebKit/WebCore/css/make-css-file-arrays.pl',
            '../third_party/WebKit/WebCore/css/html.css',
            '../third_party/WebKit/WebCore/css/quirks.css',
            '../third_party/WebKit/WebCore/css/view-source.css',
            '../third_party/WebKit/WebCore/css/themeChromiumLinux.css',
            '../third_party/WebKit/WebCore/css/themeWin.css',
            '../third_party/WebKit/WebCore/css/themeWinQuirks.css',
            '../third_party/WebKit/WebCore/css/svg.css',
            '../third_party/WebKit/WebCore/css/mediaControls.css',
            '../third_party/WebKit/WebCore/css/mediaControlsChromium.css',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/UserAgentStyleSheets.h',
            '<(INTERMEDIATE_DIR)/UserAgentStyleSheetsData.cpp',
          ],
          'action': ['python', 'build/action_useragentstylesheets.py', '<@(_outputs)', '--', '<@(_inputs)'],
          'process_outputs_as_sources': 1,
        },
        {
          'action_name': 'XLinkNames',
          'inputs': [
            '../third_party/WebKit/WebCore/dom/make_names.pl',
            '../third_party/WebKit/WebCore/svg/xlinkattrs.in',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/XLinkNames.cpp',
            '<(INTERMEDIATE_DIR)/XLinkNames.h',
          ],
          'action': ['python', 'build/action_makenames.py', '<@(_outputs)', '--', '<@(_inputs)', '--', '--extraDefines', '<(feature_defines)'],
          'process_outputs_as_sources': 1,
        },
        {
          'action_name': 'XMLNames',
          'inputs': [
            '../third_party/WebKit/WebCore/dom/make_names.pl',
            '../third_party/WebKit/WebCore/xml/xmlattrs.in',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/XMLNames.cpp',
            '<(INTERMEDIATE_DIR)/XMLNames.h',
          ],
          'action': ['python', 'build/action_makenames.py', '<@(_outputs)', '--', '<@(_inputs)', '--', '--extraDefines', '<(feature_defines)'],
          'process_outputs_as_sources': 1,
        },
        {
          'action_name': 'tokenizer',
          'inputs': [
            '../third_party/WebKit/WebCore/css/maketokenizer',
            '../third_party/WebKit/WebCore/css/tokenizer.flex',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/tokenizer.cpp',
          ],
          'action': ['python', 'build/action_maketokenizer.py', '<@(_outputs)', '--', '<@(_inputs)'],
        },
      ],
      'rules': [
        # Rules to build derived sources.
        {
          'rule_name': 'bison',
          'extension': 'y',
          'outputs': [
            '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).cpp',
            '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).h'
          ],
          'action': ['python', 'build/rule_bison.py', '<(RULE_INPUT_PATH)', '<(INTERMEDIATE_DIR)'],
          'process_outputs_as_sources': 1,
        },
        {
          'rule_name': 'gperf',
          'extension': 'gperf',
          # gperf output is only ever #included by other source files.  As
          # such, process_outputs_as_sources is off.  Some gperf output is
          # #included as *.c and some as *.cpp.  Since there's no way to tell
          # which one will be needed in a rule definition, declare both as
          # outputs.  The harness script will generate one file and copy it to
          # the other.
          #
          # This rule places outputs in SHARED_INTERMEDIATE_DIR because glue
          # needs access to HTMLEntityNames.c.
          'outputs': [
            '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).c',
            '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).cpp',
          ],
          'action': ['python', 'build/rule_gperf.py', '<(RULE_INPUT_PATH)', '<(SHARED_INTERMEDIATE_DIR)/webkit'],
          'process_outputs_as_sources': 0,
        },
        # Rule to build generated JavaScript (V8) bindings from .idl source.
        {
          'rule_name': 'binding',
          'extension': 'idl',
          'msvs_external_rule': 1,
          'inputs': [
            '../third_party/WebKit/WebCore/bindings/scripts/generate-bindings.pl',
            '../third_party/WebKit/WebCore/bindings/scripts/CodeGenerator.pm',
            '../third_party/WebKit/WebCore/bindings/scripts/CodeGeneratorV8.pm',
            '../third_party/WebKit/WebCore/bindings/scripts/IDLParser.pm',
            '../third_party/WebKit/WebCore/bindings/scripts/IDLStructure.pm',
          ],
          'outputs': [
            '<(INTERMEDIATE_DIR)/bindings/V8<(RULE_INPUT_ROOT).cpp',
            '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8<(RULE_INPUT_ROOT).h',
          ],
          'variables': {
            'generator_include_dirs': [
              '--include', '../third_party/WebKit/WebCore/css',
              '--include', '../third_party/WebKit/WebCore/dom',
              '--include', '../third_party/WebKit/WebCore/html',
              '--include', '../third_party/WebKit/WebCore/notifications',
              '--include', '../third_party/WebKit/WebCore/page',
              '--include', '../third_party/WebKit/WebCore/plugins',
              '--include', '../third_party/WebKit/WebCore/svg',
              '--include', '../third_party/WebKit/WebCore/workers',
              '--include', '../third_party/WebKit/WebCore/xml',
            ],
          },
          'action': ['python', 'build/rule_binding.py', '<(RULE_INPUT_PATH)', '<(INTERMEDIATE_DIR)/bindings', '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings', '--', '<@(_inputs)', '--', '--defines', '<(feature_defines) LANGUAGE_JAVASCRIPT V8_BINDING', '--generator', 'V8', '<@(generator_include_dirs)'],
          # They are included by DerivedSourcesAllInOne.cpp instead.
          'process_outputs_as_sources': 0,
          'message': 'Generating binding from <(RULE_INPUT_PATH)',
        },
      ],
      'include_dirs': [
        '<(INTERMEDIATE_DIR)',
        '<(SHARED_INTERMEDIATE_DIR)/webkit',
        '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings',
        '<@(webcore_include_dirs)',
      ],
      'sources': [
        # bison rule
        '../third_party/WebKit/WebCore/css/CSSGrammar.y',
        '../third_party/WebKit/WebCore/xml/XPathGrammar.y',

        # gperf rule
        '../third_party/WebKit/WebCore/html/DocTypeStrings.gperf',
        '../third_party/WebKit/WebCore/html/HTMLEntityNames.gperf',
        '../third_party/WebKit/WebCore/platform/ColorData.gperf',

        # This file includes all the .cpp files generated from the .idl files
        # in webcore_files.
        '../third_party/WebKit/WebCore/bindings/v8/DerivedSourcesAllInOne.cpp',

        '<@(webcore_files)',

        'extensions/v8/gc_extension.cc',
        'extensions/v8/gc_extension.h',
        'extensions/v8/gears_extension.cc',
        'extensions/v8/gears_extension.h',
        'extensions/v8/interval_extension.cc',
        'extensions/v8/interval_extension.h',
        'extensions/v8/playback_extension.cc',
        'extensions/v8/playback_extension.h',
        'extensions/v8/profiler_extension.cc',
        'extensions/v8/profiler_extension.h',
        'extensions/v8/benchmarking_extension.cc',
        'extensions/v8/benchmarking_extension.h',

        # For WebCoreSystemInterface, Mac-only.
        '../third_party/WebKit/WebKit/mac/WebCoreSupport/WebSystemInterface.m',
      ],
      'sources/': [
        # Exclude JSC custom bindings.
        ['exclude', '/third_party/WebKit/WebCore/bindings/js'],

        # SVG_FILTERS only.
        ['exclude', '/third_party/WebKit/WebCore/svg/SVG(FE|Filter)[^/]*\\.idl$'],

        # Fortunately, many things can be excluded by using broad patterns.

        # Exclude things that don't apply to the Chromium platform on the basis
        # of their enclosing directories and tags at the ends of their
        # filenames.
        ['exclude', '/(android|cairo|cf|cg|curl|gtk|haiku|linux|mac|opentype|posix|qt|soup|symbian|win|wx)/'],
        ['exclude', '(?<!Chromium)(SVGAllInOne|Android|Cairo|CF|CG|Curl|Gtk|Linux|Mac|OpenType|POSIX|Posix|Qt|Safari|Soup|Symbian|Win|Wx)\\.(cpp|mm?)$'],

        # JSC-only.
        ['exclude', '/third_party/WebKit/WebCore/inspector/JavaScript[^/]*\\.cpp$'],

        # ENABLE_OFFLINE_WEB_APPLICATIONS, exclude most of webcore's impl
        ['exclude', '/third_party/WebKit/WebCore/loader/appcache/'],
        ['include', '/third_party/WebKit/WebCore/loader/appcache/ApplicationCacheHost\.h$'],
        ['include', '/third_party/WebKit/WebCore/loader/appcache/DOMApplicationCache\.(h|cpp|idl)$'],

        # SVG_FILTERS only.
        ['exclude', '/third_party/WebKit/WebCore/(platform|svg)/graphics/filters/'],
        ['exclude', '/third_party/WebKit/WebCore/svg/Filter[^/]*\\.cpp$'],
        ['exclude', '/third_party/WebKit/WebCore/svg/SVG(FE|Filter)[^/]*\\.cpp$'],

        # Exclude some DB-related files.
        ['exclude', '/third_party/WebKit/WebCore/platform/sql/SQLiteFileSystem.cpp'],
      ],
      'sources!': [
        # Custom bindings in bindings/v8/custom exist for these.
        '../third_party/WebKit/WebCore/dom/EventListener.idl',
        '../third_party/WebKit/WebCore/dom/EventTarget.idl',
        '../third_party/WebKit/WebCore/html/VoidCallback.idl',

        # JSC-only.
        '../third_party/WebKit/WebCore/inspector/JavaScriptCallFrame.idl',

        # ENABLE_GEOLOCATION only.
        '../third_party/WebKit/WebCore/page/Geolocation.idl',
        '../third_party/WebKit/WebCore/page/Geoposition.idl',
        '../third_party/WebKit/WebCore/page/PositionCallback.idl',
        '../third_party/WebKit/WebCore/page/PositionError.idl',
        '../third_party/WebKit/WebCore/page/PositionErrorCallback.idl',

        # Bindings with custom Objective-C implementations.
        '../third_party/WebKit/WebCore/page/AbstractView.idl',

        # TODO(mark): I don't know why all of these are excluded.
        # Extra SVG bindings to exclude.
        '../third_party/WebKit/WebCore/svg/ElementTimeControl.idl',
        '../third_party/WebKit/WebCore/svg/SVGAnimatedPathData.idl',
        '../third_party/WebKit/WebCore/svg/SVGComponentTransferFunctionElement.idl',
        '../third_party/WebKit/WebCore/svg/SVGExternalResourcesRequired.idl',
        '../third_party/WebKit/WebCore/svg/SVGFitToViewBox.idl',
        '../third_party/WebKit/WebCore/svg/SVGHKernElement.idl',
        '../third_party/WebKit/WebCore/svg/SVGLangSpace.idl',
        '../third_party/WebKit/WebCore/svg/SVGLocatable.idl',
        '../third_party/WebKit/WebCore/svg/SVGStylable.idl',
        '../third_party/WebKit/WebCore/svg/SVGTests.idl',
        '../third_party/WebKit/WebCore/svg/SVGTransformable.idl',
        '../third_party/WebKit/WebCore/svg/SVGViewSpec.idl',
        '../third_party/WebKit/WebCore/svg/SVGZoomAndPan.idl',

        # TODO(mark): I don't know why these are excluded, either.
        # Someone (me?) should figure it out and add appropriate comments.
        '../third_party/WebKit/WebCore/css/CSSUnknownRule.idl',

        # A few things can't be excluded by patterns.  List them individually.

        # Don't build StorageNamespace.  We have our own implementation.
        '../third_party/WebKit/WebCore/storage/StorageNamespace.cpp',

        # Use history/BackForwardListChromium.cpp instead.
        '../third_party/WebKit/WebCore/history/BackForwardList.cpp',

        # Use loader/icon/IconDatabaseNone.cpp instead.
        '../third_party/WebKit/WebCore/loader/icon/IconDatabase.cpp',

        # Use platform/KURLGoogle.cpp instead.
        '../third_party/WebKit/WebCore/platform/KURL.cpp',

        # Use platform/MIMETypeRegistryChromium.cpp instead.
        '../third_party/WebKit/WebCore/platform/MIMETypeRegistry.cpp',

        # Theme.cpp is used only if we're using USE_NEW_THEME. We are not for
        # Windows and Linux. We manually include Theme.cpp for the Mac below.
        '../third_party/WebKit/WebCore/platform/Theme.cpp',

        # Exclude some, but not all, of plugins.
        '../third_party/WebKit/WebCore/plugins/PluginDatabase.cpp',
        '../third_party/WebKit/WebCore/plugins/PluginInfoStore.cpp',
        '../third_party/WebKit/WebCore/plugins/PluginMainThreadScheduler.cpp',
        '../third_party/WebKit/WebCore/plugins/PluginPackage.cpp',
        '../third_party/WebKit/WebCore/plugins/PluginStream.cpp',
        '../third_party/WebKit/WebCore/plugins/PluginView.cpp',
        '../third_party/WebKit/WebCore/plugins/npapi.cpp',

        # Use LinkHashChromium.cpp instead
        '../third_party/WebKit/WebCore/platform/LinkHash.cpp',

        # Don't build these.
        # TODO(mark): I don't know exactly why these are excluded.  It would
        # be nice to provide more explicit comments.  Some of these do actually
        # compile.
        '../third_party/WebKit/WebCore/dom/StaticStringList.cpp',
        '../third_party/WebKit/WebCore/loader/icon/IconFetcher.cpp',
        '../third_party/WebKit/WebCore/loader/UserStyleSheetLoader.cpp',
        '../third_party/WebKit/WebCore/platform/graphics/GraphicsLayer.cpp',
        '../third_party/WebKit/WebCore/platform/graphics/RenderLayerBacking.cpp',
        '../third_party/WebKit/WebCore/platform/graphics/RenderLayerCompositor.cpp',

        # We use a multi-process version from the WebKit API.
        '../third_party/WebKit/WebCore/dom/default/PlatformMessagePortChannel.cpp',
        '../third_party/WebKit/WebCore/dom/default/PlatformMessagePortChannel.h',

      ],
      'direct_dependent_settings': {
        'include_dirs': [
          '<(SHARED_INTERMEDIATE_DIR)/webkit',
          '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings',
          '<@(webcore_include_dirs)',
        ],
        'mac_framework_dirs': [
          '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Frameworks',
        ],
      },
      'export_dependent_settings': [
        'javascriptcore.gyp:wtf',
        '../build/temp_gyp/googleurl.gyp:googleurl',
        '../skia/skia.gyp:skia',
        '../third_party/npapi/npapi.gyp:npapi',
      ],
      'link_settings': {
        'mac_bundle_resources': [
          '../third_party/WebKit/WebCore/Resources/aliasCursor.png',
          '../third_party/WebKit/WebCore/Resources/cellCursor.png',
          '../third_party/WebKit/WebCore/Resources/contextMenuCursor.png',
          '../third_party/WebKit/WebCore/Resources/copyCursor.png',
          '../third_party/WebKit/WebCore/Resources/crossHairCursor.png',
          '../third_party/WebKit/WebCore/Resources/eastResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/eastWestResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/helpCursor.png',
          '../third_party/WebKit/WebCore/Resources/linkCursor.png',
          '../third_party/WebKit/WebCore/Resources/missingImage.png',
          '../third_party/WebKit/WebCore/Resources/moveCursor.png',
          '../third_party/WebKit/WebCore/Resources/noDropCursor.png',
          '../third_party/WebKit/WebCore/Resources/noneCursor.png',
          '../third_party/WebKit/WebCore/Resources/northEastResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/northEastSouthWestResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/northResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/northSouthResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/northWestResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/northWestSouthEastResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/notAllowedCursor.png',
          '../third_party/WebKit/WebCore/Resources/progressCursor.png',
          '../third_party/WebKit/WebCore/Resources/southEastResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/southResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/southWestResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/verticalTextCursor.png',
          '../third_party/WebKit/WebCore/Resources/waitCursor.png',
          '../third_party/WebKit/WebCore/Resources/westResizeCursor.png',
          '../third_party/WebKit/WebCore/Resources/zoomInCursor.png',
          '../third_party/WebKit/WebCore/Resources/zoomOutCursor.png',
        ],
      },
      'hard_dependency': 1,
      'mac_framework_dirs': [
        '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Frameworks',
      ],
      'msvs_disabled_warnings': [
        4138, 4244, 4291, 4305, 4344, 4355, 4521, 4099,
      ],
      'scons_line_length' : 1,
      'xcode_settings': {
        # Some Mac-specific parts of WebKit won't compile without having this
        # prefix header injected.
        # TODO(mark): make this a first-class setting.
        'GCC_PREFIX_HEADER': '../third_party/WebKit/WebCore/WebCorePrefix.h',
      },
      'conditions': [
        ['javascript_engine=="v8"', {
          'dependencies': [
            '../v8/tools/gyp/v8.gyp:v8',
          ],
          'export_dependent_settings': [
            '../v8/tools/gyp/v8.gyp:v8',
          ],
        }],
        ['OS=="linux" or OS=="freebsd"', {
          'dependencies': [
            '../build/linux/system.gyp:fontconfig',
            '../build/linux/system.gyp:gtk',
          ],
          'sources': [
            '../third_party/WebKit/WebCore/platform/graphics/chromium/VDMXParser.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/chromium/HarfbuzzSkia.cpp',
          ],
          'sources/': [
            # Cherry-pick files excluded by the broader regular expressions above.
            ['include', 'third_party/WebKit/WebCore/platform/chromium/KeyCodeConversionGtk\\.cpp$'],
            ['include', 'third_party/WebKit/WebCore/platform/graphics/chromium/FontCacheLinux\\.cpp$'],
            ['include', 'third_party/WebKit/WebCore/platform/graphics/chromium/FontLinux\\.cpp$'],
            ['include', 'third_party/WebKit/WebCore/platform/graphics/chromium/FontPlatformDataLinux\\.cpp$'],
            ['include', 'third_party/WebKit/WebCore/platform/graphics/chromium/GlyphPageTreeNodeLinux\\.cpp$'],
            ['include', 'third_party/WebKit/WebCore/platform/graphics/chromium/SimpleFontDataLinux\\.cpp$'],
          ],
          'cflags': [
            # WebCore does not work with strict aliasing enabled.
            # https://bugs.webkit.org/show_bug.cgi?id=25864
            '-fno-strict-aliasing',
          ],
        }],
        ['OS=="mac"', {
          'actions': [
            {
              # Allow framework-style #include of
              # <WebCore/WebCoreSystemInterface.h>.
              'action_name': 'WebCoreSystemInterface.h',
              'inputs': [
                '../third_party/WebKit/WebCore/platform/mac/WebCoreSystemInterface.h',
              ],
              'outputs': [
                '<(INTERMEDIATE_DIR)/WebCore/WebCoreSystemInterface.h',
              ],
              'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
            },
          ],
          'include_dirs': [
            '../third_party/WebKit/WebKitLibraries',
          ],
          'sources/': [
            # Additional files from the WebCore Mac build that are presently
            # used in the WebCore Chromium Mac build too.

            # The Mac build is PLATFORM_CF but does not use CFNetwork.
            ['include', 'CF\\.cpp$'],
            ['exclude', '/network/cf/'],

            # The Mac build is PLATFORM_CG too.  platform/graphics/cg is the
            # only place that CG files we want to build are located, and not
            # all of them even have a CG suffix, so just add them by a
            # regexp matching their directory.
            ['include', '/platform/graphics/cg/[^/]*(?<!Win)?\\.(cpp|mm?)$'],

            # Use native Mac font code from WebCore.
            ['include', '/platform/(graphics/)?mac/[^/]*Font[^/]*\\.(cpp|mm?)$'],

            # Cherry-pick some files that can't be included by broader regexps.
            # Some of these are used instead of Chromium platform files, see
            # the specific exclusions in the "sources!" list below.
            ['include', '/third_party/WebKit/WebCore/loader/archive/cf/LegacyWebArchive\\.cpp$'],
            ['include', '/third_party/WebKit/WebCore/platform/graphics/mac/ColorMac\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/graphics/mac/FloatPointMac\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/graphics/mac/FloatRectMac\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/graphics/mac/FloatSizeMac\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/graphics/mac/GlyphPageTreeNodeMac\\.cpp$'],
            ['include', '/third_party/WebKit/WebCore/platform/graphics/mac/GraphicsContextMac\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/graphics/mac/IntRectMac\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/mac/BlockExceptions\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/mac/LocalCurrentGraphicsContext\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/mac/PurgeableBufferMac\\.cpp$'],
            ['include', '/third_party/WebKit/WebCore/platform/mac/ScrollbarThemeMac\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/mac/WebCoreSystemInterface\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/mac/WebCoreTextRenderer\\.mm$'],
            ['include', '/third_party/WebKit/WebCore/platform/text/mac/ShapeArabic\\.c$'],
            ['include', '/third_party/WebKit/WebCore/platform/text/mac/String(Impl)?Mac\\.mm$'],
            # Use USE_NEW_THEME on Mac.
            ['include', '/third_party/WebKit/WebCore/platform/Theme\\.cpp$'],

            ['include', '/third_party/WebKit/WebKit/mac/WebCoreSupport/WebSystemInterface\\.m$'],
          ],
          'sources!': [
            # The Mac currently uses FontCustomPlatformData.cpp from
            # platform/graphics/mac, included by regex above, instead.
            '../third_party/WebKit/WebCore/platform/graphics/chromium/FontCustomPlatformData.cpp',

            # The Mac currently uses ScrollbarThemeMac.mm, included by regex
            # above, instead of ScrollbarThemeChromium.cpp.
            '../third_party/WebKit/WebCore/platform/chromium/ScrollbarThemeChromium.cpp',

            # The Mac uses ImageSourceCG.cpp from platform/graphics/cg, included
            # by regex above, instead.
            '../third_party/WebKit/WebCore/platform/graphics/ImageSource.cpp',

            # These Skia files aren't currently built on the Mac, which uses
            # CoreGraphics directly for this portion of graphics handling.
            '../third_party/WebKit/WebCore/platform/graphics/skia/FloatPointSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/FloatRectSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/GradientSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/ImageBufferSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/ImageSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/ImageSourceSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/IntPointSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/IntRectSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/PathSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/PatternSkia.cpp',
            '../third_party/WebKit/WebCore/platform/graphics/skia/TransformationMatrixSkia.cpp',

            # RenderThemeChromiumSkia is not used on mac since RenderThemeChromiumMac
            # does not reference the Skia code that is used by Windows and Linux.
            '../third_party/WebKit/WebCore/rendering/RenderThemeChromiumSkia.cpp',

            # Skia image-decoders are also not used on mac.  CoreGraphics
            # is used directly instead.
            '../third_party/WebKit/WebCore/platform/image-decoders/ImageDecoder.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/bmp/BMPImageDecoder.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/bmp/BMPImageDecoder.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/bmp/BMPImageReader.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/bmp/BMPImageReader.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/gif/GIFImageDecoder.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/gif/GIFImageDecoder.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/gif/GIFImageReader.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/gif/GIFImageReader.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/ico/ICOImageDecoder.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/ico/ICOImageDecoder.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/png/PNGImageDecoder.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/png/PNGImageDecoder.h',
            '../third_party/WebKit/WebCore/platform/image-decoders/skia/ImageDecoderSkia.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/xbm/XBMImageDecoder.cpp',
            '../third_party/WebKit/WebCore/platform/image-decoders/xbm/XBMImageDecoder.h',
          ],
          'link_settings': {
            'libraries': [
              '../third_party/WebKit/WebKitLibraries/libWebKitSystemInterfaceLeopard.a',
            ],
          },
          'direct_dependent_settings': {
            'include_dirs': [
              '../third_party/WebKit/WebKitLibraries',
              '../third_party/WebKit/WebKit/mac/WebCoreSupport',
            ],
          },
        }],
        ['OS=="win"', {
          'dependencies': ['../build/win/system.gyp:cygwin'],
          'sources/': [
            ['exclude', 'Posix\\.cpp$'],
            ['include', '/opentype/'],
            ['include', '/TransparencyWin\\.cpp$'],
            ['include', '/SkiaFontWin\\.cpp$'],
          ],
          'defines': [
            '__PRETTY_FUNCTION__=__FUNCTION__',
          ],
          # This is needed because Event.h in this directory is blocked
          # by a system header on windows.
          'include_dirs++': ['../third_party/WebKit/WebCore/dom'],
          'direct_dependent_settings': {
            'include_dirs+++': ['../third_party/WebKit/WebCore/dom'],
          },
        }],
        ['OS!="linux" and OS!="freebsd"', {'sources/': [['exclude', '(Gtk|Linux)\\.cpp$']]}],
        ['OS!="mac"', {'sources/': [['exclude', 'Mac\\.(cpp|mm?)$']]}],
        ['OS!="win"', {
          'sources/': [
            ['exclude', 'Win\\.cpp$'],
            ['exclude', '/(Windows|Uniscribe)[^/]*\\.cpp$']
          ],
        }],
      ],
    },
  ], # targets
}