Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated to chromium/6684 #131

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/android/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN mkdir /build
WORKDIR /build
RUN gclient config --custom-var checkout_configuration=minimal --unmanaged https://pdfium.googlesource.com/pdfium.git
RUN echo "target_os = [ 'android' ]" >> .gclient
RUN gclient sync -r origin/chromium/6662 --no-history --shallow
RUN gclient sync -r origin/chromium/6684 --no-history --shallow

# pdfium reset and clean directories
RUN git -C /build/pdfium reset --hard
Expand Down
2 changes: 1 addition & 1 deletion docker/wasm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN mkdir /build
WORKDIR /build
RUN gclient config --custom-var checkout_configuration=minimal --unmanaged https://pdfium.googlesource.com/pdfium.git
RUN echo "target_os = [ 'wasm' ]" >> .gclient
RUN gclient sync -r origin/chromium/6658 --no-history --shallow
RUN gclient sync -r origin/chromium/6684 --no-history --shallow

# pdfium reset and clean directories
RUN git -C /build/pdfium reset --hard
Expand Down
4 changes: 2 additions & 2 deletions modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
task = ""

# pdfium
pdfium_git_branch = "chromium/6662"
# ^ ref: https://pdfium.googlesource.com/pdfium/+/refs/heads/chromium/6662
pdfium_git_branch = "chromium/6684"
# ^ ref: https://pdfium.googlesource.com/pdfium/+/refs/heads/chromium/6684
# OBS 1: don't forget change in android docker file (docker/android/Dockerfile)
# OBS 2: don't forget change in wasm docker file (docker/wasm/Dockerfile)

Expand Down