1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Charles Kerr <[email protected]>
- Date: Tue, 9 Aug 2022 12:35:36 -0500
- Subject: add electron deps to license credits file
- Ensure that licenses for the dependencies introduced by Electron
- are included in `LICENSES.chromium.html`
- diff --git a/tools/licenses/licenses.py b/tools/licenses/licenses.py
- index a33adb4901c76895f1dba6cb06ab4f866480a397..e2702d4c6920f0c635a8543533c8d5261454abbf 100755
- --- a/tools/licenses/licenses.py
- +++ b/tools/licenses/licenses.py
- @@ -384,6 +384,31 @@ SPECIAL_CASES = {
- "License": "Apache 2.0",
- "License File": "/third_party/selenium-atoms/LICENSE.closure",
- },
- + os.path.join('third_party', 'electron_node'): {
- + "Name": "Node.js",
- + "URL": "https://github.com/nodejs/node",
- + "License": "MIT",
- + "License File": "/third_party/electron_node/LICENSE",
- + },
- + os.path.join('third_party', 'squirrel.mac'): {
- + "Name": "Squirrel",
- + "URL": "https://github.com/Squirrel/Squirrel.Mac",
- + "License": "MIT",
- + "License File": "/third_party/squirrel.mac/LICENSE",
- + },
- + os.path.join('third_party', 'squirrel.mac', 'vendor', 'mantle'): {
- + "Name": "Mantle",
- + "URL": "https://github.com/Mantle/Mantle",
- + "License": "MIT",
- + "License File": "/third_party/squirrel.mac/vendor/mantle/LICENSE.md",
- + },
- + os.path.join('third_party', 'squirrel.mac', 'vendor', 'ReactiveObjC'): {
- + "Name": "ReactiveObjC",
- + "URL": "https://github.com/ReactiveCocoa/ReactiveObjC",
- + "License": "MIT",
- + "License File":
- + "/third_party/squirrel.mac/vendor/ReactiveObjC/LICENSE.md",
- + },
- }
-
- # Special value for 'License File' field used to indicate that the license file
|