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