├── .build_config ├── .gclient ├── .gitea └── issue_template.md ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build-webview.yml │ ├── build.yml │ └── dispatch-request.sh ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── SUPPORT.md ├── android_flags.debug.gn ├── android_flags.gn ├── android_flags.release.gn ├── bundle_generate_apk.sh ├── domain_sub_2.list ├── keystore_dummy.gn ├── misc ├── UnindexedRules ├── android_studio_setup.sh └── misc.sh ├── patches ├── Bromite │ ├── AImageReader-CFI-crash-mitigations.patch │ ├── Add-a-proxy-configuration-page.patch │ ├── Add-an-always-incognito-mode.patch │ ├── Add-bookmark-import-export-actions.patch │ ├── Add-exit-menu-item.patch │ ├── Add-flag-to-disable-WebGL.patch │ ├── Add-option-to-not-persist-tabs-across-sessions.patch │ ├── Disable-DRM-media-origin-IDs-preprovisioning.patch │ ├── DoH-secure-mode-by-default.patch │ ├── Inject-scripts-for-AMP-tracking-ads-and-video.patch │ ├── Remove-account-permissions-from-manifest.patch │ ├── Revert-flags-remove-disable-pull-to-refresh-effect.patch │ └── updater-disable-updater-pings.patch ├── Other │ ├── Fix-Note9-startup-crash.patch │ ├── debug-fix.patch │ ├── eu-strip-build-script.patch │ ├── generate_gradle.patch │ ├── gs-download-use-normal-python.patch │ ├── ignore-aidl-assertion-error.patch │ ├── python3-dict-changed-size-during-iteration.patch │ ├── remove-jdk.patch │ └── ungoogled-main-repo-fix.patch ├── Unobtainium │ ├── kill-Auth.patch │ ├── kill-GCM.patch │ ├── kill-Location-fall-back-to-system.patch │ ├── kill-TOS-and-metrics-opt-out.patch │ ├── kill-Translate.patch │ └── kill-Vision.patch ├── Vanadium │ ├── 0002-use-64-bit-WebView-processes.patch │ ├── 0003-switch-to-fstack-protector-strong.patch │ ├── 0004-enable-fwrapv-in-Clang-for-non-UBSan-builds.patch │ ├── 0016-disable-seed-based-field-trials.patch │ ├── 0017-disable-fetching-variations.patch │ ├── 0018-disable-WebView-variations-support.patch │ ├── 0022-disable-metrics-by-default.patch │ ├── 0024-disable-showing-popular-sites-by-default.patch │ ├── 0033-disable-media-router-media-remoting-by-default.patch │ ├── 0034-disable-media-router-by-default.patch │ ├── 0042-enable-user-agent-freeze-by-default.patch │ ├── 0043-enable-split-cache-by-default.patch │ ├── 0044-enable-partitioning-connections-by-default.patch │ ├── 0050-enable-strict-site-isolation-by-default-on-Android.patch │ ├── 0054-always-use-local-new-tab-page.patch │ └── 0076-disable-using-Play-services-fonts.patch ├── series ├── src-fix │ ├── android-rlz-fix-missing-variable.patch │ ├── fix-base-feature.patch │ ├── fix-manifest-merger-path.patch │ ├── fix-null-mInstanceID.patch │ ├── fix-prefs.patch │ ├── fix-safe-browsing.patch │ ├── fix-search-template.patch │ └── webview_extra_deps.patch └── ungoogled-chromium-android │ ├── Add-always-desktop-option.patch │ ├── Add-clear-data-on-exit-flag.patch │ ├── Add-disable-peerconnection-flag.patch │ ├── Add-folder-button-bookmark.patch │ ├── Add-force-tablet-ui-option.patch │ ├── Add-more-search-engines.patch │ ├── Add-save-data-flag.patch │ ├── Add_trichrome_apk.patch │ ├── Change-package-name-chromium.patch │ ├── Disable-contextual-search.patch │ ├── Disable-homepage-by-default.patch │ ├── Disable-offline-indicator.patch │ ├── Disable-prefetch.patch │ ├── Enable-ProactivelySwapBrowsingInstance.patch │ ├── Enable-update-notification.patch │ ├── Remove-UI-elements.patch │ ├── Remove-dependency-on-com.google.android.gms.auth.patch │ ├── Remove-dependency-on-com.google.android.gms.cast.patch │ ├── Remove-dependency-on-com.google.android.gms.common-auth-signin-dynamic-com.google.android.gms.tasks.patch │ ├── Remove-dependency-on-com.google.android.gms.fido-com.google.android.gms.iid-com.google.android.gms.instantapps-com.google.android.gms.location.patch │ ├── Remove-dependency-on-com.google.android.gms.flags-com.google.android.gms.location.places-com.google.android.gms.stats.patch │ ├── Remove-dependency-on-com.google.android.gms.gcm.patch │ ├── Remove-dependency-on-com.google.android.gms.vision-com.google.android.gms.clearcut-com.google.android.gms.phenotype.patch │ ├── Remove-dependency-on-com.google.android.play.core.splitcompat-com.google.android.play.core.splitinstall.patch │ ├── Remove-dependency-on-com.google.android.play.patch │ ├── Remove-dependency-on-firebase.patch │ └── Remove-ntp-sites.patch └── pruning_2.list /.build_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.build_config -------------------------------------------------------------------------------- /.gclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.gclient -------------------------------------------------------------------------------- /.gitea/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.gitea/issue_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build-webview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.github/workflows/build-webview.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/dispatch-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/.github/workflows/dispatch-request.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /android_flags.debug.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/android_flags.debug.gn -------------------------------------------------------------------------------- /android_flags.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/android_flags.gn -------------------------------------------------------------------------------- /android_flags.release.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/android_flags.release.gn -------------------------------------------------------------------------------- /bundle_generate_apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/bundle_generate_apk.sh -------------------------------------------------------------------------------- /domain_sub_2.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/domain_sub_2.list -------------------------------------------------------------------------------- /keystore_dummy.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/keystore_dummy.gn -------------------------------------------------------------------------------- /misc/UnindexedRules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/misc/UnindexedRules -------------------------------------------------------------------------------- /misc/android_studio_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/misc/android_studio_setup.sh -------------------------------------------------------------------------------- /misc/misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/misc/misc.sh -------------------------------------------------------------------------------- /patches/Bromite/AImageReader-CFI-crash-mitigations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/AImageReader-CFI-crash-mitigations.patch -------------------------------------------------------------------------------- /patches/Bromite/Add-a-proxy-configuration-page.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Add-a-proxy-configuration-page.patch -------------------------------------------------------------------------------- /patches/Bromite/Add-an-always-incognito-mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Add-an-always-incognito-mode.patch -------------------------------------------------------------------------------- /patches/Bromite/Add-bookmark-import-export-actions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Add-bookmark-import-export-actions.patch -------------------------------------------------------------------------------- /patches/Bromite/Add-exit-menu-item.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Add-exit-menu-item.patch -------------------------------------------------------------------------------- /patches/Bromite/Add-flag-to-disable-WebGL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Add-flag-to-disable-WebGL.patch -------------------------------------------------------------------------------- /patches/Bromite/Add-option-to-not-persist-tabs-across-sessions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Add-option-to-not-persist-tabs-across-sessions.patch -------------------------------------------------------------------------------- /patches/Bromite/Disable-DRM-media-origin-IDs-preprovisioning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Disable-DRM-media-origin-IDs-preprovisioning.patch -------------------------------------------------------------------------------- /patches/Bromite/DoH-secure-mode-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/DoH-secure-mode-by-default.patch -------------------------------------------------------------------------------- /patches/Bromite/Inject-scripts-for-AMP-tracking-ads-and-video.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Inject-scripts-for-AMP-tracking-ads-and-video.patch -------------------------------------------------------------------------------- /patches/Bromite/Remove-account-permissions-from-manifest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Remove-account-permissions-from-manifest.patch -------------------------------------------------------------------------------- /patches/Bromite/Revert-flags-remove-disable-pull-to-refresh-effect.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/Revert-flags-remove-disable-pull-to-refresh-effect.patch -------------------------------------------------------------------------------- /patches/Bromite/updater-disable-updater-pings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Bromite/updater-disable-updater-pings.patch -------------------------------------------------------------------------------- /patches/Other/Fix-Note9-startup-crash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/Fix-Note9-startup-crash.patch -------------------------------------------------------------------------------- /patches/Other/debug-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/debug-fix.patch -------------------------------------------------------------------------------- /patches/Other/eu-strip-build-script.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/eu-strip-build-script.patch -------------------------------------------------------------------------------- /patches/Other/generate_gradle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/generate_gradle.patch -------------------------------------------------------------------------------- /patches/Other/gs-download-use-normal-python.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/gs-download-use-normal-python.patch -------------------------------------------------------------------------------- /patches/Other/ignore-aidl-assertion-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/ignore-aidl-assertion-error.patch -------------------------------------------------------------------------------- /patches/Other/python3-dict-changed-size-during-iteration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/python3-dict-changed-size-during-iteration.patch -------------------------------------------------------------------------------- /patches/Other/remove-jdk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/remove-jdk.patch -------------------------------------------------------------------------------- /patches/Other/ungoogled-main-repo-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Other/ungoogled-main-repo-fix.patch -------------------------------------------------------------------------------- /patches/Unobtainium/kill-Auth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Unobtainium/kill-Auth.patch -------------------------------------------------------------------------------- /patches/Unobtainium/kill-GCM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Unobtainium/kill-GCM.patch -------------------------------------------------------------------------------- /patches/Unobtainium/kill-Location-fall-back-to-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Unobtainium/kill-Location-fall-back-to-system.patch -------------------------------------------------------------------------------- /patches/Unobtainium/kill-TOS-and-metrics-opt-out.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Unobtainium/kill-TOS-and-metrics-opt-out.patch -------------------------------------------------------------------------------- /patches/Unobtainium/kill-Translate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Unobtainium/kill-Translate.patch -------------------------------------------------------------------------------- /patches/Unobtainium/kill-Vision.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Unobtainium/kill-Vision.patch -------------------------------------------------------------------------------- /patches/Vanadium/0002-use-64-bit-WebView-processes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0002-use-64-bit-WebView-processes.patch -------------------------------------------------------------------------------- /patches/Vanadium/0003-switch-to-fstack-protector-strong.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0003-switch-to-fstack-protector-strong.patch -------------------------------------------------------------------------------- /patches/Vanadium/0004-enable-fwrapv-in-Clang-for-non-UBSan-builds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0004-enable-fwrapv-in-Clang-for-non-UBSan-builds.patch -------------------------------------------------------------------------------- /patches/Vanadium/0016-disable-seed-based-field-trials.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0016-disable-seed-based-field-trials.patch -------------------------------------------------------------------------------- /patches/Vanadium/0017-disable-fetching-variations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0017-disable-fetching-variations.patch -------------------------------------------------------------------------------- /patches/Vanadium/0018-disable-WebView-variations-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0018-disable-WebView-variations-support.patch -------------------------------------------------------------------------------- /patches/Vanadium/0022-disable-metrics-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0022-disable-metrics-by-default.patch -------------------------------------------------------------------------------- /patches/Vanadium/0024-disable-showing-popular-sites-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0024-disable-showing-popular-sites-by-default.patch -------------------------------------------------------------------------------- /patches/Vanadium/0033-disable-media-router-media-remoting-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0033-disable-media-router-media-remoting-by-default.patch -------------------------------------------------------------------------------- /patches/Vanadium/0034-disable-media-router-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0034-disable-media-router-by-default.patch -------------------------------------------------------------------------------- /patches/Vanadium/0042-enable-user-agent-freeze-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0042-enable-user-agent-freeze-by-default.patch -------------------------------------------------------------------------------- /patches/Vanadium/0043-enable-split-cache-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0043-enable-split-cache-by-default.patch -------------------------------------------------------------------------------- /patches/Vanadium/0044-enable-partitioning-connections-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0044-enable-partitioning-connections-by-default.patch -------------------------------------------------------------------------------- /patches/Vanadium/0050-enable-strict-site-isolation-by-default-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0050-enable-strict-site-isolation-by-default-on-Android.patch -------------------------------------------------------------------------------- /patches/Vanadium/0054-always-use-local-new-tab-page.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0054-always-use-local-new-tab-page.patch -------------------------------------------------------------------------------- /patches/Vanadium/0076-disable-using-Play-services-fonts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/Vanadium/0076-disable-using-Play-services-fonts.patch -------------------------------------------------------------------------------- /patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/series -------------------------------------------------------------------------------- /patches/src-fix/android-rlz-fix-missing-variable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/android-rlz-fix-missing-variable.patch -------------------------------------------------------------------------------- /patches/src-fix/fix-base-feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/fix-base-feature.patch -------------------------------------------------------------------------------- /patches/src-fix/fix-manifest-merger-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/fix-manifest-merger-path.patch -------------------------------------------------------------------------------- /patches/src-fix/fix-null-mInstanceID.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/fix-null-mInstanceID.patch -------------------------------------------------------------------------------- /patches/src-fix/fix-prefs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/fix-prefs.patch -------------------------------------------------------------------------------- /patches/src-fix/fix-safe-browsing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/fix-safe-browsing.patch -------------------------------------------------------------------------------- /patches/src-fix/fix-search-template.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/fix-search-template.patch -------------------------------------------------------------------------------- /patches/src-fix/webview_extra_deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/src-fix/webview_extra_deps.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add-always-desktop-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add-always-desktop-option.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add-clear-data-on-exit-flag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add-clear-data-on-exit-flag.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add-disable-peerconnection-flag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add-disable-peerconnection-flag.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add-folder-button-bookmark.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add-folder-button-bookmark.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add-force-tablet-ui-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add-force-tablet-ui-option.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add-more-search-engines.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add-more-search-engines.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add-save-data-flag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add-save-data-flag.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Add_trichrome_apk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Add_trichrome_apk.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Change-package-name-chromium.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Change-package-name-chromium.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Disable-contextual-search.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Disable-contextual-search.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Disable-homepage-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Disable-homepage-by-default.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Disable-offline-indicator.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Disable-offline-indicator.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Disable-prefetch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Disable-prefetch.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Enable-ProactivelySwapBrowsingInstance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Enable-ProactivelySwapBrowsingInstance.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Enable-update-notification.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Enable-update-notification.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-UI-elements.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-UI-elements.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.auth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.auth.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.cast.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.cast.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.common-auth-signin-dynamic-com.google.android.gms.tasks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.common-auth-signin-dynamic-com.google.android.gms.tasks.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.fido-com.google.android.gms.iid-com.google.android.gms.instantapps-com.google.android.gms.location.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.fido-com.google.android.gms.iid-com.google.android.gms.instantapps-com.google.android.gms.location.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.flags-com.google.android.gms.location.places-com.google.android.gms.stats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.flags-com.google.android.gms.location.places-com.google.android.gms.stats.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.gcm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.gcm.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.vision-com.google.android.gms.clearcut-com.google.android.gms.phenotype.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.gms.vision-com.google.android.gms.clearcut-com.google.android.gms.phenotype.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.play.core.splitcompat-com.google.android.play.core.splitinstall.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.play.core.splitcompat-com.google.android.play.core.splitinstall.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.play.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-com.google.android.play.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-dependency-on-firebase.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-dependency-on-firebase.patch -------------------------------------------------------------------------------- /patches/ungoogled-chromium-android/Remove-ntp-sites.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/patches/ungoogled-chromium-android/Remove-ntp-sites.patch -------------------------------------------------------------------------------- /pruning_2.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoogled-software/ungoogled-chromium-android/HEAD/pruning_2.list --------------------------------------------------------------------------------