M126 Final!

This commit is contained in:
Alexander Frick 2024-08-03 12:39:35 -05:00
parent eeb5e8e67d
commit 4a29d42f25
4 changed files with 9 additions and 5 deletions

View file

@ -261,6 +261,9 @@ case $1 in
--cros) copyCros;
esac
cd ${CR_SRC_DIR} &&
python3 ./tools/search_engine_choice/download_search_engine_icons.py &&
printf "${GRE}Done!\n" &&
printf "\n" &&

View file

@ -1,4 +1,4 @@
// Copyright 2012 The Chromium Authors
// Copyright 2024 The Chromium Authors and Alex313031
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@ -1853,10 +1853,11 @@ void AppMenuModel::Build() {
AddSubMenuWithStringIdAndVectorIcon(this, IDC_HELP_MENU, IDS_HELP_MENU,
sub_menus_.back().get(), kHelpMenuIcon);
#else
// Add About icon to Thorium menu
#if BUILDFLAG(IS_CHROMEOS_ASH)
AddItem(IDC_ABOUT, l10n_util::GetStringUTF16(IDS_ABOUT));
AddItemWithStringIdAndVectorIcon(this, IDC_ABOUT, IDS_ABOUT, vector_icons::kInfoRefreshIcon);
#else
AddItem(IDC_ABOUT, l10n_util::GetStringUTF16(IDS_ABOUT));
AddItemWithStringIdAndVectorIcon(this, IDC_ABOUT, IDS_ABOUT, vector_icons::kInfoRefreshIcon);
#endif
#endif

View file

@ -79,7 +79,7 @@ printf "${YEL}Downloading PGO Profile for V8 (for when v8_enable_builtins_optimi
printf "\n" &&
tput sgr0 &&
python3 v8/tools/builtins-pgo/download_profiles.py --depot-tools=$HOME/depot_tools download &&
python3 v8/tools/builtins-pgo/download_profiles.py --depot-tools=$HOME/depot_tools --force download &&
printf "\n" &&
printf "${GRE}Done!\n"

View file

@ -91,7 +91,7 @@ printf "${YEL}Downloading PGO Profile for V8 (for when v8_enable_builtins_optimi
printf "\n" &&
tput sgr0 &&
python3 v8/tools/builtins-pgo/download_profiles.py --depot-tools=$HOME/depot_tools download &&
python3 v8/tools/builtins-pgo/download_profiles.py --depot-tools=$HOME/depot_tools --force download &&
printf "\n" &&
cd ~/thorium &&