diff --git a/chromium_version.txt b/chromium_version.txt index 84071d89..548f8b06 100644 --- a/chromium_version.txt +++ b/chromium_version.txt @@ -1 +1 @@ -138.0.7204.100 +138.0.7204.157 diff --git a/patches/core/ungoogled-chromium/fix-building-with-prunned-binaries.patch b/patches/core/ungoogled-chromium/fix-building-with-prunned-binaries.patch index a2fd9b40..73acb9d1 100644 --- a/patches/core/ungoogled-chromium/fix-building-with-prunned-binaries.patch +++ b/patches/core/ungoogled-chromium/fix-building-with-prunned-binaries.patch @@ -930,7 +930,7 @@ "//chrome/browser/search/background", "//chrome/browser/search/background:constants", "//chrome/browser/search_engine_choice:unit_tests", -@@ -8413,7 +8405,6 @@ test("unit_tests") { +@@ -8414,7 +8406,6 @@ test("unit_tests") { "//components/webapps/browser", "//services/metrics/public/cpp:ukm_builders", "//services/network:test_support", diff --git a/patches/extra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch b/patches/extra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch index 7a125c11..0f37b6d3 100644 --- a/patches/extra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch +++ b/patches/extra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch @@ -41,7 +41,7 @@ #include "base/feature_list.h" #include "base/format_macros.h" #include "base/functional/bind.h" -@@ -566,6 +567,15 @@ AutocompleteController::AutocompleteCont +@@ -568,6 +569,15 @@ AutocompleteController::AutocompleteCont steady_state_omnibox_position_( metrics::OmniboxEventProto::UNKNOWN_POSITION) { provider_types &= ~OmniboxFieldTrial::GetDisabledProviderTypes(); diff --git a/utils/_extraction.py b/utils/_extraction.py index f8e46b0e..410916c3 100644 --- a/utils/_extraction.py +++ b/utils/_extraction.py @@ -96,7 +96,7 @@ def _extract_tar_with_7z(binary, archive_path, output_dir, relative_to): output_dir / relative_to) raise FileExistsError() cmd1 = (binary, 'x', str(archive_path), '-so') - cmd2 = (binary, 'x', '-si', '-aoa', '-ttar', f'-o{str(output_dir)}') + cmd2 = (binary, 'x', '-si', '-snld', '-aoa', '-ttar', f'-o{str(output_dir)}') get_logger().debug('7z command line: %s | %s', ' '.join(cmd1), ' '.join(cmd2)) proc1 = subprocess.Popen(cmd1, stdout=subprocess.PIPE) #pylint: disable=consider-using-with