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

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: Fix non-existing SkPicture::uniqueID() when dealing with display items without SkPictures Created 4 years, 7 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 "//ui/base/ime", 276 "//ui/base/ime",
277 "//ui/resources", 277 "//ui/resources",
278 "//ui/wm", 278 "//ui/wm",
279 ] 279 ]
280 } 280 }
281 281
282 source_set("renderer") { 282 source_set("renderer") {
283 sources = [ 283 sources = [
284 "renderer/blimp_content_renderer_client.cc", 284 "renderer/blimp_content_renderer_client.cc",
285 "renderer/blimp_content_renderer_client.h", 285 "renderer/blimp_content_renderer_client.h",
286 "renderer/blimp_engine_picture_cache.cc",
287 "renderer/blimp_engine_picture_cache.h",
286 "renderer/engine_image_serialization_processor.cc", 288 "renderer/engine_image_serialization_processor.cc",
287 "renderer/engine_image_serialization_processor.h", 289 "renderer/engine_image_serialization_processor.h",
288 ] 290 ]
289 291
290 deps = [ 292 deps = [
291 ":blob_channel_mojo", 293 ":blob_channel_mojo",
292 "//base", 294 "//base",
293 "//blimp/common", 295 "//blimp/common",
294 "//blimp/common/proto", 296 "//blimp/common/proto",
295 "//cc", 297 "//cc",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 "//content/public/browser", 439 "//content/public/browser",
438 "//net", 440 "//net",
439 "//net:test_support", 441 "//net:test_support",
440 "//testing/gmock", 442 "//testing/gmock",
441 "//testing/gtest", 443 "//testing/gtest",
442 "//third_party/WebKit/public:blink_headers", 444 "//third_party/WebKit/public:blink_headers",
443 "//ui/base/ime", 445 "//ui/base/ime",
444 ] 446 ]
445 } 447 }
446 448
449 source_set("renderer_unit_tests") {
450 testonly = true
451
452 sources = [
453 "renderer/blimp_engine_picture_cache_unittest.cc",
454 ]
455
456 deps = [
457 ":renderer",
458 "//blimp/test:support",
459 "//skia",
460 "//testing/gtest",
461 ]
462 }
463
447 source_set("unit_tests") { 464 source_set("unit_tests") {
448 testonly = true 465 testonly = true
449 466
450 deps = [ 467 deps = [
451 ":app_unit_tests", 468 ":app_unit_tests",
452 ":common_unit_tests", 469 ":common_unit_tests",
453 ":feature_unit_tests", 470 ":feature_unit_tests",
471 ":renderer_unit_tests",
454 ] 472 ]
455 } 473 }
456 474
457 if (is_linux) { 475 if (is_linux) {
458 executable("blimp_engine_app") { 476 executable("blimp_engine_app") {
459 sources = [ 477 sources = [
460 "app/blimp_main.cc", 478 "app/blimp_main.cc",
461 ] 479 ]
462 480
463 deps = [ 481 deps = [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 _rebased_dockerfile, 543 _rebased_dockerfile,
526 "--startup-script", 544 "--startup-script",
527 _rebased_startup_script, 545 _rebased_startup_script,
528 "--manifest", 546 "--manifest",
529 _rebased_manifest, 547 _rebased_manifest,
530 "--output", 548 "--output",
531 rebase_path(_bundle), 549 rebase_path(_bundle),
532 ] 550 ]
533 } 551 }
534 } 552 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698