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

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

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git merge origin/master 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 268 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/blimp_engine_picture_cache.cc",
290 "renderer/blimp_engine_picture_cache.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_mojo",
295 "//base", 297 "//base",
296 "//blimp/common", 298 "//blimp/common",
297 "//blimp/common/proto", 299 "//blimp/common/proto",
298 "//cc", 300 "//cc",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 "//content/public/browser", 445 "//content/public/browser",
444 "//net", 446 "//net",
445 "//net:test_support", 447 "//net:test_support",
446 "//testing/gmock", 448 "//testing/gmock",
447 "//testing/gtest", 449 "//testing/gtest",
448 "//third_party/WebKit/public:blink_headers", 450 "//third_party/WebKit/public:blink_headers",
449 "//ui/base/ime", 451 "//ui/base/ime",
450 ] 452 ]
451 } 453 }
452 454
455 source_set("renderer_unit_tests") {
456 testonly = true
457
458 sources = [
459 "renderer/blimp_engine_picture_cache_unittest.cc",
460 ]
461
462 deps = [
463 ":renderer",
464 "//blimp/test:support",
465 "//skia",
466 "//testing/gtest",
467 ]
468 }
469
453 source_set("unit_tests") { 470 source_set("unit_tests") {
454 testonly = true 471 testonly = true
455 472
456 deps = [ 473 deps = [
457 ":app_unit_tests", 474 ":app_unit_tests",
458 ":common_unit_tests", 475 ":common_unit_tests",
459 ":feature_unit_tests", 476 ":feature_unit_tests",
477 ":renderer_unit_tests",
460 ] 478 ]
461 } 479 }
462 480
463 if (is_linux) { 481 if (is_linux) {
464 _runtime_deps = "$root_gen_dir/blimp-engine.runtime_deps" 482 _runtime_deps = "$root_gen_dir/blimp-engine.runtime_deps"
465 _rebased_runtime_deps = rebase_path(_runtime_deps, root_out_dir) 483 _rebased_runtime_deps = rebase_path(_runtime_deps, root_out_dir)
466 484
467 executable("blimp_engine_app") { 485 executable("blimp_engine_app") {
468 sources = [ 486 sources = [
469 "app/blimp_main.cc", 487 "app/blimp_main.cc",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 # Include symupload target here as it is needed by the buildbots to upload 619 # Include symupload target here as it is needed by the buildbots to upload
602 # the symbol file created by dump_syms. 620 # the symbol file created by dump_syms.
603 deps = [ 621 deps = [
604 ":blimp_engine_app", 622 ":blimp_engine_app",
605 "//breakpad:symupload", 623 "//breakpad:symupload",
606 dump_syms_label, 624 dump_syms_label,
607 ] 625 ]
608 } 626 }
609 } 627 }
610 } 628 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698