From c6fbe5a7feae93524770a500f4a2761a9f27f306 Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Tue, 31 Jul 2018 14:39:58 -0700 Subject: [PATCH] Fix path to blink resources --- electron_paks.gni | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron_paks.gni b/electron_paks.gni index e2b769907707..ace0a5de06e2 100644 --- a/electron_paks.gni +++ b/electron_paks.gni @@ -17,7 +17,7 @@ template("electron_repack_percent") { # All sources should also have deps for completeness. sources = [ - "$root_gen_dir/blink/public/resources/blink_scaled_resources_${percent}_percent.pak", + "$root_gen_dir/third_party/blink/public/resources/blink_scaled_resources_${percent}_percent.pak", "$root_gen_dir/components/components_resources_${percent}_percent.pak", "$root_gen_dir/content/app/resources/content_resources_${percent}_percent.pak", "$root_gen_dir/ui/resources/ui_resources_${percent}_percent.pak", @@ -53,7 +53,7 @@ template("electron_extra_paks") { ]) output = "${invoker.output_dir}/resources.pak" sources = [ - "$root_gen_dir/blink/public/resources/blink_resources.pak", + "$root_gen_dir/third_party/blink/public/resources/blink_resources.pak", "$root_gen_dir/components/components_resources.pak", "$root_gen_dir/content/browser/tracing/tracing_resources.pak", "$root_gen_dir/content/content_resources.pak",