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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 2413063002: content/blimp: Set up hooks for enabling LTHRemote in the renderer. (Closed)
Patch Set: Rebase. 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 unified diff | Download patch
« no previous file with comments | « no previous file | blimp/engine/renderer/blimp_content_renderer_client.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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 "//ui/wm", 320 "//ui/wm",
321 ] 321 ]
322 } 322 }
323 323
324 source_set("renderer") { 324 source_set("renderer") {
325 sources = [ 325 sources = [
326 "renderer/blimp_content_renderer_client.cc", 326 "renderer/blimp_content_renderer_client.cc",
327 "renderer/blimp_content_renderer_client.h", 327 "renderer/blimp_content_renderer_client.h",
328 "renderer/blimp_engine_picture_cache.cc", 328 "renderer/blimp_engine_picture_cache.cc",
329 "renderer/blimp_engine_picture_cache.h", 329 "renderer/blimp_engine_picture_cache.h",
330 "renderer/blimp_remote_compositor_bridge.cc",
331 "renderer/blimp_remote_compositor_bridge.h",
330 "renderer/blob_channel_sender_proxy.cc", 332 "renderer/blob_channel_sender_proxy.cc",
331 "renderer/blob_channel_sender_proxy.h", 333 "renderer/blob_channel_sender_proxy.h",
332 "renderer/engine_image_serialization_processor.cc", 334 "renderer/engine_image_serialization_processor.cc",
333 "renderer/engine_image_serialization_processor.h", 335 "renderer/engine_image_serialization_processor.h",
336 "renderer/frame_scheduler.cc",
337 "renderer/frame_scheduler.h",
334 ] 338 ]
335 339
336 deps = [ 340 deps = [
337 ":blob_channel_service", 341 ":blob_channel_service",
338 "//base", 342 "//base",
339 "//blimp/common", 343 "//blimp/common",
340 "//blimp/common/proto", 344 "//blimp/common/proto",
341 "//blimp/net", 345 "//blimp/net",
342 "//cc", 346 "//cc",
347 "//cc/proto",
343 "//components/web_cache/renderer", 348 "//components/web_cache/renderer",
344 "//content/public/common", 349 "//content/public/common",
345 "//content/public/renderer", 350 "//content/public/renderer",
346 "//services/service_manager/public/cpp", 351 "//services/service_manager/public/cpp",
347 "//skia", 352 "//skia",
348 "//third_party/libwebp", 353 "//third_party/libwebp",
349 "//ui/gfx/geometry", 354 "//ui/gfx/geometry",
350 "//ui/gl", 355 "//ui/gl",
351 ] 356 ]
352 } 357 }
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 "//testing/gtest", 571 "//testing/gtest",
567 ] 572 ]
568 } 573 }
569 574
570 source_set("renderer_unit_tests") { 575 source_set("renderer_unit_tests") {
571 testonly = true 576 testonly = true
572 577
573 sources = [ 578 sources = [
574 "renderer/blimp_engine_picture_cache_unittest.cc", 579 "renderer/blimp_engine_picture_cache_unittest.cc",
575 "renderer/blob_channel_sender_proxy_unittest.cc", 580 "renderer/blob_channel_sender_proxy_unittest.cc",
581 "renderer/frame_scheduler_unittest.cc",
576 ] 582 ]
577 583
578 deps = [ 584 deps = [
579 ":renderer", 585 ":renderer",
580 "//base", 586 "//base",
581 "//blimp/common", 587 "//blimp/common",
582 "//blimp/common:test_support", 588 "//blimp/common:test_support",
583 "//blimp/engine:blob_channel_mojo_cpp_sources", 589 "//blimp/engine:blob_channel_mojo_cpp_sources",
584 "//blimp/engine:blob_channel_service", 590 "//blimp/engine:blob_channel_service",
585 "//blimp/net:test_support", 591 "//blimp/net:test_support",
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 "//content/test:test_support", 801 "//content/test:test_support",
796 "//testing/gmock", 802 "//testing/gmock",
797 "//testing/gtest", 803 "//testing/gtest",
798 ] 804 ]
799 805
800 data = [ 806 data = [
801 "//blimp/test/data/", 807 "//blimp/test/data/",
802 "$root_out_dir/blimp_engine.pak", 808 "$root_out_dir/blimp_engine.pak",
803 ] 809 ]
804 } 810 }
OLDNEW
« no previous file with comments | « no previous file | blimp/engine/renderer/blimp_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698