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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 public_deps = [ 59 public_deps = [
60 ":app_metrics", 60 ":app_metrics",
61 ] 61 ]
62 62
63 deps = [ 63 deps = [
64 ":app_config", 64 ":app_config",
65 ":app_net", 65 ":app_net",
66 ":app_permissions", 66 ":app_permissions",
67 ":app_settings", 67 ":app_settings",
68 ":app_ui", 68 ":app_ui",
69 ":blob_channel", 69 ":blob_channel_service",
70 ":common", 70 ":common",
71 ":crash", 71 ":crash",
72 ":renderer", 72 ":renderer",
73 ":session", 73 ":session",
74 "//base", 74 "//base",
75 "//blimp/common", 75 "//blimp/common",
76 "//blimp/common/proto", 76 "//blimp/common/proto",
77 "//blimp/engine:blob_channel_mojo_cpp_sources", 77 "//blimp/engine:blob_channel_mojo_cpp_sources",
78 "//blimp/net", 78 "//blimp/net",
79 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", 79 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted",
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 "//ui/base/ime", 279 "//ui/base/ime",
280 "//ui/resources", 280 "//ui/resources",
281 "//ui/wm", 281 "//ui/wm",
282 ] 282 ]
283 } 283 }
284 284
285 source_set("renderer") { 285 source_set("renderer") {
286 sources = [ 286 sources = [
287 "renderer/blimp_content_renderer_client.cc", 287 "renderer/blimp_content_renderer_client.cc",
288 "renderer/blimp_content_renderer_client.h", 288 "renderer/blimp_content_renderer_client.h",
289 "renderer/blob_channel_sender_proxy.cc",
290 "renderer/blob_channel_sender_proxy.h",
289 "renderer/engine_image_serialization_processor.cc", 291 "renderer/engine_image_serialization_processor.cc",
290 "renderer/engine_image_serialization_processor.h", 292 "renderer/engine_image_serialization_processor.h",
291 ] 293 ]
292 294
293 deps = [ 295 deps = [
294 ":blob_channel_mojo", 296 ":blob_channel_service",
295 "//base", 297 "//base",
296 "//blimp/common", 298 "//blimp/common",
297 "//blimp/common/proto", 299 "//blimp/common/proto",
300 "//blimp/net",
298 "//cc", 301 "//cc",
299 "//components/web_cache/renderer", 302 "//components/web_cache/renderer",
300 "//content/public/common", 303 "//content/public/common",
301 "//content/public/renderer", 304 "//content/public/renderer",
302 "//skia", 305 "//skia",
303 "//third_party/libwebp", 306 "//third_party/libwebp",
304 "//ui/gfx/geometry", 307 "//ui/gfx/geometry",
305 "//ui/gl", 308 "//ui/gl",
306 ] 309 ]
307 } 310 }
(...skipping 23 matching lines...) Expand all
331 "//content/public/browser", 334 "//content/public/browser",
332 "//net", 335 "//net",
333 "//ui/aura", 336 "//ui/aura",
334 "//ui/base/ime", 337 "//ui/base/ime",
335 "//ui/gfx/geometry", 338 "//ui/gfx/geometry",
336 "//ui/wm", 339 "//ui/wm",
337 ] 340 ]
338 } 341 }
339 342
340 # Implements the browser portions of the Mojo bridge to BlobChannel. 343 # Implements the browser portions of the Mojo bridge to BlobChannel.
341 source_set("blob_channel") { 344 source_set("blob_channel_service") {
342 sources = [ 345 sources = [
343 "mojo/blob_channel_service.cc", 346 "mojo/blob_channel_service.cc",
344 "mojo/blob_channel_service.h", 347 "mojo/blob_channel_service.h",
345 ] 348 ]
346 deps = [ 349 deps = [
350 "//blimp/net",
351 ]
352 public_deps = [
347 ":blob_channel_mojo", 353 ":blob_channel_mojo",
348 ] 354 ]
349 } 355 }
350 356
351 mojom("blob_channel_mojo") { 357 mojom("blob_channel_mojo") {
352 sources = [ 358 sources = [
353 "mojo/blob_channel.mojom", 359 "mojo/blob_channel.mojom",
354 ] 360 ]
355 } 361 }
356 362
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 deps = [ 441 deps = [
436 ":feature", 442 ":feature",
437 "//base", 443 "//base",
438 "//base/test:run_all_unittests", 444 "//base/test:run_all_unittests",
439 "//base/test:test_support", 445 "//base/test:test_support",
440 "//blimp/common", 446 "//blimp/common",
441 "//blimp/common/proto", 447 "//blimp/common/proto",
442 "//blimp/engine:app_settings", 448 "//blimp/engine:app_settings",
443 "//blimp/net", 449 "//blimp/net",
444 "//blimp/net:test_support", 450 "//blimp/net:test_support",
451 "//content",
445 "//content/public/browser", 452 "//content/public/browser",
446 "//net", 453 "//net",
447 "//net:test_support", 454 "//net:test_support",
448 "//testing/gmock", 455 "//testing/gmock",
449 "//testing/gtest", 456 "//testing/gtest",
450 "//third_party/WebKit/public:blink_headers", 457 "//third_party/WebKit/public:blink_headers",
451 "//ui/base:test_support", 458 "//ui/base:test_support",
452 ] 459 ]
453 } 460 }
454 461
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 "//content/test:test_support", 648 "//content/test:test_support",
642 "//testing/gmock", 649 "//testing/gmock",
643 "//testing/gtest", 650 "//testing/gtest",
644 ] 651 ]
645 652
646 data = [ 653 data = [
647 "data/", 654 "data/",
648 "$root_out_dir/blimp_engine.pak", 655 "$root_out_dir/blimp_engine.pak",
649 ] 656 ]
650 } 657 }
OLDNEW
« 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