Commit d06fdd7c authored by tzik's avatar tzik Committed by Commit Bot

Fix a missing GN dependency from web_applications/extensions to //chrome/common

Add a missing dependency from web_applications/extensions to //chrome/common,
as BookmarkAppDataRetriever uses chrome::mojom::ChromeRenderFrame.
This should fix a flaky build error on bots:

../..\chrome/browser/web_applications/extensions/bookmark_app_data_retriever.h(12,10):  fatal error: 'chrome/common/chrome_render_frame.mojom.h' file not found
#include "chrome/common/chrome_render_frame.mojom.h"
https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/Win/71019

Change-Id: I3f2e71533551378681ef91cd402988b427c0d750
Reviewed-on: https://chromium-review.googlesource.com/1149665Reviewed-by: default avatarTrent Apted <tapted@chromium.org>
Commit-Queue: Trent Apted <tapted@chromium.org>
Cr-Commit-Position: refs/heads/master@{#578144}
parent 48934484
...@@ -23,6 +23,7 @@ source_set("extensions") { ...@@ -23,6 +23,7 @@ source_set("extensions") {
deps = [ deps = [
"//base", "//base",
"//chrome/browser/web_applications/components", "//chrome/browser/web_applications/components",
"//chrome/common",
"//content/public/browser", "//content/public/browser",
"//skia", "//skia",
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment