Update to Chromium version 121.0.6167.86

This commit is contained in:
Marshall Greenblatt
2024-01-30 17:27:37 -05:00
parent ce31761f51
commit c6b2e4d3d2
3 changed files with 1 additions and 19 deletions

View File

@@ -7,6 +7,6 @@
# https://bitbucket.org/chromiumembedded/cef/wiki/BranchesAndBuilding # https://bitbucket.org/chromiumembedded/cef/wiki/BranchesAndBuilding
{ {
'chromium_checkout': 'refs/tags/121.0.6167.75', 'chromium_checkout': 'refs/tags/121.0.6167.86',
'depot_tools_checkout': '6444de14d1' 'depot_tools_checkout': '6444de14d1'
} }

View File

@@ -715,11 +715,6 @@ patches = [
# https://chromium-review.googlesource.com/c/chromium/src/+/5120035 # https://chromium-review.googlesource.com/c/chromium/src/+/5120035
'name': 'base_allocator_5120035' 'name': 'base_allocator_5120035'
}, },
{
# Fix mojom_ts_generator.py error with Python 3.11.
# https://bugs.chromium.org/p/chromium/issues/detail?id=1422178
'name': 'mojo_generator_1422178'
},
{ {
# chrome: mac: Support locale configuration. # chrome: mac: Support locale configuration.
# https://github.com/chromiumembedded/cef/issues/3623 # https://github.com/chromiumembedded/cef/issues/3623

View File

@@ -1,13 +0,0 @@
diff --git mojo/public/tools/bindings/generators/mojom_ts_generator.py mojo/public/tools/bindings/generators/mojom_ts_generator.py
index 98516f03276e4..a1bda9c021c52 100644
--- mojo/public/tools/bindings/generators/mojom_ts_generator.py
+++ mojo/public/tools/bindings/generators/mojom_ts_generator.py
@@ -177,6 +177,8 @@ def _GetWebUiModulePath(module):
path = module.metadata.get('webui_module_path')
if path is None or path == '/':
return path
+ if path == '':
+ return '/'
if _IsAbsoluteChromeResourcesPath(path):
return path.rstrip('/') + '/'
return '/{}/'.format(path.strip('/'))