Luke Street 0bd776df12 | ||
---|---|---|
.. | ||
README.md | ||
add-dependencies.sh |
README.md
add-dependencies.sh & README.md originally from https://github.com/hexops/dawn
Updating
Process for updating Dawn:
git remote add upstream https://dawn.googlesource.com/dawn
git checkout main && git checkout -B update-nov-30
(replace date with current date)git fetch upstream && git merge upstream/main
rm -rf out/ third_party/ build/ && git checkout upstream/main -- third_party/
gclient sync
At this point there will be quite a large diff as manythird_party/
dependencies we commit will have changed.- Stage and review the changes to the
third_party/
directory by running./mach/add-dependencies.sh
. Alter the script to include/exclude files as needed, commit the result. Make sure test files, documentation,.gitmodules
, etc. are not included.