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

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: nyquist feedback 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
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 21 matching lines...) Expand all
329 "//content/public/browser", 332 "//content/public/browser",
330 "//net", 333 "//net",
331 "//ui/aura", 334 "//ui/aura",
332 "//ui/base/ime", 335 "//ui/base/ime",
333 "//ui/gfx/geometry", 336 "//ui/gfx/geometry",
334 "//ui/wm", 337 "//ui/wm",
335 ] 338 ]
336 } 339 }
337 340
338 # Implements the browser portions of the Mojo bridge to BlobChannel. 341 # Implements the browser portions of the Mojo bridge to BlobChannel.
339 source_set("blob_channel") { 342 source_set("blob_channel_service") {
340 sources = [ 343 sources = [
341 "mojo/blob_channel_service.cc", 344 "mojo/blob_channel_service.cc",
342 "mojo/blob_channel_service.h", 345 "mojo/blob_channel_service.h",
343 ] 346 ]
344 deps = [ 347 deps = [
348 "//blimp/net",
349 ]
350 public_deps = [
345 ":blob_channel_mojo", 351 ":blob_channel_mojo",
346 ] 352 ]
347 } 353 }
348 354
349 mojom("blob_channel_mojo") { 355 mojom("blob_channel_mojo") {
350 sources = [ 356 sources = [
351 "mojo/blob_channel.mojom", 357 "mojo/blob_channel.mojom",
352 ] 358 ]
353 } 359 }
354 360
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 deps = [ 439 deps = [
434 ":feature", 440 ":feature",
435 "//base", 441 "//base",
436 "//base/test:run_all_unittests", 442 "//base/test:run_all_unittests",
437 "//base/test:test_support", 443 "//base/test:test_support",
438 "//blimp/common", 444 "//blimp/common",
439 "//blimp/common/proto", 445 "//blimp/common/proto",
440 "//blimp/engine:app_settings", 446 "//blimp/engine:app_settings",
441 "//blimp/net", 447 "//blimp/net",
442 "//blimp/net:test_support", 448 "//blimp/net:test_support",
449 "//content",
443 "//content/public/browser", 450 "//content/public/browser",
444 "//net", 451 "//net",
445 "//net:test_support", 452 "//net:test_support",
446 "//testing/gmock", 453 "//testing/gmock",
447 "//testing/gtest", 454 "//testing/gtest",
448 "//third_party/WebKit/public:blink_headers", 455 "//third_party/WebKit/public:blink_headers",
449 "//ui/base/ime", 456 "//ui/base/ime",
450 ] 457 ]
451 } 458 }
452 459
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 # Include symupload target here as it is needed by the buildbots to upload 608 # Include symupload target here as it is needed by the buildbots to upload
602 # the symbol file created by dump_syms. 609 # the symbol file created by dump_syms.
603 deps = [ 610 deps = [
604 ":blimp_engine_app", 611 ":blimp_engine_app",
605 "//breakpad:symupload", 612 "//breakpad:symupload",
606 dump_syms_label, 613 dump_syms_label,
607 ] 614 ]
608 } 615 }
609 } 616 }
610 } 617 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698