-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNOTES.txt
42 lines (27 loc) · 1.41 KB
/
NOTES.txt
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
32
33
34
35
36
37
38
39
40
41
42
# Notes for me when rebasing
# OpenMandriva Patch > https://github.com/OpenMandrivaAssociation/chromium/blob/master/chromium-restore-jpeg-xl-support.patch
Move jxl stuff from platform BUILD.gn to image_decoders BUILD.gn to fix includes
# chrome/browser/flag_descriptions.cc
#if BUILDFLAG(ENABLE_JXL_DECODER)
const char kEnableJXLName[] = "Enable/Disable JXL image format";
const char kEnableJXLDescription[] =
"Enable/Disable image decoding support for the JPEG XL image format. (Default: Enabled) Thorium Flag.";
#endif // BUILDFLAG(ENABLE_JXL_DECODER)
# chrome/browser/flag-metadata.json
{
"name": "enable-jxl",
// Keep JPEG XL support forever!.
"expiry_milestone": -1
},
# DEPS
'highway_revision': '00fe003dac355b979f36157f9407c7c46448958e',
'libjxl_revision': '4a3b22d2600f92d8706fb72d85d52bfee2acbd54',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'highway_revision': '00fe003dac355b979f36157f9407c7c46448958e',
'src/third_party/dav1d/libdav1d':
Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + '93f12c117a4e1c0cc2b129dcc52e84dbd9b84200',
'src/third_party/libjxl/src':
Var('chromium_git') + '/external/github.com/libjxl/libjxl.git' + '@' + Var('libjxl_revision'),