Skip to content

Commit 83363db

Browse files
committed
Update to 114.0.5735.198
Change-Id: Iad3d4e35c062549bda0097f1fc65d376cba4b63e Signed-off-by: Caesar Wang <[email protected]>
1 parent 3d2acde commit 83363db

File tree

194 files changed

+80348
-30185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+80348
-30185
lines changed
Binary file not shown.
Binary file not shown.

licenses/COPYING.14

-503
This file was deleted.

licenses/COPYING.2

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper
2-
Copyright (c) 2001-2019 Expat maintainers
2+
Copyright (c) 2001-2022 Expat maintainers
33

44
Permission is hereby granted, free of charge, to any person obtaining
55
a copy of this software and associated documentation files (the

licenses/COPYING.3

+173-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ fontconfig/COPYING
22

33
Copyright © 2000,2001,2002,2003,2004,2006,2007 Keith Packard
44
Copyright © 2005 Patrick Lam
5+
Copyright © 2007 Dwayne Bailey and Translate.org.za
56
Copyright © 2009 Roozbeh Pournader
6-
Copyright © 2008,2009 Red Hat, Inc.
7+
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Red Hat, Inc.
78
Copyright © 2008 Danilo Šegan
89
Copyright © 2012 Google, Inc.
910

@@ -26,3 +27,174 @@ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
2627
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
2728
PERFORMANCE OF THIS SOFTWARE.
2829

30+
31+
--------------------------------------------------------------------------------
32+
fontconfig/fc-case/CaseFolding.txt
33+
34+
© 2019 Unicode®, Inc.
35+
Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
36+
For terms of use, see http://www.unicode.org/terms_of_use.html
37+
38+
39+
--------------------------------------------------------------------------------
40+
fontconfig/src/fcatomic.h
41+
42+
/*
43+
* Mutex operations. Originally copied from HarfBuzz.
44+
*
45+
* Copyright © 2007 Chris Wilson
46+
* Copyright © 2009,2010 Red Hat, Inc.
47+
* Copyright © 2011,2012,2013 Google, Inc.
48+
*
49+
* Permission is hereby granted, without written agreement and without
50+
* license or royalty fees, to use, copy, modify, and distribute this
51+
* software and its documentation for any purpose, provided that the
52+
* above copyright notice and the following two paragraphs appear in
53+
* all copies of this software.
54+
*
55+
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
56+
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
57+
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
58+
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
59+
* DAMAGE.
60+
*
61+
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
62+
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
63+
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
64+
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
65+
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
66+
*
67+
* Contributor(s):
68+
* Chris Wilson <[email protected]>
69+
* Red Hat Author(s): Behdad Esfahbod
70+
* Google Author(s): Behdad Esfahbod
71+
*/
72+
73+
74+
--------------------------------------------------------------------------------
75+
fontconfig/src/fcfoundry.h
76+
77+
/*
78+
Copyright © 2002-2003 by Juliusz Chroboczek
79+
80+
Permission is hereby granted, free of charge, to any person obtaining a copy
81+
of this software and associated documentation files (the "Software"), to deal
82+
in the Software without restriction, including without limitation the rights
83+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
84+
copies of the Software, and to permit persons to whom the Software is
85+
furnished to do so, subject to the following conditions:
86+
87+
The above copyright notice and this permission notice shall be included in
88+
all copies or substantial portions of the Software.
89+
90+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
91+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
92+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
93+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
94+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
95+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
96+
THE SOFTWARE.
97+
*/
98+
99+
100+
--------------------------------------------------------------------------------
101+
fontconfig/src/fcmd5.h
102+
103+
/*
104+
* This code implements the MD5 message-digest algorithm.
105+
* The algorithm is due to Ron Rivest. This code was
106+
* written by Colin Plumb in 1993, no copyright is claimed.
107+
* This code is in the public domain; do with it what you wish.
108+
*
109+
* Equivalent code is available from RSA Data Security, Inc.
110+
* This code has been tested against that, and is equivalent,
111+
* except that you don't need to include two pages of legalese
112+
* with every copy.
113+
*
114+
* To compute the message digest of a chunk of bytes, declare an
115+
* MD5Context structure, pass it to MD5Init, call MD5Update as
116+
* needed on buffers full of bytes, and then call MD5Final, which
117+
* will fill a supplied 16-byte array with the digest.
118+
*/
119+
120+
121+
--------------------------------------------------------------------------------
122+
fontconfig/src/fcmutex.h
123+
124+
/*
125+
* Atomic int and pointer operations. Originally copied from HarfBuzz.
126+
*
127+
* Copyright © 2007 Chris Wilson
128+
* Copyright © 2009,2010 Red Hat, Inc.
129+
* Copyright © 2011,2012,2013 Google, Inc.
130+
*
131+
* Permission is hereby granted, without written agreement and without
132+
* license or royalty fees, to use, copy, modify, and distribute this
133+
* software and its documentation for any purpose, provided that the
134+
* above copyright notice and the following two paragraphs appear in
135+
* all copies of this software.
136+
*
137+
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
138+
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
139+
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
140+
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
141+
* DAMAGE.
142+
*
143+
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
144+
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
145+
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
146+
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
147+
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
148+
*
149+
* Contributor(s):
150+
* Chris Wilson <[email protected]>
151+
* Red Hat Author(s): Behdad Esfahbod
152+
* Google Author(s): Behdad Esfahbod
153+
*/
154+
155+
156+
--------------------------------------------------------------------------------
157+
fontconfig/src/ftglue.[ch]
158+
159+
/* ftglue.c: Glue code for compiling the OpenType code from
160+
* FreeType 1 using only the public API of FreeType 2
161+
*
162+
* By David Turner, The FreeType Project (www.freetype.org)
163+
*
164+
* This code is explicitely put in the public domain
165+
*
166+
* ==========================================================================
167+
*
168+
* the OpenType parser codes was originally written as an extension to
169+
* FreeType 1.x. As such, its source code was embedded within the library,
170+
* and used many internal FreeType functions to deal with memory and
171+
* stream i/o.
172+
*
173+
* When it was 'salvaged' for Pango and Qt, the code was "ported" to FreeType 2,
174+
* which basically means that some macro tricks were performed in order to
175+
* directly access FT2 _internal_ functions.
176+
*
177+
* these functions were never part of FT2 public API, and _did_ change between
178+
* various releases. This created chaos for many users: when they upgraded the
179+
* FreeType library on their system, they couldn't run Gnome anymore since
180+
* Pango refused to link.
181+
*
182+
* Very fortunately, it's possible to completely avoid this problem because
183+
* the FT_StreamRec and FT_MemoryRec structure types, which describe how
184+
* memory and stream implementations interface with the rest of the font
185+
* library, have always been part of the public API, and never changed.
186+
*
187+
* What we do thus is re-implement, within the OpenType parser, the few
188+
* functions that depend on them. This only adds one or two kilobytes of
189+
* code, and ensures that the parser can work with _any_ version
190+
* of FreeType installed on your system. How sweet... !
191+
*
192+
* Note that we assume that Pango doesn't use any other internal functions
193+
* from FreeType. It used to in old versions, but this should no longer
194+
* be the case. (crossing my fingers).
195+
*
196+
* - David Turner
197+
* - The FreeType Project (www.freetype.org)
198+
*
199+
* PS: This "glue" code is explicitely put in the public domain
200+
*/

licenses/COPYING.4

+13-9
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,23 @@ HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
22
For parts of HarfBuzz that are licensed under different licenses see individual
33
files names COPYING in subdirectories where applicable.
44

5-
Copyright © 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Google, Inc.
6-
Copyright © 2018,2019,2020 Ebrahim Byagowi
7-
Copyright © 2019,2020 Facebook, Inc.
8-
Copyright © 2012 Mozilla Foundation
5+
Copyright © 2010-2022 Google, Inc.
6+
Copyright © 2015-2020 Ebrahim Byagowi
7+
Copyright © 2019,2020 Facebook, Inc.
8+
Copyright © 2012,2015 Mozilla Foundation
99
Copyright © 2011 Codethink Limited
1010
Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
1111
Copyright © 2009 Keith Stribley
12-
Copyright © 2009 Martin Hosken and SIL International
12+
Copyright © 2011 Martin Hosken and SIL International
1313
Copyright © 2007 Chris Wilson
14-
Copyright © 2006 Behdad Esfahbod
15-
Copyright © 2005 David Turner
16-
Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc.
17-
Copyright © 1998-2004 David Turner and Werner Lemberg
14+
Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod
15+
Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc.
16+
Copyright © 1998-2005 David Turner and Werner Lemberg
17+
Copyright © 2016 Igalia S.L.
18+
Copyright © 2022 Matthias Clasen
19+
Copyright © 2018,2021 Khaled Hosny
20+
Copyright © 2018,2019,2020 Adobe, Inc
21+
Copyright © 2013-2015 Alexei Podtelezhnikov
1822

1923
For full copyright notices consult the individual files in the package.
2024

licenses/COPYING.Xiph

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (C) 2000-2009 Josh Coalson
2-
Copyright (C) 2011-2014 Xiph.Org Foundation
2+
Copyright (C) 2011-2022 Xiph.Org Foundation
33

44
Redistribution and use in source and binary forms, with or without
55
modification, are permitted provided that the following conditions
@@ -12,7 +12,7 @@ notice, this list of conditions and the following disclaimer.
1212
notice, this list of conditions and the following disclaimer in the
1313
documentation and/or other materials provided with the distribution.
1414

15-
- Neither the name of the Xiph.org Foundation nor the names of its
15+
- Neither the name of the Xiph.Org Foundation nor the names of its
1616
contributors may be used to endorse or promote products derived from
1717
this software without specific prior written permission.
1818

0 commit comments

Comments
 (0)