gitextract_kl8f_uin/ ├── .cirrus.yml ├── .cirrus_Dockerfile ├── .cirrus_requirements.txt ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bugreport.yml │ │ ├── create-an--updating-to-chromium-x-x-x-x-.md │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── new_version_check.yml │ ├── release-on-tag.yml │ └── stale.yml ├── .gitignore ├── .style.yapf ├── CODEOWNERS ├── LICENSE ├── README.md ├── SUPPORT.md ├── chromium_version.txt ├── devutils/ │ ├── .coveragerc │ ├── README.md │ ├── __init__.py │ ├── check_all_code.sh │ ├── check_downloads_ini.py │ ├── check_files_exist.py │ ├── check_gn_flags.py │ ├── check_patch_files.py │ ├── print_tag_version.sh │ ├── pytest.ini │ ├── run_devutils_pylint.py │ ├── run_devutils_tests.sh │ ├── run_devutils_yapf.sh │ ├── run_other_pylint.py │ ├── run_other_yapf.sh │ ├── run_utils_pylint.py │ ├── run_utils_tests.sh │ ├── run_utils_yapf.sh │ ├── set_quilt_vars.fish │ ├── set_quilt_vars.sh │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_check_patch_files.py │ │ └── test_validate_patches.py │ ├── third_party/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── unidiff/ │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── constants.py │ │ ├── errors.py │ │ └── patch.py │ ├── update_lists.py │ ├── update_platform_patches.py │ ├── validate_config.py │ └── validate_patches.py ├── docs/ │ ├── building.md │ ├── contributing.md │ ├── default_settings.md │ ├── design.md │ ├── developing.md │ ├── flags.md │ ├── platforms.md │ └── repo_management.md ├── domain_regex.list ├── domain_substitution.list ├── downloads.ini ├── flags.gn ├── patches/ │ ├── core/ │ │ ├── bromite/ │ │ │ └── disable-fetching-field-trials.patch │ │ ├── inox-patchset/ │ │ │ ├── 0001-fix-building-without-safebrowsing.patch │ │ │ ├── 0003-disable-autofill-download-manager.patch │ │ │ ├── 0005-disable-default-extensions.patch │ │ │ ├── 0015-disable-update-pings.patch │ │ │ └── 0021-disable-rlz.patch │ │ ├── iridium-browser/ │ │ │ ├── all-add-trk-prefixes-to-possibly-evil-connections.patch │ │ │ ├── safe_browsing-disable-incident-reporting.patch │ │ │ └── safe_browsing-disable-reporting-of-safebrowsing-over.patch │ │ └── ungoogled-chromium/ │ │ ├── block-requests.patch │ │ ├── block-trk-and-subdomains.patch │ │ ├── build-with-wasm-rollup.patch │ │ ├── disable-crash-reporter.patch │ │ ├── disable-domain-reliability.patch │ │ ├── disable-fonts-googleapis-references.patch │ │ ├── disable-gaia.patch │ │ ├── disable-gcm.patch │ │ ├── disable-google-host-detection.patch │ │ ├── disable-mei-preload.patch │ │ ├── disable-network-time-tracker.patch │ │ ├── disable-privacy-sandbox.patch │ │ ├── disable-profile-avatar-downloading.patch │ │ ├── disable-untraceable-urls.patch │ │ ├── disable-webrtc-log-uploader.patch │ │ ├── disable-webstore-urls.patch │ │ ├── doh-changes.patch │ │ ├── extensions-manifestv2.patch │ │ ├── fix-building-with-prunned-binaries.patch │ │ ├── fix-building-without-safebrowsing.patch │ │ ├── fix-learn-doubleclick-hsts.patch │ │ ├── move-js-optimizer-unfamiliar-sites.patch │ │ ├── remove-f1-shortcut.patch │ │ ├── remove-unused-preferences-fields.patch │ │ ├── replace-google-search-engine-with-nosearch.patch │ │ └── toggle-translation-via-switch.patch │ ├── extra/ │ │ ├── bromite/ │ │ │ ├── fingerprinting-flags-client-rects-and-measuretext.patch │ │ │ ├── flag-fingerprinting-canvas-image-data-noise.patch │ │ │ └── flag-max-connections-per-host.patch │ │ ├── debian/ │ │ │ └── disable/ │ │ │ └── google-api-warning.patch │ │ ├── inox-patchset/ │ │ │ ├── 0006-modify-default-prefs.patch │ │ │ ├── 0008-restore-classic-ntp.patch │ │ │ ├── 0013-disable-missing-key-warning.patch │ │ │ ├── 0016-chromium-sandbox-pie.patch │ │ │ └── 0019-disable-battery-status-service.patch │ │ ├── iridium-browser/ │ │ │ ├── Remove-EV-certificates.patch │ │ │ ├── browser-disable-profile-auto-import-on-first-run.patch │ │ │ ├── mime_util-force-text-x-suse-ymp-to-be-downloaded.patch │ │ │ ├── prefs-always-prompt-for-download-directory-by-defaul.patch │ │ │ └── updater-disable-auto-update.patch │ │ └── ungoogled-chromium/ │ │ ├── add-components-ungoogled.patch │ │ ├── add-credits.patch │ │ ├── add-extra-channel-info.patch │ │ ├── add-flag-for-bookmark-bar-ntp.patch │ │ ├── add-flag-for-close-confirmation.patch │ │ ├── add-flag-for-custom-ntp.patch │ │ ├── add-flag-for-disabling-link-drag.patch │ │ ├── add-flag-for-grab-handle.patch │ │ ├── add-flag-for-incognito-themes.patch │ │ ├── add-flag-for-omnibox-autocomplete-filtering.patch │ │ ├── add-flag-for-qr-generator.patch │ │ ├── add-flag-for-search-engine-collection.patch │ │ ├── add-flag-for-tab-hover-cards.patch │ │ ├── add-flag-for-tabsearch-button.patch │ │ ├── add-flag-to-change-http-accept-header.patch │ │ ├── add-flag-to-clear-data-on-exit.patch │ │ ├── add-flag-to-close-window-with-last-tab.patch │ │ ├── add-flag-to-configure-extension-downloading.patch │ │ ├── add-flag-to-convert-popups-to-tabs.patch │ │ ├── add-flag-to-disable-beforeunload.patch │ │ ├── add-flag-to-disable-local-history-expiration.patch │ │ ├── add-flag-to-disable-sharing-hub.patch │ │ ├── add-flag-to-disable-tls-grease.patch │ │ ├── add-flag-to-force-punycode-hostnames.patch │ │ ├── add-flag-to-hide-crashed-bubble.patch │ │ ├── add-flag-to-hide-extensions-menu.patch │ │ ├── add-flag-to-hide-fullscreen-exit-ui.patch │ │ ├── add-flag-to-hide-tab-close-buttons.patch │ │ ├── add-flag-to-increase-incognito-storage-quota.patch │ │ ├── add-flag-to-reduce-system-info.patch │ │ ├── add-flag-to-remove-client-hints.patch │ │ ├── add-flag-to-scroll-tabs.patch │ │ ├── add-flag-to-show-avatar-button.patch │ │ ├── add-flag-to-spoof-webgl-renderer-info.patch │ │ ├── add-flags-for-existing-switches.patch │ │ ├── add-flags-for-referrer-customization.patch │ │ ├── add-ipv6-probing-option.patch │ │ ├── add-suggestions-url-field.patch │ │ ├── add-ungoogled-flag-headers.patch │ │ ├── default-webrtc-ip-handling-policy.patch │ │ ├── disable-ai-search-shortcuts.patch │ │ ├── disable-chromelabs.patch │ │ ├── disable-dial-repeating-discovery.patch │ │ ├── disable-download-quarantine.patch │ │ ├── disable-fedcm-by-default.patch │ │ ├── disable-formatting-in-omnibox.patch │ │ ├── disable-intranet-redirect-detector.patch │ │ ├── enable-certificate-transparency-and-add-flag.patch │ │ ├── enable-extra-locales.patch │ │ ├── enable-menu-on-reload-button.patch │ │ ├── enable-page-saving-on-more-pages.patch │ │ ├── enable-paste-and-go-new-tab-button.patch │ │ ├── first-run-page.patch │ │ ├── fix-building-without-mdns-and-service-discovery.patch │ │ ├── fix-distilled-icons.patch │ │ ├── keep-expired-flags.patch │ │ ├── prepopulated-search-engines.patch │ │ ├── remove-disable-setuid-sandbox-as-bad-flag.patch │ │ ├── remove-pac-size-limit.patch │ │ └── remove-uneeded-ui.patch │ ├── series │ └── upstream-fixes/ │ └── missing-dependencies.patch ├── pruning.list ├── revision.txt ├── shell.nix └── utils/ ├── .coveragerc ├── __init__.py ├── _common.py ├── _extraction.py ├── clone.py ├── depot_tools.patch ├── domain_substitution.py ├── downloads.py ├── filescfg.py ├── gsutil.patch ├── make_domsub_script.py ├── patches.py ├── prune_binaries.py ├── pytest.ini ├── tests/ │ ├── __init__.py │ ├── test_domain_substitution.py │ └── test_patches.py └── third_party/ ├── README.md ├── __init__.py └── schema.py