FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cefpython/patches/patch.py at cefpython147 · cztomczak/cefpython · GitHub
cztomczak
/
cefpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
477
Star
3.2k
Code
Issues
223
Pull requests
4
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cefpython
/
patches
/
patch.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (27 loc) · 909 Bytes
Breadcrumbs
cefpython
/
patches
/
patch.py
Copy path
File metadata and controls
31 lines (27 loc) · 909 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# CEF Python patches to Chromium and CEF.
# See upstream cef/patch/patch.cfg for how patching works in CEF.
# Current working directory is cef_build_dir/chromium/src/ .
# See also docs/Build-instructions.md and tools/automate.py .
import
platform
OS_POSTFIX
=
(
"win"
if
platform
.
system
()
==
"Windows"
else
"linux"
if
platform
.
system
()
==
"Linux"
else
"mac"
if
platform
.
system
()
==
"Darwin"
else
"unknown"
)
# ALL PLATFORMS
# noinspection PyUnresolvedReferences
patches
.
extend
([
#{
# # (Disabled) Fixes HTTPS cache problems with private certificates
# 'name': 'issue125',
# 'path': 'net/http/'
#},
])
# LINUX
if
OS_POSTFIX
==
"linux"
:
# noinspection PyUnresolvedReferences
patches
.
extend
([
{
# Discovery of the "icudtl.dat" file fails on Linux.
'name'
:
'issue231'
,
'path'
:
'cef/'
},
])
Back
|
FazBrowse Home
|
New Git URL