Skip to content

Commit

Permalink
Merge pull request #413 from teeminus/update
Browse files Browse the repository at this point in the history
  • Loading branch information
teeminus authored Jan 20, 2025
2 parents cb6ee24 + e83ebcf commit dcd3e21
Show file tree
Hide file tree
Showing 18 changed files with 252 additions and 56,313 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def main():

# Generate version file
with open(RUST_FLAG_FILE, 'w') as f:
f.write('rustc 1.83.0-nightly (7042c269c 2024-09-23)')
f.write('rustc 1.84.0-nightly (439284741 2024-10-21)')
f.write('\n')

if not args.ci or not (source_tree / 'out/Default').exists():
Expand Down
1,018 changes: 164 additions & 854 deletions domain_substitution.list

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions downloads.ini
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ strip_leading_dirs=DirectX-Headers-%(version)s

# Rust
[rust-x64]
version = 2024-09-24
version = 2024-10-22
url = https://static.rust-lang.org/dist/%(version)s/rust-nightly-x86_64-pc-windows-msvc.tar.gz
download_filename = rust-nightly-%(version)s-x86_64-pc-windows-msvc.tar.gz
output_path = third_party/rust-toolchain-x64
strip_leading_dirs=rust-nightly-x86_64-pc-windows-msvc
[rust-x86]
version = 2024-09-24
version = 2024-10-22
url = https://static.rust-lang.org/dist/%(version)s/rust-nightly-i686-pc-windows-msvc.tar.gz
download_filename = rust-nightly-%(version)s-i686-pc-windows-msvc.tar.gz
output_path = third_party/rust-toolchain-x86
Expand Down
1 change: 0 additions & 1 deletion patches/series
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ ungoogled-chromium/windows/windows-fix-licenses-gn-path.patch
ungoogled-chromium/windows/windows-fix-building-with-rust.patch
ungoogled-chromium/windows/windows-fix-remove-unused-preferences-fields.patch
ungoogled-chromium/windows/windows-fix-missing-includes.patch
ungoogled-chromium/windows/windows-fix-building-with-prunned-binaries.patch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -1628,8 +1628,7 @@ config("compiler_deterministic") {
@@ -1648,8 +1648,7 @@ config("compiler_deterministic") {
}

config("clang_revision") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- a/components/download/internal/common/download_item_impl.cc
+++ b/components/download/internal/common/download_item_impl.cc
@@ -2493,7 +2493,7 @@ void DownloadItemImpl::SetDangerType(Dow
@@ -2486,7 +2486,7 @@ void DownloadItemImpl::SetDangerType(Dow
TRACE_EVENT_SCOPE_THREAD, "danger_type",
GetDownloadDangerNames(danger_type).c_str());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "chrome/install_static/install_details.h"
#include "sandbox/policy/switches.h"
#endif
@@ -537,11 +536,6 @@ void InitChromeLogging(const base::Comma
@@ -538,11 +537,6 @@ void InitChromeLogging(const base::Comma
#if BUILDFLAG(IS_WIN)
// Enable trace control and transport through event tracing for Windows.
LogEventProvider::Initialize(kChromeTraceProviderName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,13 @@

--- a/services/preferences/tracked/device_id_win.cc
+++ b/services/preferences/tracked/device_id_win.cc
@@ -10,11 +10,16 @@
@@ -10,12 +10,17 @@

#include <memory>

+#include "base/command_line.h"
#include "base/check.h"
#include "base/containers/heap_array.h"

MachineIdStatus GetDeterministicMachineSpecificId(std::string* machine_id) {
DCHECK(machine_id);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
// Removes all files from the installer directory. Returns false in case of an
// error.
bool RemoveInstallerFiles(const base::FilePath& installer_directory) {
@@ -894,11 +876,6 @@ InstallStatus UninstallProduct(const Mod
@@ -893,11 +875,6 @@ InstallStatus UninstallProduct(const Mod
}
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- a/build/config/clang/BUILD.gn
+++ b/build/config/clang/BUILD.gn
@@ -220,8 +220,6 @@ clang_lib("compiler_builtins") {
@@ -223,8 +223,6 @@ clang_lib("compiler_builtins") {
} else {
libname = "ios"
}
Expand All @@ -11,7 +11,7 @@

--- a/build/config/rust.gni
+++ b/build/config/rust.gni
@@ -54,7 +54,7 @@ declare_args() {
@@ -59,7 +59,7 @@ declare_args() {
# To use a custom toolchain instead, specify an absolute path to the root of
# a Rust sysroot, which will have a 'bin' directory and others. Commonly
# <home dir>/.rustup/toolchains/nightly-<something>-<something>
Expand All @@ -20,7 +20,7 @@

# Directory under which to find `bin/bindgen` (a `bin` directory containing
# the bindgen exectuable).
@@ -64,7 +64,7 @@ declare_args() {
@@ -69,7 +69,7 @@ declare_args() {
# set this to the output of `rustc -V`. Changing this string will cause all
# Rust targets to be rebuilt, which allows you to update your toolchain and
# not break incremental builds.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@
"//build:branding_buildflags",
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -5051,7 +5051,6 @@ std::wstring ChromeContentBrowserClient:
@@ -5079,7 +5079,6 @@ std::wstring ChromeContentBrowserClient:
#endif
case sandbox::mojom::Sandbox::kPrintCompositor:
case sandbox::mojom::Sandbox::kAudio:
- case sandbox::mojom::Sandbox::kScreenAI:
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
case sandbox::mojom::Sandbox::kVideoEffects:
#endif
@@ -5155,7 +5154,6 @@ bool ChromeContentBrowserClient::PreSpaw
case sandbox::mojom::Sandbox::kSpeechRecognition:
case sandbox::mojom::Sandbox::kPdfConversion:
case sandbox::mojom::Sandbox::kService:
@@ -5176,7 +5175,6 @@ bool ChromeContentBrowserClient::PreSpaw
case sandbox::mojom::Sandbox::kPrintBackend:
#endif
case sandbox::mojom::Sandbox::kPrintCompositor:
#if !BUILDFLAG(IS_ANDROID)
- case sandbox::mojom::Sandbox::kScreenAI:
#endif
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
case sandbox::mojom::Sandbox::kVideoEffects:
case sandbox::mojom::Sandbox::kAudio:
case sandbox::mojom::Sandbox::kOnDeviceModelExecution:
case sandbox::mojom::Sandbox::kSpeechRecognition:
--- a/chrome/browser/safe_browsing/BUILD.gn
+++ b/chrome/browser/safe_browsing/BUILD.gn
@@ -7,6 +7,7 @@ import("//components/safe_browsing/build
Expand All @@ -51,7 +51,7 @@
+#endif
--- a/chrome/browser/signin/signin_util_win.cc
+++ b/chrome/browser/signin/signin_util_win.cc
@@ -275,12 +275,6 @@ bool IsGCPWUsedInOtherProfile(Profile* p
@@ -276,12 +276,6 @@ bool IsGCPWUsedInOtherProfile(Profile* p
}

void SigninWithCredentialProviderIfPossible(Profile* profile) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
// Page-related commands
#define IDC_BOOKMARK_THIS_TAB 35000
#define IDC_BOOKMARK_ALL_TABS 35001
@@ -469,7 +459,7 @@
@@ -470,7 +460,7 @@
#define IDC_MEDIA_ROUTER_TOGGLE_MEDIA_REMOTING 51208

// Context menu items for media toolbar button
Expand All @@ -46,7 +46,7 @@
#define IDC_MEDIA_TOOLBAR_CONTEXT_REPORT_CAST_ISSUE 51209
#endif
#define IDC_MEDIA_TOOLBAR_CONTEXT_SHOW_OTHER_SESSIONS 51210
@@ -506,7 +496,7 @@
@@ -507,7 +497,7 @@
#define IDC_CONTENT_CONTEXT_ACCESSIBILITY_LABELS 52411
#define IDC_CONTENT_CONTEXT_ACCESSIBILITY_LABELS_TOGGLE_ONCE 52412

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- a/tools/licenses/licenses.py
+++ b/tools/licenses/licenses.py
@@ -811,7 +811,7 @@ def _GnBinary():
@@ -812,7 +812,7 @@ def _GnBinary():
elif sys.platform == 'darwin':
subdir = 'mac'
elif sys.platform == 'win32':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

--- a/build/build_config.h
+++ b/build/build_config.h
@@ -51,7 +51,7 @@
@@ -49,7 +49,7 @@
// ARCH_CPU_31_BITS / ARCH_CPU_32_BITS / ARCH_CPU_64_BITS
// ARCH_CPU_BIG_ENDIAN / ARCH_CPU_LITTLE_ENDIAN

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc
+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
@@ -1737,9 +1737,6 @@ const PolicyToPreferenceMapEntry kSimple
@@ -1757,9 +1757,6 @@ const PolicyToPreferenceMapEntry kSimple
{ key::kRendererAppContainerEnabled,
prefs::kRendererAppContainerEnabled,
base::Value::Type::BOOLEAN },
Expand Down
Loading

0 comments on commit dcd3e21

Please sign in to comment.