Skip to content

Commit b7d5fa9

Browse files
committed
Generate credits.html for node-webkit
1 parent 76e691f commit b7d5fa9

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

chrome/browser/resources/about_credits.tmpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ body {
4545
background-color:#e8eef7;
4646
padding:16px;
4747
border-radius:3px;
48-
display:none;
4948
}
5049
.licence h3 {
5150
margin-top:0px;

tools/licenses.py

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@
8282
os.path.join('chrome', 'common', 'extensions', 'docs', 'examples'),
8383
os.path.join('chrome', 'test', 'chromeos', 'autotest'),
8484
os.path.join('chrome', 'test', 'data'),
85-
os.path.join('native_client'),
86-
os.path.join('native_client_sdk'),
85+
os.path.join('googleurl'),
86+
# os.path.join('native_client'),
87+
# os.path.join('native_client_sdk'),
8788
os.path.join('net', 'tools', 'spdyshark'),
8889
os.path.join('ppapi'),
8990
os.path.join('sandbox', 'linux', 'seccomp-legacy'),
@@ -100,13 +101,22 @@
100101
os.path.join('v8'),
101102
# Fake directory so we can include the strongtalk license.
102103
os.path.join('v8', 'strongtalk'),
104+
105+
os.path.join('content', 'nw'),
106+
os.path.join('third_party', 'node'),
103107
)
104108

105109

106110
# Directories where we check out directly from upstream, and therefore
107111
# can't provide a README.chromium. Please prefer a README.chromium
108112
# wherever possible.
109113
SPECIAL_CASES = {
114+
os.path.join('content', 'nw'): {
115+
"Name": "node-webkit",
116+
"URL": "https://github.com/rogerwang/node-webkit",
117+
"License": "MIT",
118+
"License File": "LICENSE",
119+
},
110120
os.path.join('native_client'): {
111121
"Name": "native client",
112122
"URL": "http://code.google.com/p/nativeclient",
@@ -159,6 +169,12 @@
159169
"License": "BSD",
160170
"License File": "/LICENSE",
161171
},
172+
os.path.join('third_party', 'node'): {
173+
"Name": "Node.js",
174+
"URL": "http://nodejs.org",
175+
"License": "MIT",
176+
"License File": "LICENSE",
177+
},
162178
os.path.join('third_party', 'ots'): {
163179
"Name": "OTS (OpenType Sanitizer)",
164180
"URL": "http://code.google.com/p/ots/",

0 commit comments

Comments
 (0)