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

Unified Diff: blimp/engine/BUILD.gn

Issue 1985863002: Incorporate BlobChannel into Blimp image encode/decode pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-helium
Patch Set: fix gn dependency warning & rebase Created 4 years, 6 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 | « blimp/common/proto/blob_cache.proto ('k') | blimp/engine/app/blimp_browser_main_parts.h » ('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 07233833ade43b0b3697569adfa8b86b86263204..447140300490e7495d12d5038c38eb23ebbc727a 100644
--- a/blimp/engine/BUILD.gn
+++ b/blimp/engine/BUILD.gn
@@ -66,7 +66,7 @@ source_set("app") {
":app_permissions",
":app_settings",
":app_ui",
- ":blob_channel",
+ ":blob_channel_service",
":common",
":crash",
":renderer",
@@ -286,15 +286,18 @@ source_set("renderer") {
sources = [
"renderer/blimp_content_renderer_client.cc",
"renderer/blimp_content_renderer_client.h",
+ "renderer/blob_channel_sender_proxy.cc",
+ "renderer/blob_channel_sender_proxy.h",
"renderer/engine_image_serialization_processor.cc",
"renderer/engine_image_serialization_processor.h",
]
deps = [
- ":blob_channel_mojo",
+ ":blob_channel_service",
"//base",
"//blimp/common",
"//blimp/common/proto",
+ "//blimp/net",
"//cc",
"//components/web_cache/renderer",
"//content/public/common",
@@ -338,12 +341,15 @@ source_set("session") {
}
# Implements the browser portions of the Mojo bridge to BlobChannel.
-source_set("blob_channel") {
+source_set("blob_channel_service") {
sources = [
"mojo/blob_channel_service.cc",
"mojo/blob_channel_service.h",
]
deps = [
+ "//blimp/net",
+ ]
+ public_deps = [
":blob_channel_mojo",
]
}
@@ -442,6 +448,7 @@ source_set("feature_unit_tests") {
"//blimp/engine:app_settings",
"//blimp/net",
"//blimp/net:test_support",
+ "//content",
"//content/public/browser",
"//net",
"//net:test_support",
« no previous file with comments | « blimp/common/proto/blob_cache.proto ('k') | blimp/engine/app/blimp_browser_main_parts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698