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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 "//content/public/browser", | 450 "//content/public/browser", |
451 "//net", | 451 "//net", |
452 "//net:test_support", | 452 "//net:test_support", |
453 "//testing/gmock", | 453 "//testing/gmock", |
454 "//testing/gtest", | 454 "//testing/gtest", |
455 "//third_party/WebKit/public:blink_headers", | 455 "//third_party/WebKit/public:blink_headers", |
456 "//ui/base/ime", | 456 "//ui/base/ime", |
457 ] | 457 ] |
458 } | 458 } |
459 | 459 |
| 460 source_set("renderer_unit_tests") { |
| 461 testonly = true |
| 462 |
| 463 sources = [ |
| 464 "renderer/blob_channel_sender_proxy_unittest.cc", |
| 465 ] |
| 466 |
| 467 deps = [ |
| 468 ":renderer", |
| 469 "//blimp/net:test_support", |
| 470 "//mojo/public", |
| 471 "//testing/gmock", |
| 472 "//testing/gtest", |
| 473 ] |
| 474 } |
| 475 |
460 source_set("unit_tests") { | 476 source_set("unit_tests") { |
461 testonly = true | 477 testonly = true |
462 | 478 |
463 deps = [ | 479 deps = [ |
464 ":app_unit_tests", | 480 ":app_unit_tests", |
465 ":common_unit_tests", | 481 ":common_unit_tests", |
466 ":feature_unit_tests", | 482 ":feature_unit_tests", |
| 483 ":renderer_unit_tests", |
467 ] | 484 ] |
468 } | 485 } |
469 | 486 |
470 if (is_linux) { | 487 if (is_linux) { |
471 _runtime_deps = "$root_gen_dir/blimp-engine.runtime_deps" | 488 _runtime_deps = "$root_gen_dir/blimp-engine.runtime_deps" |
472 _rebased_runtime_deps = rebase_path(_runtime_deps, root_out_dir) | 489 _rebased_runtime_deps = rebase_path(_runtime_deps, root_out_dir) |
473 | 490 |
474 executable("blimp_engine_app") { | 491 executable("blimp_engine_app") { |
475 sources = [ | 492 sources = [ |
476 "app/blimp_main.cc", | 493 "app/blimp_main.cc", |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 # Include symupload target here as it is needed by the buildbots to upload | 625 # Include symupload target here as it is needed by the buildbots to upload |
609 # the symbol file created by dump_syms. | 626 # the symbol file created by dump_syms. |
610 deps = [ | 627 deps = [ |
611 ":blimp_engine_app", | 628 ":blimp_engine_app", |
612 "//breakpad:symupload", | 629 "//breakpad:symupload", |
613 dump_syms_label, | 630 dump_syms_label, |
614 ] | 631 ] |
615 } | 632 } |
616 } | 633 } |
617 } | 634 } |
OLD | NEW |