File: generate_configs.py

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (101 lines) | stat: -rwxr-xr-x 3,428 bytes parent folder | download | duplicates (6)
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
#!/usr/bin/env python
#
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Creates config files for building libwayland."""

import os
import re
import shutil
import subprocess
import tempfile


MESON = ['meson']

DEFAULT_BUILD_ARGS = [
    '-Ddocumentation=false',
    '-Dtests=false',
]


def GetAbsPath(relative_path):
    return os.path.join(os.path.abspath(os.path.dirname(__file__)), relative_path)


def PrintAndCheckCall(argv, *args, **kwargs):
    print('\n-------------------------------------------------\nRunning %s' %
          ' '.join(argv))
    c = subprocess.check_call(argv, *args, **kwargs)


def CallMesonGenerator(build_dir):
    PrintAndCheckCall(
        MESON + DEFAULT_BUILD_ARGS + [build_dir],
        cwd=GetAbsPath('src'),
        env=os.environ)


def CopyFileToDestination(file, src_dir, dest_dir):
    if not os.path.exists(dest_dir):
        os.makedirs(dest_dir)

    shutil.copy(os.path.join(src_dir, file), dest_dir)
    print("Copied %s to %s from %s" % (file, dest_dir, src_dir))

def GetProjectVersionFromMeson(filename):
    with open(filename) as f:
        return re.search(
                'project\(.*?version\s?:\s?\'(?P<version>[\d\.]+)\'.*?\)',
                f.read(), re.DOTALL).group("version")
    return None

def GetPackageVersionFromMeson(filename, module):
    with open(filename) as f:
        result = re.search(
                f'pkgconfig\.generate\(.*?name\s?:\s?\'{module}\'.*?\)',
                f.read(), re.DOTALL)
        if result:
            return re.search('version\s?:\s\'(?P<version>[\d\.]+)',
                             result.group(0)).group('version')
    return None

def UpdateWaylandVersionGni():
    versions = {
        'wayland': GetProjectVersionFromMeson('src/meson.build'),
        'wayland_egl': GetPackageVersionFromMeson('src/egl/meson.build',
                                                  'wayland-egl')
    }
    with open('wayland_version.gni', 'w') as f:
        f.write("# DO NOT MODIFY THIS FILE DIRECTLY!\n"
                "# IT IS GENERATED BY generate_configs.py\n"
                "# The version information is used when use_system_libwayland\n"
                "# is true to check system wayland package version meets\n"
                "# at least the version of third-party/wayland so that it won't\n"
                "# make any compile error with chromium\n")
        for pkg, version in versions.items():
            if not version:
                raise Exception(f"Failed to get {pkg} version")
            f.write(f"{pkg}_version = \"{version}\"\n")
    print("Updated wayland_version.gni")

def main():
    # Creates a directory that will be used by meson to generate build configs.
    temp_dir = tempfile.mkdtemp()

    # Calls meson for //third_party/wayland/src and generates build files.
    CallMesonGenerator(temp_dir)
    # Copies config.h to //third_party/wayland/include
    CopyFileToDestination('config.h', temp_dir, GetAbsPath('include'))
    # Copies wayland-version.h to //third_party/wayland/include/src
    CopyFileToDestination('wayland-version.h', temp_dir + '/src', GetAbsPath('include/src'))
    # Update wayland_version.gni from meson.build file
    UpdateWaylandVersionGni()

    # Removes the directory we used for meson config.
    shutil.rmtree(temp_dir)


if __name__ == '__main__':
    main()