Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed May 5, 2024
2 parents 31938d6 + 152fd06 commit 09135a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 23 deletions.
11 changes: 0 additions & 11 deletions chromium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,6 @@ function dtcr () {



function gom () {
# these probably dont make sense for everyone.
export GOMAMAILTO=/dev/null
export GOMA_ENABLE_REMOTE_LINK=yes

goma_ctl ensure_start
}

function dtbcr () {
if dtb; then
dtcr
Expand All @@ -89,21 +81,18 @@ function bcr () {

function depsb () {
if deps; then
gom
b
fi
}

function depsbcr () {
if deps; then
gom
bcr
fi
}

function hooksbcr () {
if hooks; then
gom
bcr
fi
}
13 changes: 1 addition & 12 deletions fish/chromium.fish
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function deps --description "run gclient sync"
function deps --description "run gclient sync without hooks"
# --reset drops local changes. often great, but if making changes inside v8, you don't want to use --reset
# also reset seems to reset branch position in the devtools-internal repo??? weird.
gclient sync --delete_unversioned_trees --jobs=70 --verbose --nohooks
Expand Down Expand Up @@ -127,33 +127,22 @@ end

function depsb --description "deps, then build chromium, then open it"
if deps
# # if [ "$argv[1]" = "--skipgoma" ] ...
gom
b
end
end

function depsbcr --description "deps, then build chromium, then open it"
if deps
# # if [ "$argv[1]" = "--skipgoma" ] ...
gom
bcr
end
end

function hooksbcr --description "run hooks, then build chromium, then open it"
if hooks
gom
bcr
end
end

function gom --description "run goma setup"
set -x GOMAMAILTO /dev/null
set -x GOMA_ENABLE_REMOTE_LINK yes

goma_ctl ensure_start
end

function glurpgrab0
rsync --archive --verbose --itemize-changes --compress --human-readable --delete paulirish@glurp:chromium/src/out/Mac-cross-siso/Chromium.app $HOME/chromium/src/out/Mac-cross-from-glurp/
Expand Down

0 comments on commit 09135a1

Please sign in to comment.