File: path_mappings.py

package info (click to toggle)
chromium 138.0.7204.157-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,864 kB
  • sloc: cpp: 34,936,859; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,967; 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 (234 lines) | stat: -rw-r--r-- 8,851 bytes parent folder | download | duplicates (4)
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
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import argparse
import collections
import sys
import json
import io
import os
from path_utils import isInAshFolder, getTargetPath

def _add_ui_webui_resources_mappings(path_mappings, root_gen_dir):
  # Calculate mappings for ui/webui/resources/ sub-folders that have a dedicated
  # ts_library() target. The naming of the ts_library() target is expected to
  # follow the default "build_ts" naming in the build_webui() rule. The output
  # folder is expected to be at '$root_gen_dir/ui/webui/resources/tsc/'.
  shared_ts_folders = [
      "cr_elements",
      "js",
      "mojo",
      "cr_components/app_management",
      "cr_components/certificate_manager",
      "cr_components/color_change_listener",
      "cr_components/commerce",
      "cr_components/cr_shortcut_input",
      "cr_components/customize_color_scheme_mode",
      "cr_components/customize_themes",
      "cr_components/help_bubble",
      "cr_components/history",
      "cr_components/history_embeddings",
      "cr_components/history_clusters",
      "cr_components/localized_link",
      "cr_components/managed_dialog",
      "cr_components/managed_footnote",
      "cr_components/most_visited",
      "cr_components/page_image_service",
      "cr_components/searchbox",
      "cr_components/settings_prefs",
      "cr_components/theme_color_picker",
  ]

  for c in shared_ts_folders:
    path_mappings[f'//ui/webui/resources/{c}:build_ts'] = [(
        f'//resources/{c}/*',
        f'{root_gen_dir}/ui/webui/resources/tsc/{c}/*',
    )]


def _add_third_party_polymer_mappings(path_mappings, root_src_dir):
  path_mappings[f'//third_party/polymer/v3_0:library'] = [
      ('//resources/polymer/v3_0/polymer/polymer_bundled.min.js',
       f'{root_src_dir}/third_party/polymer/v3_0/components-chromium/polymer/polymer.d.ts'
       ),
      ('//resources/polymer/v3_0/*',
       f'{root_src_dir}/third_party/polymer/v3_0/components-chromium/*')
  ]


def _add_third_party_d3_mappings(path_mappings, root_src_dir):
  path_mappings[f'//third_party/d3:library'] = [
      ('//resources/d3/d3.min.js',
       f'{root_src_dir}/third_party/d3/src/d3.d.ts'),
  ]


def _add_third_party_lit_mappings(path_mappings, root_gen_dir):
  path_mappings[f'//third_party/lit/v3_0:build_ts'] = [
      ('//resources/lit/v3_0/lit.rollup.js',
       f'{root_gen_dir}/third_party/lit/v3_0/lit.d.ts'),
  ]


# Ash-only
def _add_ash_mappings(path_mappings, root_gen_dir, root_src_dir):
  # Note: The path for this target shadows all the paths for |shared_ts_folders|
  # below. Eventually this target should be removed and everything should reside
  # in a subfolder, so that missing deps can surface during the build, similar
  # to how ui/webui/resources/ works.
  path_mappings['//ash/webui/common/resources:build_ts'] = [(
      '//resources/ash/common/*',
      f'{root_gen_dir}/ash/webui/common/resources/preprocessed/*',
  )]

  # Calculate mappings for ash/webui/common/resources/ sub-folders that have a
  # dedicated ts_library() target. The naming of the ts_library() target is
  # expected to follow the default "build_ts" naming in the build_webui() rule.
  # The output folder is expected to be at
  # '$root_gen_dir/ash/webui/common/resources/preprocessed/'.
  shared_ts_folders = [
      "cellular_setup",
      "cr_elements",
      "personalization",
      "sea_pen",

      # List more folders here as they get migrated to use build_webui().
  ]

  for c in shared_ts_folders:
    path_mappings[f'//ash/webui/common/resources/{c}:build_ts'] = [(
        f'//resources/ash/common/{c}/*',
        f'{root_gen_dir}/ash/webui/common/resources/preprocessed/{c}/*',
    )]

  path_mappings['//third_party/cros-components:cros_components_ts'] = [(
      '//resources/cros_components/*',
      f'{root_gen_dir}/ui/webui/resources/tsc/cros_components/to_be_rewritten/*',
  )]
  path_mappings['//third_party/material_web_components:library'] = [(
      '//resources/mwc/@material/*',
      f'{root_src_dir}/third_party/material_web_components/components-chromium/'
      'node_modules/@material/*',
  )]
  path_mappings['//third_party/material_web_components:bundle_lit_ts'] = [
      ('//resources/mwc/lit/index.js',
       f'{root_src_dir}/third_party/material_web_components/lit_exports.d.ts')
  ]


def GetDepToPathMappings(root_gen_dir, root_src_dir, platform):
  path_mappings = {}

  _add_ui_webui_resources_mappings(path_mappings, root_gen_dir)
  _add_third_party_d3_mappings(path_mappings, root_src_dir)
  _add_third_party_lit_mappings(path_mappings, root_gen_dir)
  _add_third_party_polymer_mappings(path_mappings, root_src_dir)

  if platform == 'chromeos_ash':
    _add_ash_mappings(path_mappings, root_gen_dir, root_src_dir)

  return path_mappings


def _is_browser_only_dep(dep):
  browser_only_deps = [
      '//ui/webui/resources/cr_elements',
      '//ui/webui/resources/cr_components/localized_link',
      '//ui/webui/resources/cr_components/managed_footnote',
  ]
  return any(dep.startswith(dep_folder) for dep_folder in browser_only_deps)


def _is_dependency_allowed(is_ash_target, raw_dep, target_path):
  # TODO: Update Ash Print Preview to use ash cr_elements.
  exceptions = [
      'chrome/browser/resources/ash/print_preview',
      'chrome/test/data/webui/chromeos/print_preview',
  ]
  if is_ash_target and _is_browser_only_dep(raw_dep):
    return target_path in exceptions

  is_ash_dep = isInAshFolder(raw_dep[2:])
  if not is_ash_dep or is_ash_target:
    return True

  # TODO(crbug.com/40946949): Remove ChromeOS dependency from browser settings
  return target_path == "chrome/browser/resources/settings"


def _write_path_mappings_file(path_mappings, output_suffix, out_dir,
                              pretty_print):
  path_mappings_filename = f'path_mappings_{output_suffix}.json'
  if not os.path.exists(out_dir):
    os.makedirs(out_dir)
  out_file_path = os.path.join(out_dir, path_mappings_filename)
  with open(out_file_path, 'w', encoding='utf-8') as map_file:
    indent = 2 if pretty_print else None
    map_file.write(json.dumps(path_mappings, indent=indent))


def main(argv):
  parser = argparse.ArgumentParser()
  parser.add_argument('--raw_deps', nargs='*')
  parser.add_argument('--root_gen_dir', required=True)
  parser.add_argument('--root_src_dir', required=True)
  parser.add_argument('--gen_dir', required=True)
  parser.add_argument('--output_suffix', required=True)
  parser.add_argument(
      '--webui_context_type',
      choices=['trusted', 'untrusted', 'relative', 'trusted_only'],
      default='trusted')
  parser.add_argument('--pretty_print', action='store_true')
  parser.add_argument('--platform',
                      choices=['other', 'ios', 'chromeos_ash'],
                      default='other')
  args = parser.parse_args(argv)

  dep_to_path_mappings = GetDepToPathMappings(
      args.root_gen_dir,
      # Sometimes root_src_dir has trailing slashes. Remove them if necessary.
      args.root_src_dir.rstrip('/'),
      args.platform)

  target_path = getTargetPath(args.gen_dir, args.root_gen_dir)
  is_ash_target = isInAshFolder(target_path)
  path_mappings = collections.defaultdict(list)

  # First, add a path mapping for '/strings.m.js', which is not tied to
  # `raw_deps` and is used extensively throughout WebUI.
  path_mappings['/strings.m.js'].append(
      f'{args.root_src_dir}/tools/typescript/definitions/strings.d.ts'.replace(
          '\\', '/'))

  # Then add path mappings that can be derived from `raw_deps`.
  for dep in args.raw_deps:
    dependencyType = 'Browser-only' if is_ash_target else 'Ash-only'
    assert _is_dependency_allowed(is_ash_target, dep, target_path), \
        f'{target_path} should not use {dependencyType} dependency {dep}.'

    if dep not in dep_to_path_mappings:
      assert not dep.startswith("//ui/webui/resources"), \
          f'Missing path mapping for \'{dep}\'. Update ' \
          '//tools/typescript/path_mappings.py accordingly.'

      # Path mappings outside of //ui/webui/resources are not inferred from
      # |args.deps| yet.
      continue

    mappings = dep_to_path_mappings[dep]
    scheme = \
        'chrome-untrusted:' if args.webui_context_type == 'untrusted' else 'chrome:'
    for (url, dir) in mappings:
      if (args.webui_context_type != 'trusted_only'):
        path_mappings[url].append(os.path.join('./', dir).replace('\\', '/'))
      if (url.startswith("//") and args.webui_context_type != 'relative'):
        path_mappings[scheme + url].append(
            os.path.join('./', dir).replace('\\', '/'))

  _write_path_mappings_file(path_mappings, args.output_suffix, args.gen_dir,
                            args.pretty_print)


if __name__ == '__main__':
  main(sys.argv[1:])