├── .cirrus.yml ├── .cirrus_Dockerfile ├── .cirrus_requirements.txt ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bugreport.md │ ├── create-an--updating-to-chromium-x-x-x-x-.md │ ├── feature_request.md │ └── other.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .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 ├── 0001-Add-PPC64-support-for-libdav1d.patch ├── 0001-Fix-libdav1d-compilation-on-clang-ppc.patch ├── Revert-Vulkan-Disable-global-merge-for-volk.patch ├── aw-snap-temporary-patch.patch ├── change-user-agent.patch ├── chromium-77-std-string.patch ├── 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 │ │ ├── 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-requests.patch │ │ ├── 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-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-enable-dse-memoryssa-cflag.patch │ │ ├── remove-unused-preferences-fields.patch │ │ ├── replace-google-search-engine-with-nosearch.patch │ │ ├── toggle-translation-via-switch.patch │ │ └── use-local-devtools-files.patch ├── enable-rpm-build-ungoogled-chromium.patch ├── enable-rpm-build.patch ├── enable-vaapi.patch ├── eu-strip.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 │ │ │ └── welcome-page.patch │ │ ├── fixes │ │ │ └── connection-message.patch │ │ └── gn │ │ │ └── parallel.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-extra-channel-info.patch │ │ ├── add-flag-for-bookmark-bar-ntp.patch │ │ ├── add-flag-for-omnibox-autocomplete-filtering.patch │ │ ├── add-flag-for-pdf-plugin-name.patch │ │ ├── add-flag-for-search-engine-collection.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-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 │ │ ├── add-ungoogled-flag-headers.patch │ │ ├── disable-dial-repeating-discovery.patch │ │ ├── disable-download-quarantine.patch │ │ ├── disable-formatting-in-omnibox.patch │ │ ├── disable-intranet-redirect-detector.patch │ │ ├── disable-webgl-renderer-info.patch │ │ ├── enable-default-prefetch-privacy-changes.patch │ │ ├── enable-menu-on-reload-button.patch │ │ ├── enable-page-saving-on-more-pages.patch │ │ ├── enable-paste-and-go-new-tab-button.patch │ │ ├── fix-building-without-mdns-and-service-discovery.patch │ │ ├── remove-disable-setuid-sandbox-as-bad-flag.patch │ │ ├── remove-uneeded-ui.patch │ │ └── searx.patch ├── fix-breakpad-compile.patch ├── fix-libvpx-compile.patch ├── fix-swiftshader-link.patch ├── gl-bug-workaround.patch ├── llvm-bug-workaround.patch ├── llvm-codegen.patch ├── mei_preload2.patch ├── scoped_nss_types-h-compile-fix.patch ├── series ├── skia-vsx-instructions.patch ├── xxx-ppc64le-libvpx.patch └── xxx-ppc64le-support.patch ├── ppc64le_build.bash ├── 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 /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.cirrus_Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.cirrus_Dockerfile -------------------------------------------------------------------------------- /.cirrus_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.cirrus_requirements.txt -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: leo-lb 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.github/ISSUE_TEMPLATE/bugreport.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.gitmodules -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/.style.yapf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /chromium_version.txt: -------------------------------------------------------------------------------- 1 | 89.0.4389.90 2 | -------------------------------------------------------------------------------- /devutils/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/.coveragerc -------------------------------------------------------------------------------- /devutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/README.md -------------------------------------------------------------------------------- /devutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devutils/check_all_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/check_all_code.sh -------------------------------------------------------------------------------- /devutils/check_downloads_ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/check_downloads_ini.py -------------------------------------------------------------------------------- /devutils/check_files_exist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/check_files_exist.py -------------------------------------------------------------------------------- /devutils/check_gn_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/check_gn_flags.py -------------------------------------------------------------------------------- /devutils/check_patch_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/check_patch_files.py -------------------------------------------------------------------------------- /devutils/print_tag_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/print_tag_version.sh -------------------------------------------------------------------------------- /devutils/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/pytest.ini -------------------------------------------------------------------------------- /devutils/run_devutils_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_devutils_pylint.py -------------------------------------------------------------------------------- /devutils/run_devutils_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_devutils_tests.sh -------------------------------------------------------------------------------- /devutils/run_devutils_yapf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_devutils_yapf.sh -------------------------------------------------------------------------------- /devutils/run_other_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_other_pylint.py -------------------------------------------------------------------------------- /devutils/run_other_yapf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_other_yapf.sh -------------------------------------------------------------------------------- /devutils/run_utils_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_utils_pylint.py -------------------------------------------------------------------------------- /devutils/run_utils_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_utils_tests.sh -------------------------------------------------------------------------------- /devutils/run_utils_yapf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/run_utils_yapf.sh -------------------------------------------------------------------------------- /devutils/set_quilt_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/set_quilt_vars.sh -------------------------------------------------------------------------------- /devutils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devutils/tests/test_check_patch_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/tests/test_check_patch_files.py -------------------------------------------------------------------------------- /devutils/tests/test_validate_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/tests/test_validate_patches.py -------------------------------------------------------------------------------- /devutils/third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/third_party/README.md -------------------------------------------------------------------------------- /devutils/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devutils/third_party/unidiff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/third_party/unidiff/__init__.py -------------------------------------------------------------------------------- /devutils/third_party/unidiff/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/third_party/unidiff/__version__.py -------------------------------------------------------------------------------- /devutils/third_party/unidiff/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/third_party/unidiff/constants.py -------------------------------------------------------------------------------- /devutils/third_party/unidiff/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/third_party/unidiff/errors.py -------------------------------------------------------------------------------- /devutils/third_party/unidiff/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/third_party/unidiff/patch.py -------------------------------------------------------------------------------- /devutils/update_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/update_lists.py -------------------------------------------------------------------------------- /devutils/update_platform_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/update_platform_patches.py -------------------------------------------------------------------------------- /devutils/validate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/validate_config.py -------------------------------------------------------------------------------- /devutils/validate_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/devutils/validate_patches.py -------------------------------------------------------------------------------- /docs/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/docs/building.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/docs/design.md -------------------------------------------------------------------------------- /docs/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/docs/developing.md -------------------------------------------------------------------------------- /docs/flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/docs/flags.md -------------------------------------------------------------------------------- /docs/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/docs/platforms.md -------------------------------------------------------------------------------- /docs/repo_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/docs/repo_management.md -------------------------------------------------------------------------------- /domain_regex.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/domain_regex.list -------------------------------------------------------------------------------- /domain_substitution.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/domain_substitution.list -------------------------------------------------------------------------------- /downloads.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/downloads.ini -------------------------------------------------------------------------------- /flags.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/flags.gn -------------------------------------------------------------------------------- /patches/0001-Add-PPC64-support-for-libdav1d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/0001-Add-PPC64-support-for-libdav1d.patch -------------------------------------------------------------------------------- /patches/0001-Fix-libdav1d-compilation-on-clang-ppc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/0001-Fix-libdav1d-compilation-on-clang-ppc.patch -------------------------------------------------------------------------------- /patches/Revert-Vulkan-Disable-global-merge-for-volk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/Revert-Vulkan-Disable-global-merge-for-volk.patch -------------------------------------------------------------------------------- /patches/aw-snap-temporary-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/aw-snap-temporary-patch.patch -------------------------------------------------------------------------------- /patches/change-user-agent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/change-user-agent.patch -------------------------------------------------------------------------------- /patches/chromium-77-std-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/chromium-77-std-string.patch -------------------------------------------------------------------------------- /patches/core/bromite/disable-fetching-field-trials.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/bromite/disable-fetching-field-trials.patch -------------------------------------------------------------------------------- /patches/core/debian/disable/unrar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/debian/disable/unrar.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0001-fix-building-without-safebrowsing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0001-fix-building-without-safebrowsing.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0003-disable-autofill-download-manager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0003-disable-autofill-download-manager.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0005-disable-default-extensions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0005-disable-default-extensions.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0007-disable-web-resource-service.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0007-disable-web-resource-service.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0009-disable-google-ipv6-probes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0009-disable-google-ipv6-probes.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0015-disable-update-pings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0015-disable-update-pings.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0017-disable-new-avatar-menu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0017-disable-new-avatar-menu.patch -------------------------------------------------------------------------------- /patches/core/inox-patchset/0021-disable-rlz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/inox-patchset/0021-disable-rlz.patch -------------------------------------------------------------------------------- /patches/core/iridium-browser/all-add-trk-prefixes-to-possibly-evil-connections.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/iridium-browser/all-add-trk-prefixes-to-possibly-evil-connections.patch -------------------------------------------------------------------------------- /patches/core/iridium-browser/safe_browsing-disable-incident-reporting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/iridium-browser/safe_browsing-disable-incident-reporting.patch -------------------------------------------------------------------------------- /patches/core/iridium-browser/safe_browsing-disable-reporting-of-safebrowsing-over.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/iridium-browser/safe_browsing-disable-reporting-of-safebrowsing-over.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/block-requests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/block-requests.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/block-trk-and-subdomains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/block-trk-and-subdomains.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-crash-reporter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-crash-reporter.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-domain-reliability.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-domain-reliability.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-fonts-googleapis-references.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-fonts-googleapis-references.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-gaia.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-gaia.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-gcm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-gcm.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-google-host-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-google-host-detection.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-mei-preload.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-mei-preload.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-network-time-tracker.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-network-time-tracker.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-profile-avatar-downloading.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-profile-avatar-downloading.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-signin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-signin.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-untraceable-urls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-untraceable-urls.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-webrtc-log-uploader.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-webrtc-log-uploader.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/disable-webstore-urls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/disable-webstore-urls.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/fix-building-without-enabling-reporting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/fix-building-without-enabling-reporting.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/fix-building-without-one-click-signin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/fix-building-without-one-click-signin.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/fix-building-without-safebrowsing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/fix-building-without-safebrowsing.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/remove-enable-dse-memoryssa-cflag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/remove-enable-dse-memoryssa-cflag.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/replace-google-search-engine-with-nosearch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/replace-google-search-engine-with-nosearch.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/toggle-translation-via-switch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/toggle-translation-via-switch.patch -------------------------------------------------------------------------------- /patches/core/ungoogled-chromium/use-local-devtools-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/core/ungoogled-chromium/use-local-devtools-files.patch -------------------------------------------------------------------------------- /patches/enable-rpm-build-ungoogled-chromium.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/enable-rpm-build-ungoogled-chromium.patch -------------------------------------------------------------------------------- /patches/enable-rpm-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/enable-rpm-build.patch -------------------------------------------------------------------------------- /patches/enable-vaapi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/enable-vaapi.patch -------------------------------------------------------------------------------- /patches/eu-strip.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/eu-strip.patch -------------------------------------------------------------------------------- /patches/extra/bromite/fingerprinting-flags-client-rects-and-measuretext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/bromite/fingerprinting-flags-client-rects-and-measuretext.patch -------------------------------------------------------------------------------- /patches/extra/bromite/flag-fingerprinting-canvas-image-data-noise.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/bromite/flag-fingerprinting-canvas-image-data-noise.patch -------------------------------------------------------------------------------- /patches/extra/bromite/flag-max-connections-per-host.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/bromite/flag-max-connections-per-host.patch -------------------------------------------------------------------------------- /patches/extra/debian/disable/google-api-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/debian/disable/google-api-warning.patch -------------------------------------------------------------------------------- /patches/extra/debian/disable/welcome-page.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/debian/disable/welcome-page.patch -------------------------------------------------------------------------------- /patches/extra/debian/fixes/connection-message.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/debian/fixes/connection-message.patch -------------------------------------------------------------------------------- /patches/extra/debian/gn/parallel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/debian/gn/parallel.patch -------------------------------------------------------------------------------- /patches/extra/inox-patchset/0006-modify-default-prefs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/inox-patchset/0006-modify-default-prefs.patch -------------------------------------------------------------------------------- /patches/extra/inox-patchset/0008-restore-classic-ntp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/inox-patchset/0008-restore-classic-ntp.patch -------------------------------------------------------------------------------- /patches/extra/inox-patchset/0011-add-duckduckgo-search-engine.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/inox-patchset/0011-add-duckduckgo-search-engine.patch -------------------------------------------------------------------------------- /patches/extra/inox-patchset/0013-disable-missing-key-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/inox-patchset/0013-disable-missing-key-warning.patch -------------------------------------------------------------------------------- /patches/extra/inox-patchset/0016-chromium-sandbox-pie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/inox-patchset/0016-chromium-sandbox-pie.patch -------------------------------------------------------------------------------- /patches/extra/inox-patchset/0018-disable-first-run-behaviour.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/inox-patchset/0018-disable-first-run-behaviour.patch -------------------------------------------------------------------------------- /patches/extra/inox-patchset/0019-disable-battery-status-service.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/inox-patchset/0019-disable-battery-status-service.patch -------------------------------------------------------------------------------- /patches/extra/iridium-browser/Remove-EV-certificates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/iridium-browser/Remove-EV-certificates.patch -------------------------------------------------------------------------------- /patches/extra/iridium-browser/browser-disable-profile-auto-import-on-first-run.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/iridium-browser/browser-disable-profile-auto-import-on-first-run.patch -------------------------------------------------------------------------------- /patches/extra/iridium-browser/mime_util-force-text-x-suse-ymp-to-be-downloaded.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/iridium-browser/mime_util-force-text-x-suse-ymp-to-be-downloaded.patch -------------------------------------------------------------------------------- /patches/extra/iridium-browser/net-cert-increase-default-key-length-for-newly-gener.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/iridium-browser/net-cert-increase-default-key-length-for-newly-gener.patch -------------------------------------------------------------------------------- /patches/extra/iridium-browser/prefs-always-prompt-for-download-directory-by-defaul.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/iridium-browser/prefs-always-prompt-for-download-directory-by-defaul.patch -------------------------------------------------------------------------------- /patches/extra/iridium-browser/prefs-only-keep-cookies-until-exit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/iridium-browser/prefs-only-keep-cookies-until-exit.patch -------------------------------------------------------------------------------- /patches/extra/iridium-browser/updater-disable-auto-update.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/iridium-browser/updater-disable-auto-update.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-components-ungoogled.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-components-ungoogled.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-extra-channel-info.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-extra-channel-info.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-for-bookmark-bar-ntp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-for-bookmark-bar-ntp.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-for-pdf-plugin-name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-for-pdf-plugin-name.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-for-search-engine-collection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-for-search-engine-collection.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-close-window-with-last-tab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-close-window-with-last-tab.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-configure-extension-downloading.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-configure-extension-downloading.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-convert-popups-to-tabs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-convert-popups-to-tabs.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-disable-beforeunload.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-disable-beforeunload.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-force-punycode-hostnames.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-force-punycode-hostnames.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-hide-crashed-bubble.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-hide-crashed-bubble.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-scroll-tabs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-scroll-tabs.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-show-avatar-button.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-show-avatar-button.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-flag-to-stack-tabs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-flag-to-stack-tabs.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-ipv6-probing-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-ipv6-probing-option.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-suggestions-url-field.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-suggestions-url-field.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/add-ungoogled-flag-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/add-ungoogled-flag-headers.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/disable-dial-repeating-discovery.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/disable-dial-repeating-discovery.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/disable-download-quarantine.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/disable-download-quarantine.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/disable-intranet-redirect-detector.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/disable-intranet-redirect-detector.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/disable-webgl-renderer-info.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/disable-webgl-renderer-info.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/enable-default-prefetch-privacy-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/enable-default-prefetch-privacy-changes.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/enable-menu-on-reload-button.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/enable-menu-on-reload-button.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/enable-page-saving-on-more-pages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/enable-page-saving-on-more-pages.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/enable-paste-and-go-new-tab-button.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/enable-paste-and-go-new-tab-button.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/fix-building-without-mdns-and-service-discovery.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/fix-building-without-mdns-and-service-discovery.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/remove-disable-setuid-sandbox-as-bad-flag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/remove-disable-setuid-sandbox-as-bad-flag.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/remove-uneeded-ui.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/remove-uneeded-ui.patch -------------------------------------------------------------------------------- /patches/extra/ungoogled-chromium/searx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/extra/ungoogled-chromium/searx.patch -------------------------------------------------------------------------------- /patches/fix-breakpad-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/fix-breakpad-compile.patch -------------------------------------------------------------------------------- /patches/fix-libvpx-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/fix-libvpx-compile.patch -------------------------------------------------------------------------------- /patches/fix-swiftshader-link.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/fix-swiftshader-link.patch -------------------------------------------------------------------------------- /patches/gl-bug-workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/gl-bug-workaround.patch -------------------------------------------------------------------------------- /patches/llvm-bug-workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/llvm-bug-workaround.patch -------------------------------------------------------------------------------- /patches/llvm-codegen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/llvm-codegen.patch -------------------------------------------------------------------------------- /patches/mei_preload2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/mei_preload2.patch -------------------------------------------------------------------------------- /patches/scoped_nss_types-h-compile-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/scoped_nss_types-h-compile-fix.patch -------------------------------------------------------------------------------- /patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/series -------------------------------------------------------------------------------- /patches/skia-vsx-instructions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/skia-vsx-instructions.patch -------------------------------------------------------------------------------- /patches/xxx-ppc64le-libvpx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/xxx-ppc64le-libvpx.patch -------------------------------------------------------------------------------- /patches/xxx-ppc64le-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/patches/xxx-ppc64le-support.patch -------------------------------------------------------------------------------- /ppc64le_build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/ppc64le_build.bash -------------------------------------------------------------------------------- /pruning.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/pruning.list -------------------------------------------------------------------------------- /revision.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /utils/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/.coveragerc -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/_common.py -------------------------------------------------------------------------------- /utils/_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/_extraction.py -------------------------------------------------------------------------------- /utils/domain_substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/domain_substitution.py -------------------------------------------------------------------------------- /utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/downloads.py -------------------------------------------------------------------------------- /utils/filescfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/filescfg.py -------------------------------------------------------------------------------- /utils/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/patches.py -------------------------------------------------------------------------------- /utils/prune_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/prune_binaries.py -------------------------------------------------------------------------------- /utils/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/pytest.ini -------------------------------------------------------------------------------- /utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/tests/test_domain_substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/tests/test_domain_substitution.py -------------------------------------------------------------------------------- /utils/tests/test_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/tests/test_patches.py -------------------------------------------------------------------------------- /utils/third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/third_party/README.md -------------------------------------------------------------------------------- /utils/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/third_party/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llebout/ungoogled-chromium/HEAD/utils/third_party/schema.py --------------------------------------------------------------------------------