| Index: third_party/WebKit/public/BUILD.gn
|
| diff --git a/third_party/WebKit/public/BUILD.gn b/third_party/WebKit/public/BUILD.gn
|
| index 90bb886182de1b4ea2292ec5b0d67ef4f07613df..49a86cdc3c5e932cb4c5554e67ffbbae141a0834 100644
|
| --- a/third_party/WebKit/public/BUILD.gn
|
| +++ b/third_party/WebKit/public/BUILD.gn
|
| @@ -162,10 +162,19 @@ grit("resources") {
|
| grit("image_resources") {
|
| output_dir = "$root_gen_dir/blink/public/resources"
|
| use_qualified_include = true
|
| + if (is_android) {
|
| + platform_type = "mobile"
|
| + } else {
|
| + platform_type = "desktop"
|
| + }
|
| source = "blink_image_resources.grd"
|
| outputs = [
|
| "grit/blink_image_resources.h",
|
| "blink_image_resources_100_percent.pak",
|
| "blink_image_resources_200_percent.pak",
|
| ]
|
| + grit_flags = [
|
| + "-E",
|
| + "platform_type=" + platform_type,
|
| + ]
|
| }
|
|
|