| <!doctype html> |
| <!-- Generated by chromite/licensing/licenses; do not edit. |
| See https://dev.chromium.org/chromium-os/licensing/licensing-for-chromiumos-developers |
| --> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <meta name="viewport" content="width=device-width"> |
| <meta name="color-scheme" content="light dark"> |
| {{tainted_warning_if_any}} |
| <title>Credits</title> |
| <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| <link rel="stylesheet" href="chrome://credits/credits.css"> |
| <script> |
| //<![CDATA[ |
| function toggle(o) { |
| var licence = o.nextSibling; |
| |
| while (licence.className != 'licence') { |
| if (!licence) return false; |
| licence = licence.nextSibling; |
| } |
| return toggleblock(licence, o); |
| } |
| |
| function toggleblock(licence, o) { |
| if (licence.style && licence.style.display == 'block') { |
| licence.style.display = 'none'; |
| o.innerHTML = 'show license'; |
| } else { |
| licence.style.display = 'block'; |
| o.innerHTML = 'hide license'; |
| } |
| return false; |
| } |
| //]]> |
| </script> |
| </head> |
| <body> |
| <span class="page-title" style="float:left;">Credits</span> |
| <span style="float:right"> |
| <a id="print-link" href="javascript:window.print();">Print</a> |
| </span> |
| <div style="clear:both; overflow:auto;"> |
| <h2>List of Packages used in Google Chrome OS</h2> |
| <!-- Chromium <3s the following projects --> |
| {{entries}} |
| </div> |
| |
| <h2>List of Shared Licenses used in Google Chrome OS</h2> |
| {{licenses}} |
| |
| </body> |
| </html> |