Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3018)

Unified Diff: blimp/engine/BUILD.gn

Issue 2371233002: Blob Channel failed to register service (Closed)
Patch Set: update the generated blimp_browser_resources.h path in blimp/engine/app/blimp_content_browser_clien… Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | blimp/engine/app/blimp_browser_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/BUILD.gn
diff --git a/blimp/engine/BUILD.gn b/blimp/engine/BUILD.gn
index 3c7918789fe0ae918f9a2535841bad390baab75b..a5b6e32d28f7fffe3918bdf128680f9bc2eaccd8 100644
--- a/blimp/engine/BUILD.gn
+++ b/blimp/engine/BUILD.gn
@@ -12,6 +12,7 @@ import("//tools/grit/grit_rule.gni")
repack("pak") {
sources = [
+ "$root_gen_dir/blimp/engine/blimp_browser_resources.pak",
"$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak",
"$root_gen_dir/blink/public/resources/blink_resources.pak",
"$root_gen_dir/content/app/resources/content_resources_100_percent.pak",
@@ -26,6 +27,7 @@ repack("pak") {
]
deps = [
+ ":resources",
"//content:resources",
"//content/app/resources",
"//content/app/strings",
@@ -46,6 +48,17 @@ repack("pak") {
output = "$root_out_dir/blimp_engine.pak"
}
+grit("resources") {
+ visibility = [ ":*" ]
+ source = "app/blimp_browser_resources.grd"
+ use_qualified_include = true
+ output_dir = "$root_gen_dir/blimp/engine"
+ outputs = [
+ "grit/blimp_browser_resources.h",
+ "blimp_browser_resources.pak",
+ ]
+}
+
source_set("app") {
sources = [
"app/blimp_browser_main_parts.cc",
@@ -73,6 +86,7 @@ source_set("app") {
":crash",
":feature",
":renderer",
+ ":resources",
":session",
"//base",
"//blimp/common",
@@ -88,6 +102,7 @@ source_set("app") {
"//content/public/utility",
"//device/geolocation",
"//net",
+ "//ui/base:base",
]
}
« no previous file with comments | « no previous file | blimp/engine/app/blimp_browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698