mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
Add source import tool
This commit is contained in:
parent
bc62eacf65
commit
62594dbd19
1
CHROMIUM_VERSION
Normal file
1
CHROMIUM_VERSION
Normal file
@ -0,0 +1 @@
|
||||
77.0.3865.90
|
24
tools/import-upstream.sh
Executable file
24
tools/import-upstream.sh
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
set -ex
|
||||
have_version=$(cut -d= -f2 src/chrome/VERSION | tr '\n' . | cut -d. -f1-4)
|
||||
want_version=$(cat CHROMIUM_VERSION)
|
||||
if [ "$have_version" = "$want_version" ]; then
|
||||
exit 0
|
||||
fi
|
||||
name="chromium-$want_version"
|
||||
tarball="$name.tar.xz"
|
||||
url="https://commondatastorage.googleapis.com/chromium-browser-official/$tarball"
|
||||
root=$(git rev-list --max-parents=0 HEAD)
|
||||
git config core.autocrlf false
|
||||
git config core.safecrlf false
|
||||
git -c advice.detachedHead=false checkout $root
|
||||
rm -rf src
|
||||
git checkout master -- tools
|
||||
sed -i "s/^\^/$name\//" tools/include.txt
|
||||
curl "$url" -o- | tar xJf - --wildcards --wildcards-match-slash -T tools/include.txt
|
||||
mv "$name" src
|
||||
find src -name .gitignore -delete
|
||||
git rm --quiet --force -r tools
|
||||
git add src
|
||||
git commit --quiet --amend -m "Import $name" --date=now
|
||||
git rebase --onto HEAD "$root" master
|
56
tools/include.txt
Normal file
56
tools/include.txt
Normal file
@ -0,0 +1,56 @@
|
||||
*/BUILD.gn
|
||||
*.gni
|
||||
*.gyp
|
||||
*.gypi
|
||||
*.mojom
|
||||
*.typemap
|
||||
^AUTHORS
|
||||
^LICENSE
|
||||
^.clang-format
|
||||
^.gitattributes
|
||||
^.gn
|
||||
^base
|
||||
^build
|
||||
^buildtools/DEPS
|
||||
^buildtools/third_party/libc++/trunk/include
|
||||
^buildtools/third_party/libc++/trunk/src
|
||||
^buildtools/third_party/libc++abi/trunk/include
|
||||
^buildtools/third_party/libc++abi/trunk/src
|
||||
^chrome/VERSION
|
||||
^chrome/android/profiles/newest.txt
|
||||
^chrome/app/theme/chromium/BRANDING
|
||||
^chrome/test/chromedriver/*.pydeps
|
||||
^components/version_info
|
||||
^crypto
|
||||
^google_apis/build/check_internal.py
|
||||
^ipc/ipc_param_traits.h
|
||||
^native_client/build/get_toolchain_revision.py
|
||||
^native_client/toolchain_revisions
|
||||
^net
|
||||
^remoting/VERSION
|
||||
^remoting/branding_Chromium
|
||||
^remoting/host/win/get_clsids.py
|
||||
^remoting/tools/remove_spaces.py
|
||||
^testing/gtest/include/gtest/gtest_prod.h
|
||||
^third_party/angle/*.py
|
||||
^third_party/apple_apsl
|
||||
^third_party/boringssl
|
||||
^third_party/brotli
|
||||
^third_party/depot_tools/cpplint.py
|
||||
^third_party/googletest/src/googletest/include/gtest/gtest_prod.h
|
||||
^third_party/modp_b64
|
||||
^third_party/nasm
|
||||
^third_party/protobuf/mirclient*
|
||||
^third_party/protobuf/src
|
||||
^third_party/tcmalloc
|
||||
^third_party/win_build_output
|
||||
^third_party/yasm
|
||||
^third_party/zlib
|
||||
^tools/binary_size/*.pydeps
|
||||
^tools/cfi
|
||||
^tools/clang/scripts/update.py
|
||||
^tools/grit
|
||||
^tools/gritsettings
|
||||
^tools/protoc_wrapper
|
||||
^tools/win/DebugVisualizers
|
||||
^url
|
Loading…
Reference in New Issue
Block a user