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

Unified Diff: chrome/app/BUILD.gn

Issue 2475543003: Introduce the image_decoder service (Closed)
Patch Set: . Created 4 years, 1 month 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 | « BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/BUILD.gn
diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
index 1e77e5120ad6f169c780ee319626c2ba9f0c6fb0..cbb7cd8b3ed138d2d7d0bf0a44df4d13c6b3f45e 100644
--- a/chrome/app/BUILD.gn
+++ b/chrome/app/BUILD.gn
@@ -353,6 +353,14 @@ static_library("test_support") {
}
}
+service_manifest_overlay("chrome_content_browser_manifest_overlay") {
+ source = "//chrome/browser/chrome_content_browser_manifest_overlay.json"
+ packaged_services = [ "image_decoder" ]
+ deps = [
+ "//services/image_decoder:manifest",
+ ]
+}
+
if (use_aura) {
# NOTE: These rules generate compiled versions of the content service
# manifests with Chrome's overlays applied. These are only used at run-time,
@@ -365,8 +373,9 @@ if (use_aura) {
output_name = "chrome_content_browser"
source = "${root_out_dir}/Packages/content_browser/manifest.json"
overlays =
- [ "//chrome/browser/chrome_content_browser_manifest_overlay.json" ]
+ [ "${root_gen_dir}/chrome_content_browser_manifest_overlay.json" ]
deps = [
+ ":chrome_content_browser_manifest_overlay",
"//content/public/app:browser_manifest",
]
}
« no previous file with comments | « BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698