Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/chromium
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bd466ba86bb6
Choose a base ref
...
head repository: mockingbirdnest/chromium
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: da685abcc5b2
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 30, 2021

  1. Create README.md

    eggrobin authored May 30, 2021
    Copy the full SHA
    da685ab View commit details
Showing with 17 additions and 0 deletions.
  1. +17 −0 README.md
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
This repository contains a modified subset of the Chromium codebase used by Principia for stack tracing support in glog on Windows.

The contents of this repository were constructed as follows:
```powershell
git clone "https://chromium.googlesource.com/chromium/src.git" chromium -n --depth 1 -b "40.0.2193.1"
$GitPromptSettings.RepositoriesInWhichToDisableFileStatus += join-path (gi -path .).FullName chromium
push-location -path "chromium"
git config core.sparsecheckout true
copy "..\..\Principia\documentation\setup files\chromium_sparse_checkout.txt" ".git/info/sparse-checkout"
git checkout
copy "..\..\Principia\documentation\setup files\chromium.patch"
git am "chromium.patch"
rm "chromium.patch"
```
where the files in `..\..\Principia\` are https://github.com/mockingbirdnest/Principia/blob/4a85594a4d7de4cfd1924a0fb386b26e6c99dfed/documentation/Setup%20Files/chromium.patch
and https://github.com/mockingbirdnest/Principia/blob/f2d972022fd6c7753aa78e912113508db7527e1a/documentation/Setup%20Files/chromium_sparse_checkout.txt
respectively.