|
@@ -210,7 +210,6 @@ foreach(file, _emoji) {
|
|
fonts = [ "//Base/res/fonts/SerenitySans-Regular.ttf" ]
|
|
fonts = [ "//Base/res/fonts/SerenitySans-Regular.ttf" ]
|
|
|
|
|
|
icons_16x16 = [
|
|
icons_16x16 = [
|
|
- "//Base/res/icons/16x16/app-browser.png",
|
|
|
|
"//Base/res/icons/16x16/app-system-monitor.png",
|
|
"//Base/res/icons/16x16/app-system-monitor.png",
|
|
"//Base/res/icons/16x16/audio-volume-high.png",
|
|
"//Base/res/icons/16x16/audio-volume-high.png",
|
|
"//Base/res/icons/16x16/audio-volume-muted.png",
|
|
"//Base/res/icons/16x16/audio-volume-muted.png",
|
|
@@ -242,13 +241,16 @@ icons_16x16 = [
|
|
]
|
|
]
|
|
|
|
|
|
icons_32x32 = [
|
|
icons_32x32 = [
|
|
- "//Base/res/icons/32x32/app-browser.png",
|
|
|
|
"//Base/res/icons/32x32/app-system-monitor.png",
|
|
"//Base/res/icons/32x32/app-system-monitor.png",
|
|
"//Base/res/icons/32x32/filetype-folder.png",
|
|
"//Base/res/icons/32x32/filetype-folder.png",
|
|
"//Base/res/icons/32x32/filetype-unknown.png",
|
|
"//Base/res/icons/32x32/filetype-unknown.png",
|
|
"//Base/res/icons/32x32/msgbox-warning.png",
|
|
"//Base/res/icons/32x32/msgbox-warning.png",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+icons_48x48 = [ "//Base/res/icons/48x48/app-browser.png" ]
|
|
|
|
+
|
|
|
|
+icons_128x128 = [ "//Base/res/icons/128x128/app-browser.png" ]
|
|
|
|
+
|
|
icons_browser = [
|
|
icons_browser = [
|
|
"//Base/res/icons/browser/clear-cache.png",
|
|
"//Base/res/icons/browser/clear-cache.png",
|
|
"//Base/res/icons/browser/cookie.png",
|
|
"//Base/res/icons/browser/cookie.png",
|
|
@@ -301,6 +303,16 @@ if (current_os != "mac") {
|
|
outputs = [ "$root_out_dir/share/Lagom/icons/32x32/{{source_file_part}}" ]
|
|
outputs = [ "$root_out_dir/share/Lagom/icons/32x32/{{source_file_part}}" ]
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ copy("ladybird_copy_icons_48x48") {
|
|
|
|
+ sources = icons_48x48
|
|
|
|
+ outputs = [ "$root_out_dir/share/Lagom/icons/48x48/{{source_file_part}}" ]
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ copy("ladybird_copy_icons_128x128") {
|
|
|
|
+ sources = icons_128x128
|
|
|
|
+ outputs = [ "$root_out_dir/share/Lagom/icons/128x128/{{source_file_part}}" ]
|
|
|
|
+ }
|
|
|
|
+
|
|
copy("ladybird_copy_icons_browser") {
|
|
copy("ladybird_copy_icons_browser") {
|
|
sources = icons_browser
|
|
sources = icons_browser
|
|
outputs = [ "$root_out_dir/share/Lagom/icons/browser/{{source_file_part}}" ]
|
|
outputs = [ "$root_out_dir/share/Lagom/icons/browser/{{source_file_part}}" ]
|