| 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 "//testing/gmock", | 570 "//testing/gmock", |
| 571 "//testing/gtest", | 571 "//testing/gtest", |
| 572 ] | 572 ] |
| 573 } | 573 } |
| 574 | 574 |
| 575 source_set("renderer_unit_tests") { | 575 source_set("renderer_unit_tests") { |
| 576 testonly = true | 576 testonly = true |
| 577 | 577 |
| 578 sources = [ | 578 sources = [ |
| 579 "renderer/blimp_engine_picture_cache_unittest.cc", | 579 "renderer/blimp_engine_picture_cache_unittest.cc", |
| 580 "renderer/blimp_remote_compositor_bridge_unittest.cc", |
| 580 "renderer/blob_channel_sender_proxy_unittest.cc", | 581 "renderer/blob_channel_sender_proxy_unittest.cc", |
| 581 "renderer/frame_scheduler_unittest.cc", | 582 "renderer/frame_scheduler_unittest.cc", |
| 582 ] | 583 ] |
| 583 | 584 |
| 584 deps = [ | 585 deps = [ |
| 585 ":renderer", | 586 ":renderer", |
| 586 "//base", | 587 "//base", |
| 587 "//blimp/common", | 588 "//blimp/common", |
| 588 "//blimp/common:test_support", | 589 "//blimp/common:test_support", |
| 589 "//blimp/engine:blob_channel_mojo_cpp_sources", | 590 "//blimp/engine:blob_channel_mojo_cpp_sources", |
| 590 "//blimp/engine:blob_channel_service", | 591 "//blimp/engine:blob_channel_service", |
| 591 "//blimp/net:test_support", | 592 "//blimp/net:test_support", |
| 592 "//blimp/test:support", | 593 "//blimp/test:support", |
| 594 "//cc/proto", |
| 593 "//mojo/public", | 595 "//mojo/public", |
| 594 "//skia", | 596 "//skia", |
| 595 "//testing/gmock", | 597 "//testing/gmock", |
| 596 "//testing/gtest", | 598 "//testing/gtest", |
| 597 ] | 599 ] |
| 598 } | 600 } |
| 599 | 601 |
| 600 source_set("unit_tests") { | 602 source_set("unit_tests") { |
| 601 testonly = true | 603 testonly = true |
| 602 | 604 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 "//content/test:test_support", | 804 "//content/test:test_support", |
| 803 "//testing/gmock", | 805 "//testing/gmock", |
| 804 "//testing/gtest", | 806 "//testing/gtest", |
| 805 ] | 807 ] |
| 806 | 808 |
| 807 data = [ | 809 data = [ |
| 808 "//blimp/test/data/", | 810 "//blimp/test/data/", |
| 809 "$root_out_dir/blimp_engine.pak", | 811 "$root_out_dir/blimp_engine.pak", |
| 810 ] | 812 ] |
| 811 } | 813 } |
| OLD | NEW |