summaryrefslogtreecommitdiff
path: root/chromium/third_party/WebKit/Source/build/scripts/scripts.gypi
blob: 2cf0a34fee41a5f8372a038f4ed2f51297d0afe4 (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
{
    'variables': {
        'scripts_for_in_files': [
            # jinja2/__init__.py contains version string, so sufficient as
            # dependency for whole jinja2 package
            '<(DEPTH)/third_party/jinja2/__init__.py',
            '<(DEPTH)/third_party/markupsafe/__init__.py',  # jinja2 dep
            'hasher.py',
            'in_file.py',
            'in_generator.py',
            'license.py',
            'name_macros.py',
            'name_utilities.py',
            'template_expander.py',
            'templates/macros.tmpl',
        ],
        'make_event_factory_files': [
            '<@(scripts_for_in_files)',
            'make_event_factory.py',
            'templates/EventFactory.cpp.tmpl',
        ],
        'make_names_files': [
            '<@(scripts_for_in_files)',
            'make_names.py',
            'templates/MakeNames.cpp.tmpl',
            'templates/MakeNames.h.tmpl',
        ],
        'make_qualified_names_files': [
            '<@(scripts_for_in_files)',
            'make_qualified_names.py',
            'templates/MakeQualifiedNames.cpp.tmpl',
            'templates/MakeQualifiedNames.h.tmpl',
        ],
        'make_element_factory_files': [
            '<@(make_qualified_names_files)',
            'make_element_factory.py',
            'templates/ElementFactory.cpp.tmpl',
            'templates/ElementFactory.h.tmpl',
            'templates/ElementWrapperFactory.cpp.tmpl',
            'templates/ElementWrapperFactory.h.tmpl',
        ],
        'conditions': [
            ['OS=="win"', {
                # Using native perl rather than cygwin perl cuts execution time
                # of idl preprocessing rules by a bit more than 50%.
                'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
                'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
                'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
                # Using cl instead of cygwin gcc cuts the processing time from
                # 1m58s to 0m52s.
                'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
              },{
                'perl_exe': 'perl',
                'gperf_exe': 'gperf',
                'bison_exe': 'bison',
                # We specify a preprocess so it happens locally and won't get
                # distributed to goma.
                # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
                # use /usr/bin/clang once we require Xcode 4.x.
                'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
              }],
         ],
    },
}