| 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", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 "//content/test:test_support", | 802 "//content/test:test_support", |
| 802 "//testing/gmock", | 803 "//testing/gmock", |
| 803 "//testing/gtest", | 804 "//testing/gtest", |
| 804 ] | 805 ] |
| 805 | 806 |
| 806 data = [ | 807 data = [ |
| 807 "//blimp/test/data/", | 808 "//blimp/test/data/", |
| 808 "$root_out_dir/blimp_engine.pak", | 809 "$root_out_dir/blimp_engine.pak", |
| 809 ] | 810 ] |
| 810 } | 811 } |
| OLD | NEW |