OLD | NEW |
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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 "//ui/base/ime", | 282 "//ui/base/ime", |
283 "//ui/resources", | 283 "//ui/resources", |
284 "//ui/wm", | 284 "//ui/wm", |
285 ] | 285 ] |
286 } | 286 } |
287 | 287 |
288 source_set("renderer") { | 288 source_set("renderer") { |
289 sources = [ | 289 sources = [ |
290 "renderer/blimp_content_renderer_client.cc", | 290 "renderer/blimp_content_renderer_client.cc", |
291 "renderer/blimp_content_renderer_client.h", | 291 "renderer/blimp_content_renderer_client.h", |
| 292 "renderer/blimp_engine_picture_cache.cc", |
| 293 "renderer/blimp_engine_picture_cache.h", |
292 "renderer/blob_channel_sender_proxy.cc", | 294 "renderer/blob_channel_sender_proxy.cc", |
293 "renderer/blob_channel_sender_proxy.h", | 295 "renderer/blob_channel_sender_proxy.h", |
294 "renderer/engine_image_serialization_processor.cc", | 296 "renderer/engine_image_serialization_processor.cc", |
295 "renderer/engine_image_serialization_processor.h", | 297 "renderer/engine_image_serialization_processor.h", |
296 ] | 298 ] |
297 | 299 |
298 deps = [ | 300 deps = [ |
299 ":blob_channel_service", | 301 ":blob_channel_service", |
300 "//base", | 302 "//base", |
301 "//blimp/common", | 303 "//blimp/common", |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 "//content/public/browser", | 460 "//content/public/browser", |
459 "//net", | 461 "//net", |
460 "//net:test_support", | 462 "//net:test_support", |
461 "//testing/gmock", | 463 "//testing/gmock", |
462 "//testing/gtest", | 464 "//testing/gtest", |
463 "//third_party/WebKit/public:blink_headers", | 465 "//third_party/WebKit/public:blink_headers", |
464 "//ui/base:test_support", | 466 "//ui/base:test_support", |
465 ] | 467 ] |
466 } | 468 } |
467 | 469 |
| 470 source_set("renderer_unit_tests") { |
| 471 testonly = true |
| 472 |
| 473 sources = [ |
| 474 "renderer/blimp_engine_picture_cache_unittest.cc", |
| 475 ] |
| 476 |
| 477 deps = [ |
| 478 ":renderer", |
| 479 "//blimp/test:support", |
| 480 "//skia", |
| 481 "//testing/gmock", |
| 482 "//testing/gtest", |
| 483 ] |
| 484 } |
| 485 |
468 source_set("unit_tests") { | 486 source_set("unit_tests") { |
469 testonly = true | 487 testonly = true |
470 | 488 |
471 deps = [ | 489 deps = [ |
472 ":app_unit_tests", | 490 ":app_unit_tests", |
473 ":common_unit_tests", | 491 ":common_unit_tests", |
474 ":feature_unit_tests", | 492 ":feature_unit_tests", |
| 493 ":renderer_unit_tests", |
475 ] | 494 ] |
476 } | 495 } |
477 | 496 |
478 if (is_linux) { | 497 if (is_linux) { |
479 _runtime_deps = "$root_gen_dir/blimp-engine.runtime_deps" | 498 _runtime_deps = "$root_gen_dir/blimp-engine.runtime_deps" |
480 _rebased_runtime_deps = rebase_path(_runtime_deps, root_out_dir) | 499 _rebased_runtime_deps = rebase_path(_runtime_deps, root_out_dir) |
481 | 500 |
482 executable("blimp_engine_app") { | 501 executable("blimp_engine_app") { |
483 sources = [ | 502 sources = [ |
484 "app/blimp_main.cc", | 503 "app/blimp_main.cc", |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 "//content/test:test_support", | 676 "//content/test:test_support", |
658 "//testing/gmock", | 677 "//testing/gmock", |
659 "//testing/gtest", | 678 "//testing/gtest", |
660 ] | 679 ] |
661 | 680 |
662 data = [ | 681 data = [ |
663 "data/", | 682 "data/", |
664 "$root_out_dir/blimp_engine.pak", | 683 "$root_out_dir/blimp_engine.pak", |
665 ] | 684 ] |
666 } | 685 } |
OLD | NEW |