gitextract_xa9r_bzi/ ├── .cirrus.yml ├── .cirrus_Dockerfile ├── .cirrus_requirements.txt ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bugreport.md │ │ ├── create-an--updating-to-chromium-x-x-x-x-.md │ │ ├── feature_request.md │ │ └── other.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .style.yapf ├── 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.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 │ ├── 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 │ │ ├── debian/ │ │ │ └── disable/ │ │ │ └── unrar.patch │ │ ├── inox-patchset/ │ │ │ ├── 0001-fix-building-without-safebrowsing.patch │ │ │ ├── 0003-disable-autofill-download-manager.patch │ │ │ ├── 0005-disable-default-extensions.patch │ │ │ ├── 0007-disable-web-resource-service.patch │ │ │ ├── 0009-disable-google-ipv6-probes.patch │ │ │ ├── 0014-disable-translation-lang-fetch.patch │ │ │ ├── 0015-disable-update-pings.patch │ │ │ ├── 0017-disable-new-avatar-menu.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-trk-and-subdomains.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-profile-avatar-downloading.patch │ │ ├── disable-signin.patch │ │ ├── disable-translate.patch │ │ ├── disable-untraceable-urls.patch │ │ ├── disable-webrtc-log-uploader.patch │ │ ├── disable-webstore-urls.patch │ │ ├── fix-building-without-enabling-reporting.patch │ │ ├── fix-building-without-one-click-signin.patch │ │ ├── fix-building-without-safebrowsing.patch │ │ ├── fix-learn-doubleclick-hsts.patch │ │ ├── remove-unused-preferences-fields.patch │ │ ├── replace-google-search-engine-with-nosearch.patch │ │ └── use-local-devtools-files.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/ │ │ │ │ ├── android.patch │ │ │ │ ├── device-notifications.patch │ │ │ │ ├── fuzzers.patch │ │ │ │ ├── google-api-warning.patch │ │ │ │ └── welcome-page.patch │ │ │ ├── fixes/ │ │ │ │ └── connection-message.patch │ │ │ ├── gn/ │ │ │ │ └── parallel.patch │ │ │ └── warnings/ │ │ │ └── initialization.patch │ │ ├── inox-patchset/ │ │ │ ├── 0006-modify-default-prefs.patch │ │ │ ├── 0008-restore-classic-ntp.patch │ │ │ ├── 0011-add-duckduckgo-search-engine.patch │ │ │ ├── 0013-disable-missing-key-warning.patch │ │ │ ├── 0016-chromium-sandbox-pie.patch │ │ │ ├── 0018-disable-first-run-behaviour.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 │ │ │ ├── net-cert-increase-default-key-length-for-newly-gener.patch │ │ │ ├── prefs-always-prompt-for-download-directory-by-defaul.patch │ │ │ ├── prefs-only-keep-cookies-until-exit.patch │ │ │ └── updater-disable-auto-update.patch │ │ └── ungoogled-chromium/ │ │ ├── add-components-ungoogled.patch │ │ ├── add-flag-for-pdf-plugin-name.patch │ │ ├── add-flag-for-search-engine-collection.patch │ │ ├── add-flag-to-configure-extension-downloading.patch │ │ ├── add-flag-to-disable-beforeunload.patch │ │ ├── add-flag-to-force-punycode-hostnames.patch │ │ ├── add-flag-to-hide-crashed-bubble.patch │ │ ├── add-flag-to-scroll-tabs.patch │ │ ├── add-flag-to-show-avatar-button.patch │ │ ├── add-flag-to-stack-tabs.patch │ │ ├── add-ipv6-probing-option.patch │ │ ├── add-suggestions-url-field.patch │ │ ├── default-to-https-scheme.patch │ │ ├── disable-download-quarantine.patch │ │ ├── disable-formatting-in-omnibox.patch │ │ ├── disable-intranet-redirect-detector.patch │ │ ├── disable-webgl-renderer-info.patch │ │ ├── enable-checkbox-external-protocol.patch │ │ ├── enable-page-saving-on-more-pages.patch │ │ ├── enable-paste-and-go-new-tab-button.patch │ │ ├── fix-building-without-mdns-and-service-discovery.patch │ │ ├── popups-to-tabs.patch │ │ ├── remove-disable-setuid-sandbox-as-bad-flag.patch │ │ └── searx.patch │ └── series ├── pruning.list ├── revision.txt └── utils/ ├── .coveragerc ├── __init__.py ├── _common.py ├── _extraction.py ├── domain_substitution.py ├── downloads.py ├── filescfg.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