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

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: wez and 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 "//ui/base/ime", 277 "//ui/base/ime",
278 "//ui/resources", 278 "//ui/resources",
279 "//ui/wm", 279 "//ui/wm",
280 ] 280 ]
281 } 281 }
282 282
283 source_set("renderer") { 283 source_set("renderer") {
284 sources = [ 284 sources = [
285 "renderer/blimp_content_renderer_client.cc", 285 "renderer/blimp_content_renderer_client.cc",
286 "renderer/blimp_content_renderer_client.h", 286 "renderer/blimp_content_renderer_client.h",
287 "renderer/blob_channel_sender_proxy.cc",
288 "renderer/blob_channel_sender_proxy.h",
287 "renderer/engine_image_serialization_processor.cc", 289 "renderer/engine_image_serialization_processor.cc",
288 "renderer/engine_image_serialization_processor.h", 290 "renderer/engine_image_serialization_processor.h",
289 ] 291 ]
290 292
291 deps = [ 293 deps = [
292 ":blob_channel_mojo", 294 ":blob_channel_service",
293 "//base", 295 "//base",
294 "//blimp/common", 296 "//blimp/common",
295 "//blimp/common/proto", 297 "//blimp/common/proto",
298 "//blimp/net",
296 "//cc", 299 "//cc",
297 "//components/web_cache/renderer", 300 "//components/web_cache/renderer",
298 "//content/public/common", 301 "//content/public/common",
299 "//content/public/renderer", 302 "//content/public/renderer",
300 "//skia", 303 "//skia",
301 "//third_party/libwebp", 304 "//third_party/libwebp",
302 "//ui/gfx/geometry", 305 "//ui/gfx/geometry",
303 "//ui/gl", 306 "//ui/gl",
304 ] 307 ]
305 } 308 }
(...skipping 21 matching lines...) Expand all
327 "//content/public/browser", 330 "//content/public/browser",
328 "//net", 331 "//net",
329 "//ui/aura", 332 "//ui/aura",
330 "//ui/base/ime", 333 "//ui/base/ime",
331 "//ui/gfx/geometry", 334 "//ui/gfx/geometry",
332 "//ui/wm", 335 "//ui/wm",
333 ] 336 ]
334 } 337 }
335 338
336 # Implements the browser portions of the Mojo bridge to BlobChannel. 339 # Implements the browser portions of the Mojo bridge to BlobChannel.
337 source_set("blob_channel") { 340 source_set("blob_channel_service") {
338 sources = [ 341 sources = [
339 "mojo/blob_channel_service.cc", 342 "mojo/blob_channel_service.cc",
340 "mojo/blob_channel_service.h", 343 "mojo/blob_channel_service.h",
341 ] 344 ]
342 deps = [ 345 deps = [
346 "//blimp/net",
347 ]
348 public_deps = [
343 ":blob_channel_mojo", 349 ":blob_channel_mojo",
344 ] 350 ]
345 } 351 }
346 352
347 mojom("blob_channel_mojo") { 353 mojom("blob_channel_mojo") {
348 sources = [ 354 sources = [
349 "mojo/blob_channel.mojom", 355 "mojo/blob_channel.mojom",
350 ] 356 ]
351 } 357 }
352 358
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 deps = [ 437 deps = [
432 ":feature", 438 ":feature",
433 "//base", 439 "//base",
434 "//base/test:run_all_unittests", 440 "//base/test:run_all_unittests",
435 "//base/test:test_support", 441 "//base/test:test_support",
436 "//blimp/common", 442 "//blimp/common",
437 "//blimp/common/proto", 443 "//blimp/common/proto",
438 "//blimp/engine:app_settings", 444 "//blimp/engine:app_settings",
439 "//blimp/net", 445 "//blimp/net",
440 "//blimp/net:test_support", 446 "//blimp/net:test_support",
447 "//content",
441 "//content/public/browser", 448 "//content/public/browser",
442 "//net", 449 "//net",
443 "//net:test_support", 450 "//net:test_support",
444 "//testing/gmock", 451 "//testing/gmock",
445 "//testing/gtest", 452 "//testing/gtest",
446 "//third_party/WebKit/public:blink_headers", 453 "//third_party/WebKit/public:blink_headers",
447 "//ui/base/ime", 454 "//ui/base/ime",
448 ] 455 ]
449 } 456 }
450 457
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 # Include symupload target here as it is needed by the buildbots to upload 606 # Include symupload target here as it is needed by the buildbots to upload
600 # the symbol file created by dump_syms. 607 # the symbol file created by dump_syms.
601 deps = [ 608 deps = [
602 ":blimp_engine_app", 609 ":blimp_engine_app",
603 "//breakpad:symupload", 610 "//breakpad:symupload",
604 dump_syms_label, 611 dump_syms_label,
605 ] 612 ]
606 } 613 }
607 } 614 }
608 } 615 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698