summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/app/app-Info.plist12
-rw-r--r--chrome/app/theme/chromium/document.icnsbin0 -> 92645 bytes
-rw-r--r--chrome/chrome.gyp10
3 files changed, 20 insertions, 2 deletions
diff --git a/chrome/app/app-Info.plist b/chrome/app/app-Info.plist
index 8148422..7ca9989 100644
--- a/chrome/app/app-Info.plist
+++ b/chrome/app/app-Info.plist
@@ -13,6 +13,8 @@
<array>
<string>gif</string>
</array>
+ <key>CFBundleTypeIconFile</key>
+ <string>document.icns</string>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>image/gif</string>
@@ -32,6 +34,8 @@
<string>html</string>
<string>htm</string>
</array>
+ <key>CFBundleTypeIconFile</key>
+ <string>document.icns</string>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>text/html</string>
@@ -50,6 +54,8 @@
<array>
<string>js</string>
</array>
+ <key>CFBundleTypeIconFile</key>
+ <string>document.icns</string>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/x-javascript</string>
@@ -65,6 +71,8 @@
<string>jpg</string>
<string>jpeg</string>
</array>
+ <key>CFBundleTypeIconFile</key>
+ <string>document.icns</string>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>image/jpeg</string>
@@ -84,6 +92,8 @@
<string>txt</string>
<string>text</string>
</array>
+ <key>CFBundleTypeIconFile</key>
+ <string>document.icns</string>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>text/plain</string>
@@ -102,6 +112,8 @@
<array>
<string>png</string>
</array>
+ <key>CFBundleTypeIconFile</key>
+ <string>document.icns</string>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>image/png</string>
diff --git a/chrome/app/theme/chromium/document.icns b/chrome/app/theme/chromium/document.icns
new file mode 100644
index 0000000..94adce1
--- /dev/null
+++ b/chrome/app/theme/chromium/document.icns
Binary files differ
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index bdf8863..f84f6a2 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -3201,7 +3201,10 @@
# (e.g. "Chromium", "Chrome")
'conditions': [
['branding=="Chrome"', {
- 'mac_bundle_resources': ['app/theme/google_chrome/app.icns'],
+ 'mac_bundle_resources': [
+ 'app/theme/google_chrome/app.icns',
+ 'app/theme/google_chrome/document.icns',
+ ],
'copies': [
{
'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/MacOS',
@@ -3213,7 +3216,10 @@
},
],
}, { # else: 'branding!="Chrome"
- 'mac_bundle_resources': ['app/theme/chromium/app.icns'],
+ 'mac_bundle_resources': [
+ 'app/theme/chromium/app.icns',
+ 'app/theme/chromium/document.icns',
+ ],
'copies': [
{
'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/MacOS',