neoagent 2.3.1-beta.98 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +6 -3
- package/flutter_app/lib/main.dart +1 -0
- package/flutter_app/lib/main_integrations.dart +21 -2
- package/flutter_app/lib/main_models.dart +60 -0
- package/flutter_app/lib/main_theme.dart +31 -2
- package/flutter_app/macos/Runner/AppDelegate.swift +11 -1
- package/flutter_app/macos/Runner/DebugProfile.entitlements +4 -0
- package/flutter_app/macos/Runner/Release.entitlements +4 -0
- package/flutter_app/pubspec.lock +5 -5
- package/lib/manager.js +164 -2
- package/package.json +1 -1
- package/server/db/database.js +85 -0
- package/server/public/.last_build_id +1 -1
- package/server/public/assets/NOTICES +971 -1066
- package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/server/public/assets/shaders/ink_sparkle.frag +1 -1
- package/server/public/assets/shaders/stretch_effect.frag +1 -1
- package/server/public/canvaskit/canvaskit.js +2 -2
- package/server/public/canvaskit/canvaskit.js.symbols +11796 -11733
- package/server/public/canvaskit/canvaskit.wasm +0 -0
- package/server/public/canvaskit/chromium/canvaskit.js +2 -2
- package/server/public/canvaskit/chromium/canvaskit.js.symbols +10706 -10643
- package/server/public/canvaskit/chromium/canvaskit.wasm +0 -0
- package/server/public/canvaskit/experimental_webparagraph/canvaskit.js +171 -0
- package/server/public/canvaskit/experimental_webparagraph/canvaskit.js.symbols +9134 -0
- package/server/public/canvaskit/experimental_webparagraph/canvaskit.wasm +0 -0
- package/server/public/canvaskit/skwasm.js +14 -14
- package/server/public/canvaskit/skwasm.js.symbols +12787 -12676
- package/server/public/canvaskit/skwasm.wasm +0 -0
- package/server/public/canvaskit/skwasm_heavy.js +14 -14
- package/server/public/canvaskit/skwasm_heavy.js.symbols +14400 -14286
- package/server/public/canvaskit/skwasm_heavy.wasm +0 -0
- package/server/public/canvaskit/wimp.js +94 -95
- package/server/public/canvaskit/wimp.js.symbols +11325 -11177
- package/server/public/canvaskit/wimp.wasm +0 -0
- package/server/public/flutter_bootstrap.js +2 -2
- package/server/public/main.dart.js +83866 -82074
- package/server/routes/integrations.js +2 -2
- package/server/routes/memory.js +73 -0
- package/server/services/ai/engine.js +65 -26
- package/server/services/ai/models.js +21 -0
- package/server/services/ai/preModelCompaction.js +191 -0
- package/server/services/ai/providers/claudeCode.js +273 -0
- package/server/services/ai/providers/openaiCodex.js +226 -41
- package/server/services/ai/settings.js +11 -1
- package/server/services/integrations/google/provider.js +78 -0
- package/server/services/integrations/manager.js +29 -13
- package/server/services/manager.js +25 -0
- package/server/services/memory/ingestion.js +486 -0
- package/server/services/memory/manager.js +422 -0
- package/server/services/memory/openhuman_uplift.test.js +98 -0
- package/server/services/widgets/focus_widget.js +45 -4
|
@@ -178,30 +178,7 @@ abseil-cpp
|
|
|
178
178
|
|
|
179
179
|
END OF TERMS AND CONDITIONS
|
|
180
180
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
To apply the Apache License to your work, attach the following
|
|
184
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
185
|
-
replaced with your own identifying information. (Don't include
|
|
186
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
187
|
-
comment syntax for the file format. We also recommend that a
|
|
188
|
-
file or class name and description of purpose be included on the
|
|
189
|
-
same "printed page" as the copyright notice for easier
|
|
190
|
-
identification within third-party archives.
|
|
191
|
-
|
|
192
|
-
Copyright [yyyy] [name of copyright owner]
|
|
193
|
-
|
|
194
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
195
|
-
you may not use this file except in compliance with the License.
|
|
196
|
-
You may obtain a copy of the License at
|
|
197
|
-
|
|
198
|
-
https://www.apache.org/licenses/LICENSE-2.0
|
|
199
|
-
|
|
200
|
-
Unless required by applicable law or agreed to in writing, software
|
|
201
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
202
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
203
|
-
See the License for the specific language governing permissions and
|
|
204
|
-
limitations under the License.
|
|
181
|
+
|
|
205
182
|
--------------------------------------------------------------------------------
|
|
206
183
|
abseil-cpp
|
|
207
184
|
|
|
@@ -813,11 +790,10 @@ found in the LICENSE file.
|
|
|
813
790
|
angle
|
|
814
791
|
benchmark
|
|
815
792
|
boringssl
|
|
816
|
-
clock
|
|
817
793
|
cpu_features
|
|
818
|
-
fake_async
|
|
819
794
|
flatbuffers
|
|
820
795
|
gtest-parallel
|
|
796
|
+
skia
|
|
821
797
|
spirv-cross
|
|
822
798
|
spirv-tools
|
|
823
799
|
swiftshader
|
|
@@ -1006,30 +982,25 @@ yapf
|
|
|
1006
982
|
|
|
1007
983
|
END OF TERMS AND CONDITIONS
|
|
1008
984
|
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
1015
|
-
comment syntax for the file format. We also recommend that a
|
|
1016
|
-
file or class name and description of purpose be included on the
|
|
1017
|
-
same "printed page" as the copyright notice for easier
|
|
1018
|
-
identification within third-party archives.
|
|
985
|
+
|
|
986
|
+
--------------------------------------------------------------------------------
|
|
987
|
+
angle
|
|
988
|
+
dart
|
|
989
|
+
perfetto
|
|
1019
990
|
|
|
1020
|
-
|
|
991
|
+
Copyright (C) 2018 The Android Open Source Project
|
|
1021
992
|
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
993
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
994
|
+
you may not use this file except in compliance with the License.
|
|
995
|
+
You may obtain a copy of the License at
|
|
1025
996
|
|
|
1026
|
-
|
|
997
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1027
998
|
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
999
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1000
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1001
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1002
|
+
See the License for the specific language governing permissions and
|
|
1003
|
+
limitations under the License.
|
|
1033
1004
|
--------------------------------------------------------------------------------
|
|
1034
1005
|
angle
|
|
1035
1006
|
glfw
|
|
@@ -1255,6 +1226,23 @@ limitations under the License.
|
|
|
1255
1226
|
benchmark
|
|
1256
1227
|
flatbuffers
|
|
1257
1228
|
|
|
1229
|
+
Copyright 2020 Google Inc. All rights reserved.
|
|
1230
|
+
|
|
1231
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1232
|
+
you may not use this file except in compliance with the License.
|
|
1233
|
+
You may obtain a copy of the License at
|
|
1234
|
+
|
|
1235
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1236
|
+
|
|
1237
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1238
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1239
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1240
|
+
See the License for the specific language governing permissions and
|
|
1241
|
+
limitations under the License.
|
|
1242
|
+
--------------------------------------------------------------------------------
|
|
1243
|
+
benchmark
|
|
1244
|
+
flatbuffers
|
|
1245
|
+
|
|
1258
1246
|
Copyright 2021 Google Inc. All rights reserved.
|
|
1259
1247
|
|
|
1260
1248
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -1758,122 +1746,328 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
1758
1746
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1759
1747
|
|
|
1760
1748
|
--------------------------------------------------------------------------------
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
package_info_plus_platform_interface
|
|
1749
|
+
clock
|
|
1750
|
+
fake_async
|
|
1764
1751
|
|
|
1765
|
-
Copyright 2017 The Chromium Authors. All rights reserved.
|
|
1766
1752
|
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1753
|
+
Apache License
|
|
1754
|
+
Version 2.0, January 2004
|
|
1755
|
+
http://www.apache.org/licenses/
|
|
1770
1756
|
|
|
1771
|
-
|
|
1772
|
-
notice, this list of conditions and the following disclaimer.
|
|
1773
|
-
* Redistributions in binary form must reproduce the above
|
|
1774
|
-
copyright notice, this list of conditions and the following disclaimer
|
|
1775
|
-
in the documentation and/or other materials provided with the
|
|
1776
|
-
distribution.
|
|
1777
|
-
* Neither the name of Google Inc. nor the names of its
|
|
1778
|
-
contributors may be used to endorse or promote products derived from
|
|
1779
|
-
this software without specific prior written permission.
|
|
1757
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
1780
1758
|
|
|
1781
|
-
|
|
1782
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1783
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1784
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1785
|
-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1786
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1787
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1788
|
-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1789
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1790
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1791
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1759
|
+
1. Definitions.
|
|
1792
1760
|
|
|
1793
|
-
|
|
1794
|
-
|
|
1761
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
1762
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
1795
1763
|
|
|
1796
|
-
|
|
1764
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
1765
|
+
the copyright owner that is granting the License.
|
|
1797
1766
|
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1767
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
1768
|
+
other entities that control, are controlled by, or are under common
|
|
1769
|
+
control with that entity. For the purposes of this definition,
|
|
1770
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
1771
|
+
direction or management of such entity, whether by contract or
|
|
1772
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
1773
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
1801
1774
|
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
* Redistributions in binary form must reproduce the above
|
|
1805
|
-
copyright notice, this list of conditions and the following disclaimer
|
|
1806
|
-
in the documentation and/or other materials provided with the
|
|
1807
|
-
distribution.
|
|
1808
|
-
* Neither the name of Google Inc. nor the names of its
|
|
1809
|
-
contributors may be used to endorse or promote products derived from
|
|
1810
|
-
this software without specific prior written permission.
|
|
1775
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
1776
|
+
exercising permissions granted by this License.
|
|
1811
1777
|
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1816
|
-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1817
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1818
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1819
|
-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1820
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1821
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1822
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1778
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
1779
|
+
including but not limited to software source code, documentation
|
|
1780
|
+
source, and configuration files.
|
|
1823
1781
|
|
|
1824
|
-
|
|
1825
|
-
|
|
1782
|
+
"Object" form shall mean any form resulting from mechanical
|
|
1783
|
+
transformation or translation of a Source form, including but
|
|
1784
|
+
not limited to compiled object code, generated documentation,
|
|
1785
|
+
and conversions to other media types.
|
|
1826
1786
|
|
|
1827
|
-
|
|
1828
|
-
|
|
1787
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
1788
|
+
Object form, made available under the License, as indicated by a
|
|
1789
|
+
copyright notice that is included in or attached to the work
|
|
1790
|
+
(an example is provided in the Appendix below).
|
|
1829
1791
|
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
the documentation and/or other materials provided with the
|
|
1838
|
-
distribution.
|
|
1792
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
1793
|
+
form, that is based on (or derived from) the Work and for which the
|
|
1794
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
1795
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
1796
|
+
of this License, Derivative Works shall not include works that remain
|
|
1797
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
1798
|
+
the Work and Derivative Works thereof.
|
|
1839
1799
|
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
cpu_features
|
|
1800
|
+
"Contribution" shall mean any work of authorship, including
|
|
1801
|
+
the original version of the Work and any modifications or additions
|
|
1802
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
1803
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
1804
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
1805
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
1806
|
+
means any form of electronic, verbal, or written communication sent
|
|
1807
|
+
to the Licensor or its representatives, including but not limited to
|
|
1808
|
+
communication on electronic mailing lists, source code control systems,
|
|
1809
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
1810
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
1811
|
+
excluding communication that is conspicuously marked or otherwise
|
|
1812
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
1854
1813
|
|
|
1855
|
-
|
|
1814
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
1815
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
1816
|
+
subsequently incorporated within the Work.
|
|
1856
1817
|
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1818
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
1819
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1820
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1821
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
1822
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
1823
|
+
Work and such Derivative Works in Source or Object form.
|
|
1860
1824
|
|
|
1861
|
-
|
|
1825
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
1826
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1827
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1828
|
+
(except as stated in this section) patent license to make, have made,
|
|
1829
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
1830
|
+
where such license applies only to those patent claims licensable
|
|
1831
|
+
by such Contributor that are necessarily infringed by their
|
|
1832
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
1833
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
1834
|
+
institute patent litigation against any entity (including a
|
|
1835
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
1836
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
1837
|
+
or contributory patent infringement, then any patent licenses
|
|
1838
|
+
granted to You under this License for that Work shall terminate
|
|
1839
|
+
as of the date such litigation is filed.
|
|
1862
1840
|
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
limitations under the License.
|
|
1868
|
-
--------------------------------------------------------------------------------
|
|
1869
|
-
cpu_features
|
|
1841
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
1842
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
1843
|
+
modifications, and in Source or Object form, provided that You
|
|
1844
|
+
meet the following conditions:
|
|
1870
1845
|
|
|
1871
|
-
|
|
1872
|
-
|
|
1846
|
+
(a) You must give any other recipients of the Work or
|
|
1847
|
+
Derivative Works a copy of this License; and
|
|
1873
1848
|
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1849
|
+
(b) You must cause any modified files to carry prominent notices
|
|
1850
|
+
stating that You changed the files; and
|
|
1851
|
+
|
|
1852
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
1853
|
+
that You distribute, all copyright, patent, trademark, and
|
|
1854
|
+
attribution notices from the Source form of the Work,
|
|
1855
|
+
excluding those notices that do not pertain to any part of
|
|
1856
|
+
the Derivative Works; and
|
|
1857
|
+
|
|
1858
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
1859
|
+
distribution, then any Derivative Works that You distribute must
|
|
1860
|
+
include a readable copy of the attribution notices contained
|
|
1861
|
+
within such NOTICE file, excluding those notices that do not
|
|
1862
|
+
pertain to any part of the Derivative Works, in at least one
|
|
1863
|
+
of the following places: within a NOTICE text file distributed
|
|
1864
|
+
as part of the Derivative Works; within the Source form or
|
|
1865
|
+
documentation, if provided along with the Derivative Works; or,
|
|
1866
|
+
within a display generated by the Derivative Works, if and
|
|
1867
|
+
wherever such third-party notices normally appear. The contents
|
|
1868
|
+
of the NOTICE file are for informational purposes only and
|
|
1869
|
+
do not modify the License. You may add Your own attribution
|
|
1870
|
+
notices within Derivative Works that You distribute, alongside
|
|
1871
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
1872
|
+
that such additional attribution notices cannot be construed
|
|
1873
|
+
as modifying the License.
|
|
1874
|
+
|
|
1875
|
+
You may add Your own copyright statement to Your modifications and
|
|
1876
|
+
may provide additional or different license terms and conditions
|
|
1877
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
1878
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
1879
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
1880
|
+
the conditions stated in this License.
|
|
1881
|
+
|
|
1882
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
1883
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
1884
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
1885
|
+
this License, without any additional terms or conditions.
|
|
1886
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
1887
|
+
the terms of any separate license agreement you may have executed
|
|
1888
|
+
with Licensor regarding such Contributions.
|
|
1889
|
+
|
|
1890
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
1891
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
1892
|
+
except as required for reasonable and customary use in describing the
|
|
1893
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
1894
|
+
|
|
1895
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
1896
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
1897
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
1898
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
1899
|
+
implied, including, without limitation, any warranties or conditions
|
|
1900
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
1901
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
1902
|
+
appropriateness of using or redistributing the Work and assume any
|
|
1903
|
+
risks associated with Your exercise of permissions under this License.
|
|
1904
|
+
|
|
1905
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
1906
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
1907
|
+
unless required by applicable law (such as deliberate and grossly
|
|
1908
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
1909
|
+
liable to You for damages, including any direct, indirect, special,
|
|
1910
|
+
incidental, or consequential damages of any character arising as a
|
|
1911
|
+
result of this License or out of the use or inability to use the
|
|
1912
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
1913
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
1914
|
+
other commercial damages or losses), even if such Contributor
|
|
1915
|
+
has been advised of the possibility of such damages.
|
|
1916
|
+
|
|
1917
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
1918
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
1919
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
1920
|
+
or other liability obligations and/or rights consistent with this
|
|
1921
|
+
License. However, in accepting such obligations, You may act only
|
|
1922
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
1923
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
1924
|
+
defend, and hold each Contributor harmless for any liability
|
|
1925
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
1926
|
+
of your accepting any such warranty or additional liability.
|
|
1927
|
+
|
|
1928
|
+
END OF TERMS AND CONDITIONS
|
|
1929
|
+
|
|
1930
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
1931
|
+
|
|
1932
|
+
To apply the Apache License to your work, attach the following
|
|
1933
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
1934
|
+
replaced with your own identifying information. (Don't include
|
|
1935
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
1936
|
+
comment syntax for the file format. We also recommend that a
|
|
1937
|
+
file or class name and description of purpose be included on the
|
|
1938
|
+
same "printed page" as the copyright notice for easier
|
|
1939
|
+
identification within third-party archives.
|
|
1940
|
+
|
|
1941
|
+
Copyright [yyyy] [name of copyright owner]
|
|
1942
|
+
|
|
1943
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1944
|
+
you may not use this file except in compliance with the License.
|
|
1945
|
+
You may obtain a copy of the License at
|
|
1946
|
+
|
|
1947
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1948
|
+
|
|
1949
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1950
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1951
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1952
|
+
See the License for the specific language governing permissions and
|
|
1953
|
+
limitations under the License.
|
|
1954
|
+
--------------------------------------------------------------------------------
|
|
1955
|
+
connectivity_plus
|
|
1956
|
+
package_info_plus
|
|
1957
|
+
package_info_plus_platform_interface
|
|
1958
|
+
|
|
1959
|
+
Copyright 2017 The Chromium Authors. All rights reserved.
|
|
1960
|
+
|
|
1961
|
+
Redistribution and use in source and binary forms, with or without
|
|
1962
|
+
modification, are permitted provided that the following conditions are
|
|
1963
|
+
met:
|
|
1964
|
+
|
|
1965
|
+
* Redistributions of source code must retain the above copyright
|
|
1966
|
+
notice, this list of conditions and the following disclaimer.
|
|
1967
|
+
* Redistributions in binary form must reproduce the above
|
|
1968
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
1969
|
+
in the documentation and/or other materials provided with the
|
|
1970
|
+
distribution.
|
|
1971
|
+
* Neither the name of Google Inc. nor the names of its
|
|
1972
|
+
contributors may be used to endorse or promote products derived from
|
|
1973
|
+
this software without specific prior written permission.
|
|
1974
|
+
|
|
1975
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1976
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1977
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1978
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1979
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1980
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1981
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1982
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1983
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1984
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1985
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1986
|
+
|
|
1987
|
+
--------------------------------------------------------------------------------
|
|
1988
|
+
connectivity_plus_platform_interface
|
|
1989
|
+
|
|
1990
|
+
Copyright 2020 The Chromium Authors. All rights reserved.
|
|
1991
|
+
|
|
1992
|
+
Redistribution and use in source and binary forms, with or without
|
|
1993
|
+
modification, are permitted provided that the following conditions are
|
|
1994
|
+
met:
|
|
1995
|
+
|
|
1996
|
+
* Redistributions of source code must retain the above copyright
|
|
1997
|
+
notice, this list of conditions and the following disclaimer.
|
|
1998
|
+
* Redistributions in binary form must reproduce the above
|
|
1999
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
2000
|
+
in the documentation and/or other materials provided with the
|
|
2001
|
+
distribution.
|
|
2002
|
+
* Neither the name of Google Inc. nor the names of its
|
|
2003
|
+
contributors may be used to endorse or promote products derived from
|
|
2004
|
+
this software without specific prior written permission.
|
|
2005
|
+
|
|
2006
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
2007
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
2008
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
2009
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
2010
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
2011
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
2012
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
2013
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
2014
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2015
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2016
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2017
|
+
|
|
2018
|
+
--------------------------------------------------------------------------------
|
|
2019
|
+
cpu_features
|
|
2020
|
+
|
|
2021
|
+
Copyright (C) 2010 The Android Open Source Project
|
|
2022
|
+
All rights reserved.
|
|
2023
|
+
|
|
2024
|
+
Redistribution and use in source and binary forms, with or without
|
|
2025
|
+
modification, are permitted provided that the following conditions
|
|
2026
|
+
are met:
|
|
2027
|
+
* Redistributions of source code must retain the above copyright
|
|
2028
|
+
notice, this list of conditions and the following disclaimer.
|
|
2029
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
2030
|
+
notice, this list of conditions and the following disclaimer in
|
|
2031
|
+
the documentation and/or other materials provided with the
|
|
2032
|
+
distribution.
|
|
2033
|
+
|
|
2034
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
2035
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
2036
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
2037
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
2038
|
+
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
2039
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
2040
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
2041
|
+
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
2042
|
+
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2043
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
2044
|
+
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
2045
|
+
SUCH DAMAGE.
|
|
2046
|
+
--------------------------------------------------------------------------------
|
|
2047
|
+
cpu_features
|
|
2048
|
+
|
|
2049
|
+
Copyright 2017 Google LLC
|
|
2050
|
+
|
|
2051
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2052
|
+
you may not use this file except in compliance with the License.
|
|
2053
|
+
You may obtain a copy of the License at
|
|
2054
|
+
|
|
2055
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2056
|
+
|
|
2057
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2058
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2059
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2060
|
+
See the License for the specific language governing permissions and
|
|
2061
|
+
limitations under the License.
|
|
2062
|
+
--------------------------------------------------------------------------------
|
|
2063
|
+
cpu_features
|
|
2064
|
+
|
|
2065
|
+
Copyright 2017 Google LLC
|
|
2066
|
+
Copyright 2020 Intel Corporation
|
|
2067
|
+
|
|
2068
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2069
|
+
you may not use this file except in compliance with the License.
|
|
2070
|
+
You may obtain a copy of the License at
|
|
1877
2071
|
|
|
1878
2072
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
1879
2073
|
|
|
@@ -2234,6 +2428,12 @@ BSD-style license that can be found in the LICENSE file.
|
|
|
2234
2428
|
--------------------------------------------------------------------------------
|
|
2235
2429
|
dart
|
|
2236
2430
|
|
|
2431
|
+
Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
|
|
2432
|
+
for details. All rights reserved. Use of this source code is governed by a
|
|
2433
|
+
BSD-style license that can be found in the LICENSE file.
|
|
2434
|
+
--------------------------------------------------------------------------------
|
|
2435
|
+
dart
|
|
2436
|
+
|
|
2237
2437
|
Copyright 2012, the Dart project authors.
|
|
2238
2438
|
|
|
2239
2439
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -2318,7 +2518,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2318
2518
|
dart
|
|
2319
2519
|
perfetto
|
|
2320
2520
|
|
|
2321
|
-
Copyright (C)
|
|
2521
|
+
Copyright (C) 2019 The Android Open Source Project
|
|
2322
2522
|
|
|
2323
2523
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2324
2524
|
you may not use this file except in compliance with the License.
|
|
@@ -2335,30 +2535,116 @@ limitations under the License.
|
|
|
2335
2535
|
dart
|
|
2336
2536
|
perfetto
|
|
2337
2537
|
|
|
2338
|
-
Copyright (
|
|
2339
|
-
for details. All rights reserved. Use of this source code is governed by a
|
|
2340
|
-
BSD-style license that can be found in the LICENSE file.
|
|
2341
|
-
--------------------------------------------------------------------------------
|
|
2342
|
-
dart
|
|
2343
|
-
skia
|
|
2538
|
+
Copyright (C) 2021 The Android Open Source Project
|
|
2344
2539
|
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
--------------------------------------------------------------------------------
|
|
2349
|
-
dart
|
|
2350
|
-
skia
|
|
2540
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2541
|
+
you may not use this file except in compliance with the License.
|
|
2542
|
+
You may obtain a copy of the License at
|
|
2351
2543
|
|
|
2352
|
-
|
|
2353
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
2354
|
-
found in the LICENSE file.
|
|
2355
|
-
--------------------------------------------------------------------------------
|
|
2356
|
-
dart
|
|
2357
|
-
zlib
|
|
2544
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2358
2545
|
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2546
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2547
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2548
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2549
|
+
See the License for the specific language governing permissions and
|
|
2550
|
+
limitations under the License.
|
|
2551
|
+
--------------------------------------------------------------------------------
|
|
2552
|
+
dart
|
|
2553
|
+
perfetto
|
|
2554
|
+
|
|
2555
|
+
Copyright (C) 2022 The Android Open Source Project
|
|
2556
|
+
|
|
2557
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2558
|
+
you may not use this file except in compliance with the License.
|
|
2559
|
+
You may obtain a copy of the License at
|
|
2560
|
+
|
|
2561
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2562
|
+
|
|
2563
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2564
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2565
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2566
|
+
See the License for the specific language governing permissions and
|
|
2567
|
+
limitations under the License.
|
|
2568
|
+
--------------------------------------------------------------------------------
|
|
2569
|
+
dart
|
|
2570
|
+
perfetto
|
|
2571
|
+
|
|
2572
|
+
Copyright (C) 2022 The Android Open Source Project
|
|
2573
|
+
|
|
2574
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2575
|
+
you may not use this file except in compliance with the License.
|
|
2576
|
+
You may obtain a copy of the License at
|
|
2577
|
+
|
|
2578
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2579
|
+
|
|
2580
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2581
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2582
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2583
|
+
See the License for the specific language governing permissions and
|
|
2584
|
+
limitations under the License.
|
|
2585
|
+
--------------------------------------------------------------------------------
|
|
2586
|
+
dart
|
|
2587
|
+
perfetto
|
|
2588
|
+
|
|
2589
|
+
Copyright (C) 2023 The Android Open Source Project
|
|
2590
|
+
|
|
2591
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2592
|
+
you may not use this file except in compliance with the License.
|
|
2593
|
+
You may obtain a copy of the License at
|
|
2594
|
+
|
|
2595
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2596
|
+
|
|
2597
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2598
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2599
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2600
|
+
See the License for the specific language governing permissions and
|
|
2601
|
+
limitations under the License.
|
|
2602
|
+
--------------------------------------------------------------------------------
|
|
2603
|
+
dart
|
|
2604
|
+
perfetto
|
|
2605
|
+
|
|
2606
|
+
Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
|
|
2607
|
+
for details. All rights reserved. Use of this source code is governed by a
|
|
2608
|
+
BSD-style license that can be found in the LICENSE file.
|
|
2609
|
+
--------------------------------------------------------------------------------
|
|
2610
|
+
dart
|
|
2611
|
+
perfetto
|
|
2612
|
+
swiftshader
|
|
2613
|
+
|
|
2614
|
+
Copyright (C) 2020 The Android Open Source Project
|
|
2615
|
+
|
|
2616
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2617
|
+
you may not use this file except in compliance with the License.
|
|
2618
|
+
You may obtain a copy of the License at
|
|
2619
|
+
|
|
2620
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2621
|
+
|
|
2622
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2623
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2624
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2625
|
+
See the License for the specific language governing permissions and
|
|
2626
|
+
limitations under the License.
|
|
2627
|
+
--------------------------------------------------------------------------------
|
|
2628
|
+
dart
|
|
2629
|
+
skia
|
|
2630
|
+
|
|
2631
|
+
Copyright (c) 2015 The Chromium Authors. All rights reserved.
|
|
2632
|
+
Use of this source code is governed by a BSD-style license that can be
|
|
2633
|
+
found in the LICENSE file.
|
|
2634
|
+
--------------------------------------------------------------------------------
|
|
2635
|
+
dart
|
|
2636
|
+
skia
|
|
2637
|
+
|
|
2638
|
+
Copyright 2022 The Chromium Authors. All rights reserved.
|
|
2639
|
+
Use of this source code is governed by a BSD-style license that can be
|
|
2640
|
+
found in the LICENSE file.
|
|
2641
|
+
--------------------------------------------------------------------------------
|
|
2642
|
+
dart
|
|
2643
|
+
zlib
|
|
2644
|
+
|
|
2645
|
+
Copyright 2011 The Chromium Authors
|
|
2646
|
+
Use of this source code is governed by a BSD-style license that can be
|
|
2647
|
+
found in the LICENSE file.
|
|
2362
2648
|
--------------------------------------------------------------------------------
|
|
2363
2649
|
dart
|
|
2364
2650
|
zlib
|
|
@@ -5123,6 +5409,152 @@ limitations under the License.
|
|
|
5123
5409
|
--------------------------------------------------------------------------------
|
|
5124
5410
|
flatbuffers
|
|
5125
5411
|
|
|
5412
|
+
Copyright 2014 Google Inc. All rights reserved.
|
|
5413
|
+
|
|
5414
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5415
|
+
you may not use this file except in compliance with the License.
|
|
5416
|
+
You may obtain a copy of the License at
|
|
5417
|
+
|
|
5418
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5419
|
+
|
|
5420
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5421
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5422
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5423
|
+
See the License for the specific language governing permissions and
|
|
5424
|
+
limitations under the License.
|
|
5425
|
+
--------------------------------------------------------------------------------
|
|
5426
|
+
flatbuffers
|
|
5427
|
+
|
|
5428
|
+
Copyright 2016 Google Inc. All rights reserved.
|
|
5429
|
+
|
|
5430
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5431
|
+
you may not use this file except in compliance with the License.
|
|
5432
|
+
You may obtain a copy of the License at
|
|
5433
|
+
|
|
5434
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5435
|
+
|
|
5436
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5437
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5438
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5439
|
+
See the License for the specific language governing permissions and
|
|
5440
|
+
limitations under the License.
|
|
5441
|
+
--------------------------------------------------------------------------------
|
|
5442
|
+
flatbuffers
|
|
5443
|
+
|
|
5444
|
+
Copyright 2018 Dan Field
|
|
5445
|
+
|
|
5446
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5447
|
+
you may not use this file except in compliance with the License.
|
|
5448
|
+
You may obtain a copy of the License at
|
|
5449
|
+
|
|
5450
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5451
|
+
|
|
5452
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5453
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5454
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5455
|
+
See the License for the specific language governing permissions and
|
|
5456
|
+
limitations under the License.
|
|
5457
|
+
--------------------------------------------------------------------------------
|
|
5458
|
+
flatbuffers
|
|
5459
|
+
|
|
5460
|
+
Copyright 2018 Dan Field. All rights reserved.
|
|
5461
|
+
|
|
5462
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5463
|
+
you may not use this file except in compliance with the License.
|
|
5464
|
+
You may obtain a copy of the License at
|
|
5465
|
+
|
|
5466
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5467
|
+
|
|
5468
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5469
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5470
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5471
|
+
See the License for the specific language governing permissions and
|
|
5472
|
+
limitations under the License.
|
|
5473
|
+
--------------------------------------------------------------------------------
|
|
5474
|
+
flatbuffers
|
|
5475
|
+
|
|
5476
|
+
Copyright 2019 Google Inc. All rights reserved.
|
|
5477
|
+
|
|
5478
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5479
|
+
you may not use this file except in compliance with the License.
|
|
5480
|
+
You may obtain a copy of the License at
|
|
5481
|
+
|
|
5482
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5483
|
+
|
|
5484
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5485
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5486
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5487
|
+
See the License for the specific language governing permissions and
|
|
5488
|
+
limitations under the License.
|
|
5489
|
+
--------------------------------------------------------------------------------
|
|
5490
|
+
flatbuffers
|
|
5491
|
+
|
|
5492
|
+
Copyright 2022 Google Inc. All rights reserved.
|
|
5493
|
+
|
|
5494
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5495
|
+
you may not use this file except in compliance with the License.
|
|
5496
|
+
You may obtain a copy of the License at
|
|
5497
|
+
|
|
5498
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5499
|
+
|
|
5500
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5501
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5502
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5503
|
+
See the License for the specific language governing permissions and
|
|
5504
|
+
limitations under the License.
|
|
5505
|
+
--------------------------------------------------------------------------------
|
|
5506
|
+
flatbuffers
|
|
5507
|
+
|
|
5508
|
+
Copyright 2023 Google Inc. All rights reserved.
|
|
5509
|
+
|
|
5510
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5511
|
+
you may not use this file except in compliance with the License.
|
|
5512
|
+
You may obtain a copy of the License at
|
|
5513
|
+
|
|
5514
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5515
|
+
|
|
5516
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5517
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5518
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5519
|
+
See the License for the specific language governing permissions and
|
|
5520
|
+
limitations under the License.
|
|
5521
|
+
--------------------------------------------------------------------------------
|
|
5522
|
+
flatbuffers
|
|
5523
|
+
|
|
5524
|
+
Copyright 2024 Google Inc. All rights reserved.
|
|
5525
|
+
|
|
5526
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5527
|
+
you may not use this file except in compliance with the License.
|
|
5528
|
+
You may obtain a copy of the License at
|
|
5529
|
+
|
|
5530
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5531
|
+
|
|
5532
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5533
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5534
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5535
|
+
See the License for the specific language governing permissions and
|
|
5536
|
+
limitations under the License.
|
|
5537
|
+
--------------------------------------------------------------------------------
|
|
5538
|
+
flatbuffers
|
|
5539
|
+
gtest-parallel
|
|
5540
|
+
|
|
5541
|
+
Copyright 2017 Google Inc. All rights reserved.
|
|
5542
|
+
|
|
5543
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5544
|
+
you may not use this file except in compliance with the License.
|
|
5545
|
+
You may obtain a copy of the License at
|
|
5546
|
+
|
|
5547
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5548
|
+
|
|
5549
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5550
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5551
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5552
|
+
See the License for the specific language governing permissions and
|
|
5553
|
+
limitations under the License.
|
|
5554
|
+
--------------------------------------------------------------------------------
|
|
5555
|
+
flatbuffers
|
|
5556
|
+
shaderc
|
|
5557
|
+
|
|
5126
5558
|
Apache License
|
|
5127
5559
|
Version 2.0, January 2004
|
|
5128
5560
|
http://www.apache.org/licenses/
|
|
@@ -5300,198 +5732,14 @@ flatbuffers
|
|
|
5300
5732
|
|
|
5301
5733
|
END OF TERMS AND CONDITIONS
|
|
5302
5734
|
|
|
5303
|
-
|
|
5735
|
+
|
|
5736
|
+
--------------------------------------------------------------------------------
|
|
5737
|
+
flutter
|
|
5304
5738
|
|
|
5305
|
-
|
|
5306
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
5307
|
-
replaced with your own identifying information. (Don't include
|
|
5308
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
5309
|
-
comment syntax for the file format. We also recommend that a
|
|
5310
|
-
file or class name and description of purpose be included on the
|
|
5311
|
-
same "printed page" as the copyright notice for easier
|
|
5312
|
-
identification within third-party archives.
|
|
5739
|
+
Copyright 2014 The Flutter Authors. All rights reserved.
|
|
5313
5740
|
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5317
|
-
you may not use this file except in compliance with the License.
|
|
5318
|
-
You may obtain a copy of the License at
|
|
5319
|
-
|
|
5320
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5321
|
-
|
|
5322
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5323
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5324
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5325
|
-
See the License for the specific language governing permissions and
|
|
5326
|
-
limitations under the License.
|
|
5327
|
-
--------------------------------------------------------------------------------
|
|
5328
|
-
flatbuffers
|
|
5329
|
-
|
|
5330
|
-
Copyright 2014 Google Inc. All rights reserved.
|
|
5331
|
-
|
|
5332
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5333
|
-
you may not use this file except in compliance with the License.
|
|
5334
|
-
You may obtain a copy of the License at
|
|
5335
|
-
|
|
5336
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5337
|
-
|
|
5338
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5339
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5340
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5341
|
-
See the License for the specific language governing permissions and
|
|
5342
|
-
limitations under the License.
|
|
5343
|
-
--------------------------------------------------------------------------------
|
|
5344
|
-
flatbuffers
|
|
5345
|
-
|
|
5346
|
-
Copyright 2016 Google Inc. All rights reserved.
|
|
5347
|
-
|
|
5348
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5349
|
-
you may not use this file except in compliance with the License.
|
|
5350
|
-
You may obtain a copy of the License at
|
|
5351
|
-
|
|
5352
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5353
|
-
|
|
5354
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5355
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5356
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5357
|
-
See the License for the specific language governing permissions and
|
|
5358
|
-
limitations under the License.
|
|
5359
|
-
--------------------------------------------------------------------------------
|
|
5360
|
-
flatbuffers
|
|
5361
|
-
|
|
5362
|
-
Copyright 2018 Dan Field
|
|
5363
|
-
|
|
5364
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5365
|
-
you may not use this file except in compliance with the License.
|
|
5366
|
-
You may obtain a copy of the License at
|
|
5367
|
-
|
|
5368
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5369
|
-
|
|
5370
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5371
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5372
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5373
|
-
See the License for the specific language governing permissions and
|
|
5374
|
-
limitations under the License.
|
|
5375
|
-
--------------------------------------------------------------------------------
|
|
5376
|
-
flatbuffers
|
|
5377
|
-
|
|
5378
|
-
Copyright 2018 Dan Field. All rights reserved.
|
|
5379
|
-
|
|
5380
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5381
|
-
you may not use this file except in compliance with the License.
|
|
5382
|
-
You may obtain a copy of the License at
|
|
5383
|
-
|
|
5384
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5385
|
-
|
|
5386
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5387
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5388
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5389
|
-
See the License for the specific language governing permissions and
|
|
5390
|
-
limitations under the License.
|
|
5391
|
-
--------------------------------------------------------------------------------
|
|
5392
|
-
flatbuffers
|
|
5393
|
-
|
|
5394
|
-
Copyright 2019 Google Inc. All rights reserved.
|
|
5395
|
-
|
|
5396
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5397
|
-
you may not use this file except in compliance with the License.
|
|
5398
|
-
You may obtain a copy of the License at
|
|
5399
|
-
|
|
5400
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5401
|
-
|
|
5402
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5403
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5404
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5405
|
-
See the License for the specific language governing permissions and
|
|
5406
|
-
limitations under the License.
|
|
5407
|
-
--------------------------------------------------------------------------------
|
|
5408
|
-
flatbuffers
|
|
5409
|
-
|
|
5410
|
-
Copyright 2020 Google Inc. All rights reserved.
|
|
5411
|
-
|
|
5412
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5413
|
-
you may not use this file except in compliance with the License.
|
|
5414
|
-
You may obtain a copy of the License at
|
|
5415
|
-
|
|
5416
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5417
|
-
|
|
5418
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5419
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5420
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5421
|
-
See the License for the specific language governing permissions and
|
|
5422
|
-
limitations under the License.
|
|
5423
|
-
--------------------------------------------------------------------------------
|
|
5424
|
-
flatbuffers
|
|
5425
|
-
|
|
5426
|
-
Copyright 2022 Google Inc. All rights reserved.
|
|
5427
|
-
|
|
5428
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5429
|
-
you may not use this file except in compliance with the License.
|
|
5430
|
-
You may obtain a copy of the License at
|
|
5431
|
-
|
|
5432
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5433
|
-
|
|
5434
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5435
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5436
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5437
|
-
See the License for the specific language governing permissions and
|
|
5438
|
-
limitations under the License.
|
|
5439
|
-
--------------------------------------------------------------------------------
|
|
5440
|
-
flatbuffers
|
|
5441
|
-
|
|
5442
|
-
Copyright 2023 Google Inc. All rights reserved.
|
|
5443
|
-
|
|
5444
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5445
|
-
you may not use this file except in compliance with the License.
|
|
5446
|
-
You may obtain a copy of the License at
|
|
5447
|
-
|
|
5448
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5449
|
-
|
|
5450
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5451
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5452
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5453
|
-
See the License for the specific language governing permissions and
|
|
5454
|
-
limitations under the License.
|
|
5455
|
-
--------------------------------------------------------------------------------
|
|
5456
|
-
flatbuffers
|
|
5457
|
-
|
|
5458
|
-
Copyright 2024 Google Inc. All rights reserved.
|
|
5459
|
-
|
|
5460
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5461
|
-
you may not use this file except in compliance with the License.
|
|
5462
|
-
You may obtain a copy of the License at
|
|
5463
|
-
|
|
5464
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5465
|
-
|
|
5466
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5467
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5468
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5469
|
-
See the License for the specific language governing permissions and
|
|
5470
|
-
limitations under the License.
|
|
5471
|
-
--------------------------------------------------------------------------------
|
|
5472
|
-
flatbuffers
|
|
5473
|
-
gtest-parallel
|
|
5474
|
-
|
|
5475
|
-
Copyright 2017 Google Inc. All rights reserved.
|
|
5476
|
-
|
|
5477
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5478
|
-
you may not use this file except in compliance with the License.
|
|
5479
|
-
You may obtain a copy of the License at
|
|
5480
|
-
|
|
5481
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
5482
|
-
|
|
5483
|
-
Unless required by applicable law or agreed to in writing, software
|
|
5484
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5485
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5486
|
-
See the License for the specific language governing permissions and
|
|
5487
|
-
limitations under the License.
|
|
5488
|
-
--------------------------------------------------------------------------------
|
|
5489
|
-
flutter
|
|
5490
|
-
|
|
5491
|
-
Copyright 2014 The Flutter Authors. All rights reserved.
|
|
5492
|
-
|
|
5493
|
-
Redistribution and use in source and binary forms, with or without modification,
|
|
5494
|
-
are permitted provided that the following conditions are met:
|
|
5741
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
5742
|
+
are permitted provided that the following conditions are met:
|
|
5495
5743
|
|
|
5496
5744
|
* Redistributions of source code must retain the above copyright
|
|
5497
5745
|
notice, this list of conditions and the following disclaimer.
|
|
@@ -6060,7 +6308,7 @@ Introduction
|
|
|
6060
6308
|
|
|
6061
6309
|
"""
|
|
6062
6310
|
Portions of this software are copyright © <year> The FreeType
|
|
6063
|
-
Project (
|
|
6311
|
+
Project (https://freetype.org). All rights reserved.
|
|
6064
6312
|
"""
|
|
6065
6313
|
|
|
6066
6314
|
Please replace <year> with the value from the FreeType version you
|
|
@@ -6174,7 +6422,7 @@ Legal Terms
|
|
|
6174
6422
|
|
|
6175
6423
|
Our home page can be found at
|
|
6176
6424
|
|
|
6177
|
-
https://
|
|
6425
|
+
https://freetype.org
|
|
6178
6426
|
|
|
6179
6427
|
|
|
6180
6428
|
--- end of FTL.TXT ---
|
|
@@ -6311,10 +6559,41 @@ modification, are permitted.
|
|
|
6311
6559
|
There's ABSOLUTELY NO WARRANTY, express or implied.
|
|
6312
6560
|
--------------------------------------------------------------------------------
|
|
6313
6561
|
freetype2
|
|
6562
|
+
harfbuzz
|
|
6563
|
+
|
|
6564
|
+
Copyright © 2007,2008,2009 Red Hat, Inc.
|
|
6565
|
+
Copyright © 2011,2012 Google, Inc.
|
|
6566
|
+
|
|
6567
|
+
This is part of HarfBuzz, a text shaping library.
|
|
6568
|
+
|
|
6569
|
+
Permission is hereby granted, without written agreement and without
|
|
6570
|
+
license or royalty fees, to use, copy, modify, and distribute this
|
|
6571
|
+
software and its documentation for any purpose, provided that the
|
|
6572
|
+
above copyright notice and the following two paragraphs appear in
|
|
6573
|
+
all copies of this software.
|
|
6574
|
+
|
|
6575
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
6576
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
6577
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
6578
|
+
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
6579
|
+
DAMAGE.
|
|
6580
|
+
|
|
6581
|
+
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
6582
|
+
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
6583
|
+
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
6584
|
+
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
6585
|
+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
6586
|
+
|
|
6587
|
+
Red Hat Author(s): Behdad Esfahbod
|
|
6588
|
+
Google Author(s): Behdad Esfahbod
|
|
6589
|
+
|
|
6590
|
+
--------------------------------------------------------------------------------
|
|
6591
|
+
freetype2
|
|
6592
|
+
zlib
|
|
6314
6593
|
|
|
6315
|
-
version 1.
|
|
6594
|
+
version 1.3.1, January 22nd, 2024
|
|
6316
6595
|
|
|
6317
|
-
Copyright (C) 1995-
|
|
6596
|
+
Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
|
|
6318
6597
|
|
|
6319
6598
|
This software is provided 'as-is', without any express or implied
|
|
6320
6599
|
warranty. In no event will the authors be held liable for any damages
|
|
@@ -11027,6 +11306,31 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
11027
11306
|
|
|
11028
11307
|
Author(s): Behdad Esfahbod
|
|
11029
11308
|
|
|
11309
|
+
--------------------------------------------------------------------------------
|
|
11310
|
+
harfbuzz
|
|
11311
|
+
|
|
11312
|
+
This is part of HarfBuzz, a text shaping library.
|
|
11313
|
+
|
|
11314
|
+
Permission is hereby granted, without written agreement and without
|
|
11315
|
+
license or royalty fees, to use, copy, modify, and distribute this
|
|
11316
|
+
software and its documentation for any purpose, provided that the
|
|
11317
|
+
above copyright notice and the following two paragraphs appear in
|
|
11318
|
+
all copies of this software.
|
|
11319
|
+
|
|
11320
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
11321
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
11322
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
11323
|
+
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
11324
|
+
DAMAGE.
|
|
11325
|
+
|
|
11326
|
+
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
11327
|
+
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
11328
|
+
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
11329
|
+
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
11330
|
+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11331
|
+
|
|
11332
|
+
Author(s): Khaled Hosny
|
|
11333
|
+
|
|
11030
11334
|
--------------------------------------------------------------------------------
|
|
11031
11335
|
harfbuzz
|
|
11032
11336
|
|
|
@@ -11073,9 +11377,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
11073
11377
|
--------------------------------------------------------------------------------
|
|
11074
11378
|
harfbuzz
|
|
11075
11379
|
|
|
11076
|
-
Copyright
|
|
11077
|
-
Copyright © 2004,2007,2009 Red Hat, Inc.
|
|
11078
|
-
Copyright © 2011,2012 Google, Inc.
|
|
11380
|
+
Copyright (C) 2026 Behdad Esfahbod
|
|
11079
11381
|
|
|
11080
11382
|
This is part of HarfBuzz, a text shaping library.
|
|
11081
11383
|
|
|
@@ -11097,14 +11399,13 @@ FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
11097
11399
|
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
11098
11400
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11099
11401
|
|
|
11100
|
-
|
|
11101
|
-
Google Author(s): Behdad Esfahbod
|
|
11402
|
+
Author(s): Behdad Esfahbod
|
|
11102
11403
|
|
|
11103
11404
|
--------------------------------------------------------------------------------
|
|
11104
11405
|
harfbuzz
|
|
11105
11406
|
|
|
11106
11407
|
Copyright © 1998-2004 David Turner and Werner Lemberg
|
|
11107
|
-
Copyright © 2004,2007,2009
|
|
11408
|
+
Copyright © 2004,2007,2009 Red Hat, Inc.
|
|
11108
11409
|
Copyright © 2011,2012 Google, Inc.
|
|
11109
11410
|
|
|
11110
11411
|
This is part of HarfBuzz, a text shaping library.
|
|
@@ -11134,9 +11435,8 @@ Google Author(s): Behdad Esfahbod
|
|
|
11134
11435
|
harfbuzz
|
|
11135
11436
|
|
|
11136
11437
|
Copyright © 1998-2004 David Turner and Werner Lemberg
|
|
11137
|
-
Copyright ©
|
|
11138
|
-
Copyright ©
|
|
11139
|
-
Copyright © 2012,2013 Google, Inc.
|
|
11438
|
+
Copyright © 2004,2007,2009,2010 Red Hat, Inc.
|
|
11439
|
+
Copyright © 2011,2012 Google, Inc.
|
|
11140
11440
|
|
|
11141
11441
|
This is part of HarfBuzz, a text shaping library.
|
|
11142
11442
|
|
|
@@ -11158,15 +11458,16 @@ FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
11158
11458
|
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
11159
11459
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11160
11460
|
|
|
11161
|
-
Red Hat Author(s): Behdad Esfahbod
|
|
11461
|
+
Red Hat Author(s): Owen Taylor, Behdad Esfahbod
|
|
11162
11462
|
Google Author(s): Behdad Esfahbod
|
|
11163
11463
|
|
|
11164
11464
|
--------------------------------------------------------------------------------
|
|
11165
11465
|
harfbuzz
|
|
11166
11466
|
|
|
11167
|
-
Copyright ©
|
|
11168
|
-
Copyright ©
|
|
11169
|
-
Copyright ©
|
|
11467
|
+
Copyright © 1998-2004 David Turner and Werner Lemberg
|
|
11468
|
+
Copyright © 2006 Behdad Esfahbod
|
|
11469
|
+
Copyright © 2007,2008,2009 Red Hat, Inc.
|
|
11470
|
+
Copyright © 2012,2013 Google, Inc.
|
|
11170
11471
|
|
|
11171
11472
|
This is part of HarfBuzz, a text shaping library.
|
|
11172
11473
|
|
|
@@ -11188,15 +11489,15 @@ FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
11188
11489
|
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
11189
11490
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11190
11491
|
|
|
11191
|
-
Contributor(s):
|
|
11192
|
-
Chris Wilson <chris@chris-wilson.co.uk>
|
|
11193
11492
|
Red Hat Author(s): Behdad Esfahbod
|
|
11194
11493
|
Google Author(s): Behdad Esfahbod
|
|
11195
11494
|
|
|
11196
11495
|
--------------------------------------------------------------------------------
|
|
11197
11496
|
harfbuzz
|
|
11198
11497
|
|
|
11199
|
-
Copyright © 2007
|
|
11498
|
+
Copyright © 2007 Chris Wilson
|
|
11499
|
+
Copyright © 2009,2010 Red Hat, Inc.
|
|
11500
|
+
Copyright © 2011,2012 Google, Inc.
|
|
11200
11501
|
|
|
11201
11502
|
This is part of HarfBuzz, a text shaping library.
|
|
11202
11503
|
|
|
@@ -11218,13 +11519,15 @@ FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
11218
11519
|
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
11219
11520
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11220
11521
|
|
|
11522
|
+
Contributor(s):
|
|
11523
|
+
Chris Wilson <chris@chris-wilson.co.uk>
|
|
11221
11524
|
Red Hat Author(s): Behdad Esfahbod
|
|
11525
|
+
Google Author(s): Behdad Esfahbod
|
|
11222
11526
|
|
|
11223
11527
|
--------------------------------------------------------------------------------
|
|
11224
11528
|
harfbuzz
|
|
11225
11529
|
|
|
11226
11530
|
Copyright © 2007,2008,2009 Red Hat, Inc.
|
|
11227
|
-
Copyright © 2010,2011,2012 Google, Inc.
|
|
11228
11531
|
|
|
11229
11532
|
This is part of HarfBuzz, a text shaping library.
|
|
11230
11533
|
|
|
@@ -11247,13 +11550,12 @@ ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
11247
11550
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11248
11551
|
|
|
11249
11552
|
Red Hat Author(s): Behdad Esfahbod
|
|
11250
|
-
Google Author(s): Behdad Esfahbod
|
|
11251
11553
|
|
|
11252
11554
|
--------------------------------------------------------------------------------
|
|
11253
11555
|
harfbuzz
|
|
11254
11556
|
|
|
11255
11557
|
Copyright © 2007,2008,2009 Red Hat, Inc.
|
|
11256
|
-
Copyright © 2010,2012 Google, Inc.
|
|
11558
|
+
Copyright © 2010,2011,2012 Google, Inc.
|
|
11257
11559
|
|
|
11258
11560
|
This is part of HarfBuzz, a text shaping library.
|
|
11259
11561
|
|
|
@@ -11305,13 +11607,13 @@ ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
11305
11607
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11306
11608
|
|
|
11307
11609
|
Red Hat Author(s): Behdad Esfahbod
|
|
11308
|
-
Google Author(s): Behdad Esfahbod
|
|
11610
|
+
Google Author(s): Behdad Esfahbod
|
|
11309
11611
|
|
|
11310
11612
|
--------------------------------------------------------------------------------
|
|
11311
11613
|
harfbuzz
|
|
11312
11614
|
|
|
11313
11615
|
Copyright © 2007,2008,2009 Red Hat, Inc.
|
|
11314
|
-
Copyright ©
|
|
11616
|
+
Copyright © 2010,2012 Google, Inc.
|
|
11315
11617
|
|
|
11316
11618
|
This is part of HarfBuzz, a text shaping library.
|
|
11317
11619
|
|
|
@@ -11334,7 +11636,7 @@ ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
11334
11636
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
11335
11637
|
|
|
11336
11638
|
Red Hat Author(s): Behdad Esfahbod
|
|
11337
|
-
Google Author(s): Behdad Esfahbod
|
|
11639
|
+
Google Author(s): Behdad Esfahbod, Garret Rieger
|
|
11338
11640
|
|
|
11339
11641
|
--------------------------------------------------------------------------------
|
|
11340
11642
|
harfbuzz
|
|
@@ -14499,6 +14801,33 @@ ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
14499
14801
|
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
14500
14802
|
|
|
14501
14803
|
|
|
14804
|
+
--------------------------------------------------------------------------------
|
|
14805
|
+
harfbuzz
|
|
14806
|
+
|
|
14807
|
+
Copyright © 2023 Google, Inc.
|
|
14808
|
+
|
|
14809
|
+
This is part of HarfBuzz, a text shaping library.
|
|
14810
|
+
|
|
14811
|
+
Permission is hereby granted, without written agreement and without
|
|
14812
|
+
license or royalty fees, to use, copy, modify, and distribute this
|
|
14813
|
+
software and its documentation for any purpose, provided that the
|
|
14814
|
+
above copyright notice and the following two paragraphs appear in
|
|
14815
|
+
all copies of this software.
|
|
14816
|
+
|
|
14817
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
14818
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
14819
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
14820
|
+
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
14821
|
+
DAMAGE.
|
|
14822
|
+
|
|
14823
|
+
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
14824
|
+
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
14825
|
+
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
14826
|
+
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
14827
|
+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
14828
|
+
|
|
14829
|
+
Google Author(s): Garret Rieger, Qunxin Liu, Roderick Sheeter
|
|
14830
|
+
|
|
14502
14831
|
--------------------------------------------------------------------------------
|
|
14503
14832
|
harfbuzz
|
|
14504
14833
|
|
|
@@ -14660,6 +14989,33 @@ Author(s): Behdad Esfahbod
|
|
|
14660
14989
|
--------------------------------------------------------------------------------
|
|
14661
14990
|
harfbuzz
|
|
14662
14991
|
|
|
14992
|
+
Copyright © 2025 Google, Inc.
|
|
14993
|
+
|
|
14994
|
+
This is part of HarfBuzz, a text shaping library.
|
|
14995
|
+
|
|
14996
|
+
Permission is hereby granted, without written agreement and without
|
|
14997
|
+
license or royalty fees, to use, copy, modify, and distribute this
|
|
14998
|
+
software and its documentation for any purpose, provided that the
|
|
14999
|
+
above copyright notice and the following two paragraphs appear in
|
|
15000
|
+
all copies of this software.
|
|
15001
|
+
|
|
15002
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
15003
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
15004
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
15005
|
+
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
15006
|
+
DAMAGE.
|
|
15007
|
+
|
|
15008
|
+
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
15009
|
+
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
15010
|
+
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
15011
|
+
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
15012
|
+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
15013
|
+
|
|
15014
|
+
Google Author(s): Garret Rieger
|
|
15015
|
+
|
|
15016
|
+
--------------------------------------------------------------------------------
|
|
15017
|
+
harfbuzz
|
|
15018
|
+
|
|
14663
15019
|
Copyright © 2025 Behdad Esfahbod
|
|
14664
15020
|
|
|
14665
15021
|
This is part of HarfBuzz, a text shaping library.
|
|
@@ -14687,6 +15043,58 @@ Author(s): Behdad Esfahbod
|
|
|
14687
15043
|
--------------------------------------------------------------------------------
|
|
14688
15044
|
harfbuzz
|
|
14689
15045
|
|
|
15046
|
+
Copyright © 2026 Behdad Esfahbod
|
|
15047
|
+
|
|
15048
|
+
This is part of HarfBuzz, a text shaping library.
|
|
15049
|
+
|
|
15050
|
+
Permission is hereby granted, without written agreement and without
|
|
15051
|
+
license or royalty fees, to use, copy, modify, and distribute this
|
|
15052
|
+
software and its documentation for any purpose, provided that the
|
|
15053
|
+
above copyright notice and the following two paragraphs appear in
|
|
15054
|
+
all copies of this software.
|
|
15055
|
+
|
|
15056
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
15057
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
15058
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
15059
|
+
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
15060
|
+
DAMAGE.
|
|
15061
|
+
|
|
15062
|
+
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
15063
|
+
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
15064
|
+
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
15065
|
+
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
15066
|
+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
15067
|
+
|
|
15068
|
+
Author(s): Behdad Esfahbod
|
|
15069
|
+
|
|
15070
|
+
--------------------------------------------------------------------------------
|
|
15071
|
+
harfbuzz
|
|
15072
|
+
|
|
15073
|
+
Copyright © 2026 Behdad Esfahbod
|
|
15074
|
+
|
|
15075
|
+
This is part of HarfBuzz, a text shaping library.
|
|
15076
|
+
|
|
15077
|
+
Permission is hereby granted, without written agreement and without
|
|
15078
|
+
license or royalty fees, to use, copy, modify, and distribute this
|
|
15079
|
+
software and its documentation for any purpose, provided that the
|
|
15080
|
+
above copyright notice and the following two paragraphs appear in
|
|
15081
|
+
all copies of this software.
|
|
15082
|
+
|
|
15083
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
15084
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
15085
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
15086
|
+
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
15087
|
+
DAMAGE.
|
|
15088
|
+
|
|
15089
|
+
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
15090
|
+
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
15091
|
+
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
15092
|
+
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
15093
|
+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
15094
|
+
|
|
15095
|
+
--------------------------------------------------------------------------------
|
|
15096
|
+
harfbuzz
|
|
15097
|
+
|
|
14690
15098
|
HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
|
|
14691
15099
|
For parts of HarfBuzz that are licensed under different licenses see individual
|
|
14692
15100
|
files names COPYING in subdirectories where applicable.
|
|
@@ -23613,8 +24021,8 @@ libpng
|
|
|
23613
24021
|
PNG Reference Library License version 2
|
|
23614
24022
|
---------------------------------------
|
|
23615
24023
|
|
|
23616
|
-
* Copyright (c) 1995-
|
|
23617
|
-
* Copyright (c) 2018-
|
|
24024
|
+
* Copyright (c) 1995-2026 The PNG Reference Library Authors.
|
|
24025
|
+
* Copyright (c) 2018-2026 Cosmin Truta.
|
|
23618
24026
|
* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
|
|
23619
24027
|
* Copyright (c) 1996-1997 Andreas Dilger.
|
|
23620
24028
|
* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
|
|
@@ -23748,8 +24156,8 @@ libpng
|
|
|
23748
24156
|
PNG Reference Library License version 2
|
|
23749
24157
|
---------------------------------------
|
|
23750
24158
|
|
|
23751
|
-
* Copyright (c) 1995-
|
|
23752
|
-
* Copyright (c) 2018-
|
|
24159
|
+
* Copyright (c) 1995-2026 The PNG Reference Library Authors.
|
|
24160
|
+
* Copyright (c) 2018-2026 Cosmin Truta.
|
|
23753
24161
|
* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
|
|
23754
24162
|
* Copyright (c) 1996-1997 Andreas Dilger.
|
|
23755
24163
|
* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
|
|
@@ -25524,6 +25932,54 @@ perfetto
|
|
|
25524
25932
|
--------------------------------------------------------------------------------
|
|
25525
25933
|
perfetto
|
|
25526
25934
|
|
|
25935
|
+
Copyright (C) 2017 The Android Open Source Project
|
|
25936
|
+
|
|
25937
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
25938
|
+
you may not use this file except in compliance with the
|
|
25939
|
+
License. You may obtain a copy of the License at
|
|
25940
|
+
|
|
25941
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
25942
|
+
|
|
25943
|
+
Unless required by applicable law or agreed to in writing,
|
|
25944
|
+
software distributed under the License is distributed on an "AS
|
|
25945
|
+
IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
|
25946
|
+
express or implied. See the License for the specific language
|
|
25947
|
+
governing permissions and limitations under the License.
|
|
25948
|
+
--------------------------------------------------------------------------------
|
|
25949
|
+
perfetto
|
|
25950
|
+
|
|
25951
|
+
Copyright (C) 2017 The Android Open Source Project
|
|
25952
|
+
|
|
25953
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
25954
|
+
you may not use this file except in compliance with the License.
|
|
25955
|
+
You may obtain a copy of the License at
|
|
25956
|
+
|
|
25957
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
25958
|
+
|
|
25959
|
+
Unless required by applicable law or agreed to in writing, software
|
|
25960
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
25961
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
25962
|
+
See the License for the specific language governing permissions and
|
|
25963
|
+
limitations under the License.
|
|
25964
|
+
--------------------------------------------------------------------------------
|
|
25965
|
+
perfetto
|
|
25966
|
+
|
|
25967
|
+
Copyright (C) 2018 The Android Open Source Project
|
|
25968
|
+
|
|
25969
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
25970
|
+
you may not use this file except in compliance with the License.
|
|
25971
|
+
You may obtain a copy of the License at
|
|
25972
|
+
|
|
25973
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
25974
|
+
|
|
25975
|
+
Unless required by applicable law or agreed to in writing,
|
|
25976
|
+
software distributed under the License is distributed on an "AS
|
|
25977
|
+
IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
|
25978
|
+
express or implied. See the License for the specific language
|
|
25979
|
+
governing permissions and limitations under the License.
|
|
25980
|
+
--------------------------------------------------------------------------------
|
|
25981
|
+
perfetto
|
|
25982
|
+
|
|
25527
25983
|
Copyright (c) 2019 The Android Open Source Project
|
|
25528
25984
|
|
|
25529
25985
|
Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
@@ -25938,42 +26394,10 @@ in compliance with the License-> You may obtain a copy of the License at
|
|
|
25938
26394
|
|
|
25939
26395
|
http://opensource->org/licenses/MIT
|
|
25940
26396
|
|
|
25941
|
-
Unless required by applicable law or agreed to in writing, software distributed
|
|
25942
|
-
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
25943
|
-
CONDITIONS OF ANY KIND, either express or implied-> See the License for the
|
|
25944
|
-
specific language governing permissions and limitations under the License->
|
|
25945
|
-
--------------------------------------------------------------------------------
|
|
25946
|
-
rapidjson
|
|
25947
|
-
|
|
25948
|
-
Tencent is pleased to support the open source community by making RapidJSON available.
|
|
25949
|
-
|
|
25950
|
-
Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
|
|
25951
|
-
|
|
25952
|
-
Licensed under the MIT License (the "License"); you may not use this file except
|
|
25953
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
25954
|
-
|
|
25955
|
-
http://opensource.org/licenses/MIT
|
|
25956
|
-
|
|
25957
26397
|
Unless required by applicable law or agreed to in writing, software distributed
|
|
25958
26398
|
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
25959
|
-
CONDITIONS OF ANY KIND, either express or implied
|
|
25960
|
-
specific language governing permissions and limitations under the License
|
|
25961
|
-
--------------------------------------------------------------------------------
|
|
25962
|
-
rapidjson
|
|
25963
|
-
|
|
25964
|
-
Tencent is pleased to support the open source community by making RapidJSON available.
|
|
25965
|
-
|
|
25966
|
-
Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
|
|
25967
|
-
|
|
25968
|
-
Licensed under the MIT License (the "License"); you may not use this file except
|
|
25969
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
25970
|
-
|
|
25971
|
-
http://opensource.org/licenses/MIT
|
|
25972
|
-
|
|
25973
|
-
Unless required by applicable law or agreed to in writing, software distributed
|
|
25974
|
-
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
25975
|
-
CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
25976
|
-
specific language governing permissions and limitations under the License.
|
|
26399
|
+
CONDITIONS OF ANY KIND, either express or implied-> See the License for the
|
|
26400
|
+
specific language governing permissions and limitations under the License->
|
|
25977
26401
|
--------------------------------------------------------------------------------
|
|
25978
26402
|
rapidjson
|
|
25979
26403
|
|
|
@@ -26221,249 +26645,45 @@ record_windows
|
|
|
26221
26645
|
--------------------------------------------------------------------------------
|
|
26222
26646
|
shaderc
|
|
26223
26647
|
|
|
26224
|
-
|
|
26225
|
-
Version 2.0, January 2004
|
|
26226
|
-
http://www.apache.org/licenses/
|
|
26227
|
-
|
|
26228
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
26229
|
-
|
|
26230
|
-
1. Definitions.
|
|
26648
|
+
Copyright (C) 2017 Google Inc.
|
|
26231
26649
|
|
|
26232
|
-
|
|
26233
|
-
|
|
26650
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
26651
|
+
you may not use this file except in compliance with the License.
|
|
26652
|
+
You may obtain a copy of the License at
|
|
26234
26653
|
|
|
26235
|
-
|
|
26236
|
-
the copyright owner that is granting the License.
|
|
26654
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
26237
26655
|
|
|
26238
|
-
|
|
26239
|
-
|
|
26240
|
-
|
|
26241
|
-
|
|
26242
|
-
|
|
26243
|
-
|
|
26244
|
-
|
|
26656
|
+
Unless required by applicable law or agreed to in writing, software
|
|
26657
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
26658
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26659
|
+
See the License for the specific language governing permissions and
|
|
26660
|
+
limitations under the License.
|
|
26661
|
+
--------------------------------------------------------------------------------
|
|
26662
|
+
shaderc
|
|
26245
26663
|
|
|
26246
|
-
|
|
26247
|
-
exercising permissions granted by this License.
|
|
26664
|
+
Copyright (C) 2017-2022 Google Inc.
|
|
26248
26665
|
|
|
26249
|
-
|
|
26250
|
-
|
|
26251
|
-
|
|
26666
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
26667
|
+
you may not use this file except in compliance with the License.
|
|
26668
|
+
You may obtain a copy of the License at
|
|
26252
26669
|
|
|
26253
|
-
|
|
26254
|
-
transformation or translation of a Source form, including but
|
|
26255
|
-
not limited to compiled object code, generated documentation,
|
|
26256
|
-
and conversions to other media types.
|
|
26670
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
26257
26671
|
|
|
26258
|
-
|
|
26259
|
-
|
|
26260
|
-
|
|
26261
|
-
|
|
26672
|
+
Unless required by applicable law or agreed to in writing, software
|
|
26673
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
26674
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26675
|
+
See the License for the specific language governing permissions and
|
|
26676
|
+
limitations under the License.
|
|
26677
|
+
--------------------------------------------------------------------------------
|
|
26678
|
+
shaderc
|
|
26262
26679
|
|
|
26263
|
-
|
|
26264
|
-
form, that is based on (or derived from) the Work and for which the
|
|
26265
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
26266
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
26267
|
-
of this License, Derivative Works shall not include works that remain
|
|
26268
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
26269
|
-
the Work and Derivative Works thereof.
|
|
26680
|
+
Copyright (C) 2020 Google Inc.
|
|
26270
26681
|
|
|
26271
|
-
|
|
26272
|
-
|
|
26273
|
-
|
|
26274
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
26275
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
26276
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
26277
|
-
means any form of electronic, verbal, or written communication sent
|
|
26278
|
-
to the Licensor or its representatives, including but not limited to
|
|
26279
|
-
communication on electronic mailing lists, source code control systems,
|
|
26280
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
26281
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
26282
|
-
excluding communication that is conspicuously marked or otherwise
|
|
26283
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
26682
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
26683
|
+
you may not use this file except in compliance with the License.
|
|
26684
|
+
You may obtain a copy of the License at
|
|
26284
26685
|
|
|
26285
|
-
|
|
26286
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
26287
|
-
subsequently incorporated within the Work.
|
|
26288
|
-
|
|
26289
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
26290
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
26291
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
26292
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
26293
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
26294
|
-
Work and such Derivative Works in Source or Object form.
|
|
26295
|
-
|
|
26296
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
26297
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
26298
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
26299
|
-
(except as stated in this section) patent license to make, have made,
|
|
26300
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
26301
|
-
where such license applies only to those patent claims licensable
|
|
26302
|
-
by such Contributor that are necessarily infringed by their
|
|
26303
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
26304
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
26305
|
-
institute patent litigation against any entity (including a
|
|
26306
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
26307
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
26308
|
-
or contributory patent infringement, then any patent licenses
|
|
26309
|
-
granted to You under this License for that Work shall terminate
|
|
26310
|
-
as of the date such litigation is filed.
|
|
26311
|
-
|
|
26312
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
26313
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
26314
|
-
modifications, and in Source or Object form, provided that You
|
|
26315
|
-
meet the following conditions:
|
|
26316
|
-
|
|
26317
|
-
(a) You must give any other recipients of the Work or
|
|
26318
|
-
Derivative Works a copy of this License; and
|
|
26319
|
-
|
|
26320
|
-
(b) You must cause any modified files to carry prominent notices
|
|
26321
|
-
stating that You changed the files; and
|
|
26322
|
-
|
|
26323
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
26324
|
-
that You distribute, all copyright, patent, trademark, and
|
|
26325
|
-
attribution notices from the Source form of the Work,
|
|
26326
|
-
excluding those notices that do not pertain to any part of
|
|
26327
|
-
the Derivative Works; and
|
|
26328
|
-
|
|
26329
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
26330
|
-
distribution, then any Derivative Works that You distribute must
|
|
26331
|
-
include a readable copy of the attribution notices contained
|
|
26332
|
-
within such NOTICE file, excluding those notices that do not
|
|
26333
|
-
pertain to any part of the Derivative Works, in at least one
|
|
26334
|
-
of the following places: within a NOTICE text file distributed
|
|
26335
|
-
as part of the Derivative Works; within the Source form or
|
|
26336
|
-
documentation, if provided along with the Derivative Works; or,
|
|
26337
|
-
within a display generated by the Derivative Works, if and
|
|
26338
|
-
wherever such third-party notices normally appear. The contents
|
|
26339
|
-
of the NOTICE file are for informational purposes only and
|
|
26340
|
-
do not modify the License. You may add Your own attribution
|
|
26341
|
-
notices within Derivative Works that You distribute, alongside
|
|
26342
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
26343
|
-
that such additional attribution notices cannot be construed
|
|
26344
|
-
as modifying the License.
|
|
26345
|
-
|
|
26346
|
-
You may add Your own copyright statement to Your modifications and
|
|
26347
|
-
may provide additional or different license terms and conditions
|
|
26348
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
26349
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
26350
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
26351
|
-
the conditions stated in this License.
|
|
26352
|
-
|
|
26353
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
26354
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
26355
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
26356
|
-
this License, without any additional terms or conditions.
|
|
26357
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
26358
|
-
the terms of any separate license agreement you may have executed
|
|
26359
|
-
with Licensor regarding such Contributions.
|
|
26360
|
-
|
|
26361
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
26362
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
26363
|
-
except as required for reasonable and customary use in describing the
|
|
26364
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
26365
|
-
|
|
26366
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
26367
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
26368
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
26369
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
26370
|
-
implied, including, without limitation, any warranties or conditions
|
|
26371
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
26372
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
26373
|
-
appropriateness of using or redistributing the Work and assume any
|
|
26374
|
-
risks associated with Your exercise of permissions under this License.
|
|
26375
|
-
|
|
26376
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
26377
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
26378
|
-
unless required by applicable law (such as deliberate and grossly
|
|
26379
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
26380
|
-
liable to You for damages, including any direct, indirect, special,
|
|
26381
|
-
incidental, or consequential damages of any character arising as a
|
|
26382
|
-
result of this License or out of the use or inability to use the
|
|
26383
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
26384
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
26385
|
-
other commercial damages or losses), even if such Contributor
|
|
26386
|
-
has been advised of the possibility of such damages.
|
|
26387
|
-
|
|
26388
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
26389
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
26390
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
26391
|
-
or other liability obligations and/or rights consistent with this
|
|
26392
|
-
License. However, in accepting such obligations, You may act only
|
|
26393
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
26394
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
26395
|
-
defend, and hold each Contributor harmless for any liability
|
|
26396
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
26397
|
-
of your accepting any such warranty or additional liability.
|
|
26398
|
-
|
|
26399
|
-
END OF TERMS AND CONDITIONS
|
|
26400
|
-
|
|
26401
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
26402
|
-
|
|
26403
|
-
To apply the Apache License to your work, attach the following
|
|
26404
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
26405
|
-
replaced with your own identifying information. (Don't include
|
|
26406
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
26407
|
-
comment syntax for the file format. We also recommend that a
|
|
26408
|
-
file or class name and description of purpose be included on the
|
|
26409
|
-
same "printed page" as the copyright notice for easier
|
|
26410
|
-
identification within third-party archives.
|
|
26411
|
-
|
|
26412
|
-
Copyright [yyyy] [name of copyright owner]
|
|
26413
|
-
|
|
26414
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
26415
|
-
you may not use this file except in compliance with the License.
|
|
26416
|
-
You may obtain a copy of the License at
|
|
26417
|
-
|
|
26418
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
26419
|
-
|
|
26420
|
-
Unless required by applicable law or agreed to in writing, software
|
|
26421
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
26422
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26423
|
-
See the License for the specific language governing permissions and
|
|
26424
|
-
limitations under the License.
|
|
26425
|
-
--------------------------------------------------------------------------------
|
|
26426
|
-
shaderc
|
|
26427
|
-
|
|
26428
|
-
Copyright (C) 2017 Google Inc.
|
|
26429
|
-
|
|
26430
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
26431
|
-
you may not use this file except in compliance with the License.
|
|
26432
|
-
You may obtain a copy of the License at
|
|
26433
|
-
|
|
26434
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
26435
|
-
|
|
26436
|
-
Unless required by applicable law or agreed to in writing, software
|
|
26437
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
26438
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26439
|
-
See the License for the specific language governing permissions and
|
|
26440
|
-
limitations under the License.
|
|
26441
|
-
--------------------------------------------------------------------------------
|
|
26442
|
-
shaderc
|
|
26443
|
-
|
|
26444
|
-
Copyright (C) 2017-2022 Google Inc.
|
|
26445
|
-
|
|
26446
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
26447
|
-
you may not use this file except in compliance with the License.
|
|
26448
|
-
You may obtain a copy of the License at
|
|
26449
|
-
|
|
26450
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
26451
|
-
|
|
26452
|
-
Unless required by applicable law or agreed to in writing, software
|
|
26453
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
26454
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26455
|
-
See the License for the specific language governing permissions and
|
|
26456
|
-
limitations under the License.
|
|
26457
|
-
--------------------------------------------------------------------------------
|
|
26458
|
-
shaderc
|
|
26459
|
-
|
|
26460
|
-
Copyright (C) 2020 Google Inc.
|
|
26461
|
-
|
|
26462
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
26463
|
-
you may not use this file except in compliance with the License.
|
|
26464
|
-
You may obtain a copy of the License at
|
|
26465
|
-
|
|
26466
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
26686
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
26467
26687
|
|
|
26468
26688
|
Unless required by applicable law or agreed to in writing, software
|
|
26469
26689
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
@@ -26577,232 +26797,27 @@ All rights reserved.
|
|
|
26577
26797
|
Redistribution and use in source and binary forms, with or without
|
|
26578
26798
|
modification, are permitted provided that the following conditions are met:
|
|
26579
26799
|
|
|
26580
|
-
* Redistributions of source code must retain the above copyright notice, this
|
|
26581
|
-
list of conditions and the following disclaimer.
|
|
26582
|
-
|
|
26583
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
|
26584
|
-
this list of conditions and the following disclaimer in the documentation
|
|
26585
|
-
and/or other materials provided with the distribution.
|
|
26586
|
-
|
|
26587
|
-
* Neither the name of the copyright holder nor the names of its
|
|
26588
|
-
contributors may be used to endorse or promote products derived from
|
|
26589
|
-
this software without specific prior written permission.
|
|
26590
|
-
|
|
26591
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
26592
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
26593
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
26594
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
26595
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
26596
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26597
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26598
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
26599
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26600
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
26601
|
-
--------------------------------------------------------------------------------
|
|
26602
|
-
skia
|
|
26603
|
-
|
|
26604
|
-
|
|
26605
|
-
Apache License
|
|
26606
|
-
Version 2.0, January 2004
|
|
26607
|
-
http://www.apache.org/licenses/
|
|
26608
|
-
|
|
26609
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
26610
|
-
|
|
26611
|
-
1. Definitions.
|
|
26612
|
-
|
|
26613
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
26614
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
26615
|
-
|
|
26616
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
26617
|
-
the copyright owner that is granting the License.
|
|
26618
|
-
|
|
26619
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
26620
|
-
other entities that control, are controlled by, or are under common
|
|
26621
|
-
control with that entity. For the purposes of this definition,
|
|
26622
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
26623
|
-
direction or management of such entity, whether by contract or
|
|
26624
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
26625
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
26626
|
-
|
|
26627
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
26628
|
-
exercising permissions granted by this License.
|
|
26629
|
-
|
|
26630
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
26631
|
-
including but not limited to software source code, documentation
|
|
26632
|
-
source, and configuration files.
|
|
26633
|
-
|
|
26634
|
-
"Object" form shall mean any form resulting from mechanical
|
|
26635
|
-
transformation or translation of a Source form, including but
|
|
26636
|
-
not limited to compiled object code, generated documentation,
|
|
26637
|
-
and conversions to other media types.
|
|
26638
|
-
|
|
26639
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
26640
|
-
Object form, made available under the License, as indicated by a
|
|
26641
|
-
copyright notice that is included in or attached to the work
|
|
26642
|
-
(an example is provided in the Appendix below).
|
|
26643
|
-
|
|
26644
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
26645
|
-
form, that is based on (or derived from) the Work and for which the
|
|
26646
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
26647
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
26648
|
-
of this License, Derivative Works shall not include works that remain
|
|
26649
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
26650
|
-
the Work and Derivative Works thereof.
|
|
26651
|
-
|
|
26652
|
-
"Contribution" shall mean any work of authorship, including
|
|
26653
|
-
the original version of the Work and any modifications or additions
|
|
26654
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
26655
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
26656
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
26657
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
26658
|
-
means any form of electronic, verbal, or written communication sent
|
|
26659
|
-
to the Licensor or its representatives, including but not limited to
|
|
26660
|
-
communication on electronic mailing lists, source code control systems,
|
|
26661
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
26662
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
26663
|
-
excluding communication that is conspicuously marked or otherwise
|
|
26664
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
26665
|
-
|
|
26666
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
26667
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
26668
|
-
subsequently incorporated within the Work.
|
|
26669
|
-
|
|
26670
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
26671
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
26672
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
26673
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
26674
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
26675
|
-
Work and such Derivative Works in Source or Object form.
|
|
26676
|
-
|
|
26677
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
26678
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
26679
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
26680
|
-
(except as stated in this section) patent license to make, have made,
|
|
26681
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
26682
|
-
where such license applies only to those patent claims licensable
|
|
26683
|
-
by such Contributor that are necessarily infringed by their
|
|
26684
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
26685
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
26686
|
-
institute patent litigation against any entity (including a
|
|
26687
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
26688
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
26689
|
-
or contributory patent infringement, then any patent licenses
|
|
26690
|
-
granted to You under this License for that Work shall terminate
|
|
26691
|
-
as of the date such litigation is filed.
|
|
26692
|
-
|
|
26693
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
26694
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
26695
|
-
modifications, and in Source or Object form, provided that You
|
|
26696
|
-
meet the following conditions:
|
|
26697
|
-
|
|
26698
|
-
(a) You must give any other recipients of the Work or
|
|
26699
|
-
Derivative Works a copy of this License; and
|
|
26700
|
-
|
|
26701
|
-
(b) You must cause any modified files to carry prominent notices
|
|
26702
|
-
stating that You changed the files; and
|
|
26703
|
-
|
|
26704
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
26705
|
-
that You distribute, all copyright, patent, trademark, and
|
|
26706
|
-
attribution notices from the Source form of the Work,
|
|
26707
|
-
excluding those notices that do not pertain to any part of
|
|
26708
|
-
the Derivative Works; and
|
|
26709
|
-
|
|
26710
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
26711
|
-
distribution, then any Derivative Works that You distribute must
|
|
26712
|
-
include a readable copy of the attribution notices contained
|
|
26713
|
-
within such NOTICE file, excluding those notices that do not
|
|
26714
|
-
pertain to any part of the Derivative Works, in at least one
|
|
26715
|
-
of the following places: within a NOTICE text file distributed
|
|
26716
|
-
as part of the Derivative Works; within the Source form or
|
|
26717
|
-
documentation, if provided along with the Derivative Works; or,
|
|
26718
|
-
within a display generated by the Derivative Works, if and
|
|
26719
|
-
wherever such third-party notices normally appear. The contents
|
|
26720
|
-
of the NOTICE file are for informational purposes only and
|
|
26721
|
-
do not modify the License. You may add Your own attribution
|
|
26722
|
-
notices within Derivative Works that You distribute, alongside
|
|
26723
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
26724
|
-
that such additional attribution notices cannot be construed
|
|
26725
|
-
as modifying the License.
|
|
26726
|
-
|
|
26727
|
-
You may add Your own copyright statement to Your modifications and
|
|
26728
|
-
may provide additional or different license terms and conditions
|
|
26729
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
26730
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
26731
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
26732
|
-
the conditions stated in this License.
|
|
26733
|
-
|
|
26734
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
26735
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
26736
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
26737
|
-
this License, without any additional terms or conditions.
|
|
26738
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
26739
|
-
the terms of any separate license agreement you may have executed
|
|
26740
|
-
with Licensor regarding such Contributions.
|
|
26741
|
-
|
|
26742
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
26743
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
26744
|
-
except as required for reasonable and customary use in describing the
|
|
26745
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
26746
|
-
|
|
26747
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
26748
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
26749
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
26750
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
26751
|
-
implied, including, without limitation, any warranties or conditions
|
|
26752
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
26753
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
26754
|
-
appropriateness of using or redistributing the Work and assume any
|
|
26755
|
-
risks associated with Your exercise of permissions under this License.
|
|
26756
|
-
|
|
26757
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
26758
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
26759
|
-
unless required by applicable law (such as deliberate and grossly
|
|
26760
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
26761
|
-
liable to You for damages, including any direct, indirect, special,
|
|
26762
|
-
incidental, or consequential damages of any character arising as a
|
|
26763
|
-
result of this License or out of the use or inability to use the
|
|
26764
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
26765
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
26766
|
-
other commercial damages or losses), even if such Contributor
|
|
26767
|
-
has been advised of the possibility of such damages.
|
|
26768
|
-
|
|
26769
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
26770
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
26771
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
26772
|
-
or other liability obligations and/or rights consistent with this
|
|
26773
|
-
License. However, in accepting such obligations, You may act only
|
|
26774
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
26775
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
26776
|
-
defend, and hold each Contributor harmless for any liability
|
|
26777
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
26778
|
-
of your accepting any such warranty or additional liability.
|
|
26779
|
-
|
|
26780
|
-
END OF TERMS AND CONDITIONS
|
|
26781
|
-
|
|
26782
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
26783
|
-
|
|
26784
|
-
To apply the Apache License to your work, attach the following
|
|
26785
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
26786
|
-
replaced with your own identifying information. (Don't include
|
|
26787
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
26788
|
-
comment syntax for the file format. We also recommend that a
|
|
26789
|
-
file or class name and description of purpose be included on the
|
|
26790
|
-
same "printed page" as the copyright notice for easier
|
|
26791
|
-
identification within third-party archives.
|
|
26792
|
-
|
|
26793
|
-
Copyright 2021 Google LLC
|
|
26800
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
26801
|
+
list of conditions and the following disclaimer.
|
|
26794
26802
|
|
|
26795
|
-
|
|
26796
|
-
|
|
26797
|
-
|
|
26803
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
26804
|
+
this list of conditions and the following disclaimer in the documentation
|
|
26805
|
+
and/or other materials provided with the distribution.
|
|
26798
26806
|
|
|
26799
|
-
|
|
26807
|
+
* Neither the name of the copyright holder nor the names of its
|
|
26808
|
+
contributors may be used to endorse or promote products derived from
|
|
26809
|
+
this software without specific prior written permission.
|
|
26800
26810
|
|
|
26801
|
-
|
|
26802
|
-
|
|
26803
|
-
|
|
26804
|
-
|
|
26805
|
-
|
|
26811
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
26812
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
26813
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
26814
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
26815
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
26816
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26817
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26818
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
26819
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26820
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
26806
26821
|
--------------------------------------------------------------------------------
|
|
26807
26822
|
skia
|
|
26808
26823
|
|
|
@@ -26836,13 +26851,6 @@ skia
|
|
|
26836
26851
|
--------------------------------------------------------------------------------
|
|
26837
26852
|
skia
|
|
26838
26853
|
|
|
26839
|
-
Copyright %s %s
|
|
26840
|
-
|
|
26841
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
26842
|
-
found in the LICENSE file.
|
|
26843
|
-
--------------------------------------------------------------------------------
|
|
26844
|
-
skia
|
|
26845
|
-
|
|
26846
26854
|
Copyright (C) 2014 Google Inc. All rights reserved.
|
|
26847
26855
|
|
|
26848
26856
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -26907,13 +26915,13 @@ found in the LICENSE file.
|
|
|
26907
26915
|
--------------------------------------------------------------------------------
|
|
26908
26916
|
skia
|
|
26909
26917
|
|
|
26910
|
-
Copyright (c) 2020 Google LLC
|
|
26918
|
+
Copyright (c) 2020 Google LLC All rights reserved.
|
|
26911
26919
|
Use of this source code is governed by a BSD-style license that can be
|
|
26912
26920
|
found in the LICENSE file.
|
|
26913
26921
|
--------------------------------------------------------------------------------
|
|
26914
26922
|
skia
|
|
26915
26923
|
|
|
26916
|
-
Copyright (c) 2022 Google LLC
|
|
26924
|
+
Copyright (c) 2022 Google LLC All rights reserved.
|
|
26917
26925
|
Use of this source code is governed by a BSD-style license that can be
|
|
26918
26926
|
found in the LICENSE file.
|
|
26919
26927
|
--------------------------------------------------------------------------------
|
|
@@ -27025,13 +27033,6 @@ found in the LICENSE file.
|
|
|
27025
27033
|
--------------------------------------------------------------------------------
|
|
27026
27034
|
skia
|
|
27027
27035
|
|
|
27028
|
-
Copyright 2012 Google LLC
|
|
27029
|
-
|
|
27030
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27031
|
-
found in the LICENSE file.
|
|
27032
|
-
--------------------------------------------------------------------------------
|
|
27033
|
-
skia
|
|
27034
|
-
|
|
27035
27036
|
Copyright 2012 The Android Open Source Project
|
|
27036
27037
|
|
|
27037
27038
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27111,6 +27112,13 @@ found in the LICENSE file.
|
|
|
27111
27112
|
--------------------------------------------------------------------------------
|
|
27112
27113
|
skia
|
|
27113
27114
|
|
|
27115
|
+
Copyright 2015 Google LLC
|
|
27116
|
+
|
|
27117
|
+
Use of this source code is governed by a BSD-style license that can be
|
|
27118
|
+
found in the LICENSE file.
|
|
27119
|
+
--------------------------------------------------------------------------------
|
|
27120
|
+
skia
|
|
27121
|
+
|
|
27114
27122
|
Copyright 2015 The Android Open Source Project
|
|
27115
27123
|
|
|
27116
27124
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27154,41 +27162,45 @@ found in the LICENSE file.
|
|
|
27154
27162
|
--------------------------------------------------------------------------------
|
|
27155
27163
|
skia
|
|
27156
27164
|
|
|
27157
|
-
Copyright 2017 Google
|
|
27165
|
+
Copyright 2017 Google LLC
|
|
27158
27166
|
|
|
27159
27167
|
Use of this source code is governed by a BD-style license that can be
|
|
27160
27168
|
found in the LICENSE file.
|
|
27161
27169
|
--------------------------------------------------------------------------------
|
|
27162
27170
|
skia
|
|
27163
27171
|
|
|
27164
|
-
Copyright 2017 Google
|
|
27172
|
+
Copyright 2017 Google LLC
|
|
27165
27173
|
|
|
27166
27174
|
Use of this source code is governed by a BSD-style license that can be
|
|
27167
27175
|
found in the LICENSE file.
|
|
27168
27176
|
--------------------------------------------------------------------------------
|
|
27169
27177
|
skia
|
|
27170
27178
|
|
|
27171
|
-
Copyright 2017 Google
|
|
27179
|
+
Copyright 2017 Google LLC
|
|
27172
27180
|
|
|
27173
27181
|
Use of this source code is governed by a BSD-style license that can be found
|
|
27174
27182
|
in the LICENSE file.
|
|
27175
27183
|
--------------------------------------------------------------------------------
|
|
27176
27184
|
skia
|
|
27177
27185
|
|
|
27178
|
-
Copyright
|
|
27186
|
+
Copyright 2017 Google LLC All Rights Reserved.
|
|
27179
27187
|
|
|
27180
|
-
|
|
27181
|
-
|
|
27188
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
27189
|
+
you may not use this file except in compliance with the License.
|
|
27190
|
+
You may obtain a copy of the License at
|
|
27191
|
+
|
|
27192
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
27193
|
+
|
|
27194
|
+
Unless required by applicable law or agreed to in writing, software
|
|
27195
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
27196
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
27197
|
+
See the License for the specific language governing permissions and
|
|
27198
|
+
limitations under the License.
|
|
27182
27199
|
--------------------------------------------------------------------------------
|
|
27183
27200
|
skia
|
|
27184
27201
|
|
|
27185
27202
|
Copyright 2018 Google Inc.
|
|
27186
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27187
|
-
found in the LICENSE file.
|
|
27188
|
-
--------------------------------------------------------------------------------
|
|
27189
|
-
skia
|
|
27190
27203
|
|
|
27191
|
-
Copyright 2018 Google Inc. All rights reserved.
|
|
27192
27204
|
Use of this source code is governed by a BSD-style license that can be
|
|
27193
27205
|
found in the LICENSE file.
|
|
27194
27206
|
--------------------------------------------------------------------------------
|
|
@@ -27201,17 +27213,23 @@ found in the LICENSE file.
|
|
|
27201
27213
|
--------------------------------------------------------------------------------
|
|
27202
27214
|
skia
|
|
27203
27215
|
|
|
27204
|
-
Copyright 2018 Google LLC
|
|
27216
|
+
Copyright 2018 Google LLC
|
|
27205
27217
|
Use of this source code is governed by a BSD-style license that can be
|
|
27206
27218
|
found in the LICENSE file.
|
|
27207
27219
|
--------------------------------------------------------------------------------
|
|
27208
27220
|
skia
|
|
27209
27221
|
|
|
27210
|
-
Copyright 2018 Google LLC
|
|
27222
|
+
Copyright 2018 Google LLC
|
|
27211
27223
|
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27212
27224
|
--------------------------------------------------------------------------------
|
|
27213
27225
|
skia
|
|
27214
27226
|
|
|
27227
|
+
Copyright 2018 Google LLC All rights reserved.
|
|
27228
|
+
Use of this source code is governed by a BSD-style license that can be
|
|
27229
|
+
found in the LICENSE file.
|
|
27230
|
+
--------------------------------------------------------------------------------
|
|
27231
|
+
skia
|
|
27232
|
+
|
|
27215
27233
|
Copyright 2018 Google, LLC
|
|
27216
27234
|
|
|
27217
27235
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27242,20 +27260,7 @@ limitations under the License.
|
|
|
27242
27260
|
--------------------------------------------------------------------------------
|
|
27243
27261
|
skia
|
|
27244
27262
|
|
|
27245
|
-
Copyright 2019 Google
|
|
27246
|
-
|
|
27247
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27248
|
-
found in the LICENSE file.
|
|
27249
|
-
--------------------------------------------------------------------------------
|
|
27250
|
-
skia
|
|
27251
|
-
|
|
27252
|
-
Copyright 2019 Google Inc.
|
|
27253
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27254
|
-
found in the LICENSE file.
|
|
27255
|
-
--------------------------------------------------------------------------------
|
|
27256
|
-
skia
|
|
27257
|
-
|
|
27258
|
-
Copyright 2019 Google Inc. and Adobe Inc.
|
|
27263
|
+
Copyright 2019 Google LLC
|
|
27259
27264
|
|
|
27260
27265
|
Use of this source code is governed by a BSD-style license that can be
|
|
27261
27266
|
found in the LICENSE file.
|
|
@@ -27263,36 +27268,23 @@ found in the LICENSE file.
|
|
|
27263
27268
|
skia
|
|
27264
27269
|
|
|
27265
27270
|
Copyright 2019 Google LLC
|
|
27266
|
-
|
|
27267
27271
|
Use of this source code is governed by a BSD-style license that can be
|
|
27268
27272
|
found in the LICENSE file.
|
|
27269
27273
|
--------------------------------------------------------------------------------
|
|
27270
27274
|
skia
|
|
27271
27275
|
|
|
27272
27276
|
Copyright 2019 Google LLC
|
|
27273
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27274
|
-
found in the LICENSE file.
|
|
27277
|
+
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27275
27278
|
--------------------------------------------------------------------------------
|
|
27276
27279
|
skia
|
|
27277
27280
|
|
|
27278
|
-
Copyright 2019 Google LLC.
|
|
27279
|
-
|
|
27280
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27281
|
-
found in the LICENSE file.
|
|
27282
|
-
--------------------------------------------------------------------------------
|
|
27283
|
-
skia
|
|
27281
|
+
Copyright 2019 Google LLC and Adobe Inc.
|
|
27284
27282
|
|
|
27285
|
-
Copyright 2019 Google LLC.
|
|
27286
27283
|
Use of this source code is governed by a BSD-style license that can be
|
|
27287
27284
|
found in the LICENSE file.
|
|
27288
27285
|
--------------------------------------------------------------------------------
|
|
27289
27286
|
skia
|
|
27290
27287
|
|
|
27291
|
-
Copyright 2019 Google LLC.
|
|
27292
|
-
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27293
|
-
--------------------------------------------------------------------------------
|
|
27294
|
-
skia
|
|
27295
|
-
|
|
27296
27288
|
Copyright 2019 Google, LLC
|
|
27297
27289
|
|
|
27298
27290
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27307,13 +27299,6 @@ found in the LICENSE file.
|
|
|
27307
27299
|
--------------------------------------------------------------------------------
|
|
27308
27300
|
skia
|
|
27309
27301
|
|
|
27310
|
-
Copyright 2020 Google Inc.
|
|
27311
|
-
|
|
27312
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27313
|
-
found in the LICENSE file.
|
|
27314
|
-
--------------------------------------------------------------------------------
|
|
27315
|
-
skia
|
|
27316
|
-
|
|
27317
27302
|
Copyright 2020 Google LLC
|
|
27318
27303
|
|
|
27319
27304
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27321,14 +27306,7 @@ found in the LICENSE file.
|
|
|
27321
27306
|
--------------------------------------------------------------------------------
|
|
27322
27307
|
skia
|
|
27323
27308
|
|
|
27324
|
-
Copyright 2020 Google LLC
|
|
27325
|
-
|
|
27326
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27327
|
-
found in the LICENSE file.
|
|
27328
|
-
--------------------------------------------------------------------------------
|
|
27329
|
-
skia
|
|
27330
|
-
|
|
27331
|
-
Copyright 2020 Google LLC.
|
|
27309
|
+
Copyright 2020 Google LLC
|
|
27332
27310
|
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27333
27311
|
--------------------------------------------------------------------------------
|
|
27334
27312
|
skia
|
|
@@ -27340,13 +27318,6 @@ found in the LICENSE file.
|
|
|
27340
27318
|
--------------------------------------------------------------------------------
|
|
27341
27319
|
skia
|
|
27342
27320
|
|
|
27343
|
-
Copyright 2021 Google Inc.
|
|
27344
|
-
|
|
27345
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27346
|
-
found in the LICENSE file.
|
|
27347
|
-
--------------------------------------------------------------------------------
|
|
27348
|
-
skia
|
|
27349
|
-
|
|
27350
27321
|
Copyright 2021 Google LLC
|
|
27351
27322
|
|
|
27352
27323
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27354,14 +27325,7 @@ found in the LICENSE file.
|
|
|
27354
27325
|
--------------------------------------------------------------------------------
|
|
27355
27326
|
skia
|
|
27356
27327
|
|
|
27357
|
-
Copyright 2021 Google LLC
|
|
27358
|
-
|
|
27359
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27360
|
-
found in the LICENSE file.
|
|
27361
|
-
--------------------------------------------------------------------------------
|
|
27362
|
-
skia
|
|
27363
|
-
|
|
27364
|
-
Copyright 2021 Google LLC.
|
|
27328
|
+
Copyright 2021 Google LLC
|
|
27365
27329
|
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27366
27330
|
--------------------------------------------------------------------------------
|
|
27367
27331
|
skia
|
|
@@ -27373,30 +27337,11 @@ found in the LICENSE file.
|
|
|
27373
27337
|
--------------------------------------------------------------------------------
|
|
27374
27338
|
skia
|
|
27375
27339
|
|
|
27376
|
-
Copyright 2022 Google Inc.
|
|
27377
|
-
|
|
27378
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27379
|
-
found in the LICENSE file.
|
|
27380
|
-
--------------------------------------------------------------------------------
|
|
27381
|
-
skia
|
|
27382
|
-
|
|
27383
27340
|
Copyright 2022 Google LLC
|
|
27384
27341
|
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27385
27342
|
--------------------------------------------------------------------------------
|
|
27386
27343
|
skia
|
|
27387
27344
|
|
|
27388
|
-
Copyright 2022 Google LLC.
|
|
27389
|
-
|
|
27390
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27391
|
-
found in the LICENSE file.
|
|
27392
|
-
--------------------------------------------------------------------------------
|
|
27393
|
-
skia
|
|
27394
|
-
|
|
27395
|
-
Copyright 2022 Google LLC.
|
|
27396
|
-
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27397
|
-
--------------------------------------------------------------------------------
|
|
27398
|
-
skia
|
|
27399
|
-
|
|
27400
27345
|
Copyright 2022 Google, LLC
|
|
27401
27346
|
|
|
27402
27347
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27411,12 +27356,6 @@ found in the LICENSE file.
|
|
|
27411
27356
|
--------------------------------------------------------------------------------
|
|
27412
27357
|
skia
|
|
27413
27358
|
|
|
27414
|
-
Copyright 2023 Google Inc.
|
|
27415
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27416
|
-
found in the LICENSE file.
|
|
27417
|
-
--------------------------------------------------------------------------------
|
|
27418
|
-
skia
|
|
27419
|
-
|
|
27420
27359
|
Copyright 2023 Google LLC
|
|
27421
27360
|
|
|
27422
27361
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27431,14 +27370,13 @@ Use of this source code is governed by a BSD-style license that can be found in
|
|
|
27431
27370
|
skia
|
|
27432
27371
|
|
|
27433
27372
|
Copyright 2023 Google LLC
|
|
27434
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27373
|
+
Use of this source code is governed by a BSD-style license that can be
|
|
27374
|
+
found in the LICENSE file.
|
|
27435
27375
|
--------------------------------------------------------------------------------
|
|
27436
27376
|
skia
|
|
27437
27377
|
|
|
27438
|
-
Copyright 2023 Google LLC
|
|
27439
|
-
|
|
27440
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27441
|
-
found in the LICENSE file.
|
|
27378
|
+
Copyright 2023 Google LLC
|
|
27379
|
+
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27442
27380
|
--------------------------------------------------------------------------------
|
|
27443
27381
|
skia
|
|
27444
27382
|
|
|
@@ -27462,13 +27400,6 @@ found in the LICENSE file.
|
|
|
27462
27400
|
--------------------------------------------------------------------------------
|
|
27463
27401
|
skia
|
|
27464
27402
|
|
|
27465
|
-
Copyright 2024 Google Inc.
|
|
27466
|
-
|
|
27467
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27468
|
-
found in the LICENSE file.
|
|
27469
|
-
--------------------------------------------------------------------------------
|
|
27470
|
-
skia
|
|
27471
|
-
|
|
27472
27403
|
Copyright 2024 Google LLC
|
|
27473
27404
|
|
|
27474
27405
|
Use of this source code is governed by a BSD-style license that can be
|
|
@@ -27476,20 +27407,13 @@ found in the LICENSE file.
|
|
|
27476
27407
|
--------------------------------------------------------------------------------
|
|
27477
27408
|
skia
|
|
27478
27409
|
|
|
27479
|
-
Copyright 2024 Google LLC
|
|
27480
|
-
|
|
27481
|
-
Use of this source code is governed by a BSD-style license that can be
|
|
27482
|
-
found in the LICENSE file.
|
|
27483
|
-
--------------------------------------------------------------------------------
|
|
27484
|
-
skia
|
|
27485
|
-
|
|
27486
|
-
Copyright 2024 Google LLC.
|
|
27410
|
+
Copyright 2024 Google LLC
|
|
27487
27411
|
Use of this source code is governed by a BSD-style license that can be
|
|
27488
27412
|
found in the LICENSE file.
|
|
27489
27413
|
--------------------------------------------------------------------------------
|
|
27490
27414
|
skia
|
|
27491
27415
|
|
|
27492
|
-
Copyright 2024 Google LLC
|
|
27416
|
+
Copyright 2024 Google LLC
|
|
27493
27417
|
Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
27494
27418
|
--------------------------------------------------------------------------------
|
|
27495
27419
|
skia
|
|
@@ -27508,27 +27432,27 @@ found in the LICENSE file.
|
|
|
27508
27432
|
--------------------------------------------------------------------------------
|
|
27509
27433
|
skia
|
|
27510
27434
|
|
|
27511
|
-
Copyright 2025 Google
|
|
27512
|
-
|
|
27435
|
+
Copyright 2025 Google LLC
|
|
27513
27436
|
Use of this source code is governed by a BSD-style license that can be
|
|
27514
27437
|
found in the LICENSE file.
|
|
27515
27438
|
--------------------------------------------------------------------------------
|
|
27516
27439
|
skia
|
|
27517
27440
|
|
|
27518
|
-
Copyright 2025 Google LLC
|
|
27441
|
+
Copyright 2025 Google, LLC
|
|
27442
|
+
|
|
27519
27443
|
Use of this source code is governed by a BSD-style license that can be
|
|
27520
27444
|
found in the LICENSE file.
|
|
27521
27445
|
--------------------------------------------------------------------------------
|
|
27522
27446
|
skia
|
|
27523
27447
|
|
|
27524
|
-
Copyright
|
|
27448
|
+
Copyright 2026 Google LLC
|
|
27525
27449
|
|
|
27526
27450
|
Use of this source code is governed by a BSD-style license that can be
|
|
27527
27451
|
found in the LICENSE file.
|
|
27528
27452
|
--------------------------------------------------------------------------------
|
|
27529
27453
|
skia
|
|
27530
27454
|
|
|
27531
|
-
Copyright
|
|
27455
|
+
Copyright 2026 The Android Open Source Project
|
|
27532
27456
|
|
|
27533
27457
|
Use of this source code is governed by a BSD-style license that can be
|
|
27534
27458
|
found in the LICENSE file.
|
|
@@ -29132,6 +29056,22 @@ SUCH DAMAGE.
|
|
|
29132
29056
|
--------------------------------------------------------------------------------
|
|
29133
29057
|
swiftshader
|
|
29134
29058
|
|
|
29059
|
+
Copyright (C) 2018 The Android Open Source Project
|
|
29060
|
+
|
|
29061
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
29062
|
+
you may not use this file except in compliance with the License.
|
|
29063
|
+
You may obtain a copy of the License at
|
|
29064
|
+
|
|
29065
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
29066
|
+
|
|
29067
|
+
Unless required by applicable law or agreed to in writing, software
|
|
29068
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
29069
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
29070
|
+
See the License for the specific language governing permissions and
|
|
29071
|
+
limitations under the License.
|
|
29072
|
+
--------------------------------------------------------------------------------
|
|
29073
|
+
swiftshader
|
|
29074
|
+
|
|
29135
29075
|
Copyright 2016 The SwiftShader Authors. All Rights Reserved.
|
|
29136
29076
|
|
|
29137
29077
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -29344,22 +29284,20 @@ swiftshader
|
|
|
29344
29284
|
vulkan
|
|
29345
29285
|
vulkan-headers
|
|
29346
29286
|
|
|
29347
|
-
Copyright
|
|
29287
|
+
Copyright 2015-2023 The Khronos Group Inc.
|
|
29288
|
+
Copyright 2015-2023 Valve Corporation
|
|
29289
|
+
Copyright 2015-2023 LunarG, Inc.
|
|
29348
29290
|
|
|
29349
29291
|
SPDX-License-Identifier: Apache-2.0
|
|
29350
29292
|
--------------------------------------------------------------------------------
|
|
29351
29293
|
swiftshader
|
|
29352
|
-
vulkan
|
|
29353
29294
|
vulkan-headers
|
|
29354
29295
|
|
|
29355
|
-
Copyright
|
|
29356
|
-
Copyright 2015-2023 Valve Corporation
|
|
29357
|
-
Copyright 2015-2023 LunarG, Inc.
|
|
29296
|
+
Copyright 2014-2025 The Khronos Group Inc.
|
|
29358
29297
|
|
|
29359
29298
|
SPDX-License-Identifier: Apache-2.0
|
|
29360
29299
|
--------------------------------------------------------------------------------
|
|
29361
29300
|
swiftshader
|
|
29362
|
-
vulkan
|
|
29363
29301
|
vulkan-headers
|
|
29364
29302
|
|
|
29365
29303
|
Copyright 2015-2025 The Khronos Group Inc.
|
|
@@ -29686,6 +29624,18 @@ vulkan
|
|
|
29686
29624
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29687
29625
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29688
29626
|
--------------------------------------------------------------------------------
|
|
29627
|
+
vulkan
|
|
29628
|
+
|
|
29629
|
+
Copyright 2014-2026 The Khronos Group Inc.
|
|
29630
|
+
|
|
29631
|
+
SPDX-License-Identifier: Apache-2.0
|
|
29632
|
+
--------------------------------------------------------------------------------
|
|
29633
|
+
vulkan
|
|
29634
|
+
|
|
29635
|
+
Copyright 2015-2026 The Khronos Group Inc.
|
|
29636
|
+
|
|
29637
|
+
SPDX-License-Identifier: Apache-2.0
|
|
29638
|
+
--------------------------------------------------------------------------------
|
|
29689
29639
|
vulkan-headers
|
|
29690
29640
|
|
|
29691
29641
|
Copyright (c) 2018-2019 Collabora, Ltd.
|
|
@@ -32766,30 +32716,7 @@ yapf_diff
|
|
|
32766
32716
|
|
|
32767
32717
|
END OF TERMS AND CONDITIONS
|
|
32768
32718
|
|
|
32769
|
-
|
|
32770
|
-
|
|
32771
|
-
To apply the Apache License to your work, attach the following
|
|
32772
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
32773
|
-
replaced with your own identifying information. (Don't include
|
|
32774
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
32775
|
-
comment syntax for the file format. We also recommend that a
|
|
32776
|
-
file or class name and description of purpose be included on the
|
|
32777
|
-
same "printed page" as the copyright notice for easier
|
|
32778
|
-
identification within third-party archives.
|
|
32779
|
-
|
|
32780
|
-
Copyright [yyyy] [name of copyright owner]
|
|
32781
|
-
|
|
32782
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
32783
|
-
you may not use this file except in compliance with the License.
|
|
32784
|
-
You may obtain a copy of the License at
|
|
32785
|
-
|
|
32786
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
32787
|
-
|
|
32788
|
-
Unless required by applicable law or agreed to in writing, software
|
|
32789
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
32790
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
32791
|
-
See the License for the specific language governing permissions and
|
|
32792
|
-
limitations under the License.
|
|
32719
|
+
|
|
32793
32720
|
--------------------------------------------------------------------------------
|
|
32794
32721
|
zlib
|
|
32795
32722
|
|
|
@@ -32925,26 +32852,4 @@ freely, subject to the following restrictions:
|
|
|
32925
32852
|
appreciated but is not required.
|
|
32926
32853
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
32927
32854
|
misrepresented as being the original software.
|
|
32928
|
-
3. This notice may not be removed or altered from any source distribution.
|
|
32929
|
-
--------------------------------------------------------------------------------
|
|
32930
|
-
zlib
|
|
32931
|
-
|
|
32932
|
-
version 1.3.0.1, August xxth, 2023
|
|
32933
|
-
|
|
32934
|
-
Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
|
|
32935
|
-
|
|
32936
|
-
This software is provided 'as-is', without any express or implied
|
|
32937
|
-
warranty. In no event will the authors be held liable for any damages
|
|
32938
|
-
arising from the use of this software.
|
|
32939
|
-
|
|
32940
|
-
Permission is granted to anyone to use this software for any purpose,
|
|
32941
|
-
including commercial applications, and to alter it and redistribute it
|
|
32942
|
-
freely, subject to the following restrictions:
|
|
32943
|
-
|
|
32944
|
-
1. The origin of this software must not be misrepresented; you must not
|
|
32945
|
-
claim that you wrote the original software. If you use this software
|
|
32946
|
-
in a product, an acknowledgment in the product documentation would be
|
|
32947
|
-
appreciated but is not required.
|
|
32948
|
-
2. Altered source versions must be plainly marked as such, and must not be
|
|
32949
|
-
misrepresented as being the original software.
|
|
32950
32855
|
3. This notice may not be removed or altered from any source distribution.
|