| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 "test/proxy_main_for_test.cc", | 681 "test/proxy_main_for_test.cc", |
| 682 "test/proxy_main_for_test.h", | 682 "test/proxy_main_for_test.h", |
| 683 "test/remote_channel_impl_for_test.cc", | 683 "test/remote_channel_impl_for_test.cc", |
| 684 "test/remote_channel_impl_for_test.h", | 684 "test/remote_channel_impl_for_test.h", |
| 685 "test/remote_proto_channel_bridge.cc", | 685 "test/remote_proto_channel_bridge.cc", |
| 686 "test/remote_proto_channel_bridge.h", | 686 "test/remote_proto_channel_bridge.h", |
| 687 "test/render_pass_test_utils.cc", | 687 "test/render_pass_test_utils.cc", |
| 688 "test/render_pass_test_utils.h", | 688 "test/render_pass_test_utils.h", |
| 689 "test/scheduler_test_common.cc", | 689 "test/scheduler_test_common.cc", |
| 690 "test/scheduler_test_common.h", | 690 "test/scheduler_test_common.h", |
| 691 "test/simple_task_runner.cc", |
| 692 "test/simple_task_runner.h", |
| 691 "test/skia_common.cc", | 693 "test/skia_common.cc", |
| 692 "test/skia_common.h", | 694 "test/skia_common.h", |
| 693 "test/solid_color_content_layer_client.cc", | 695 "test/solid_color_content_layer_client.cc", |
| 694 "test/solid_color_content_layer_client.h", | 696 "test/solid_color_content_layer_client.h", |
| 695 "test/surface_aggregator_test_helpers.cc", | 697 "test/surface_aggregator_test_helpers.cc", |
| 696 "test/surface_aggregator_test_helpers.h", | 698 "test/surface_aggregator_test_helpers.h", |
| 697 "test/surface_hittest_test_helpers.cc", | 699 "test/surface_hittest_test_helpers.cc", |
| 698 "test/surface_hittest_test_helpers.h", | 700 "test/surface_hittest_test_helpers.h", |
| 699 "test/task_graph_runner_test_template.cc", | 701 "test/task_graph_runner_test_template.cc", |
| 700 "test/task_graph_runner_test_template.h", | 702 "test/task_graph_runner_test_template.h", |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 998 "//testing/gtest", | 1000 "//testing/gtest", |
| 999 "//testing/perf", | 1001 "//testing/perf", |
| 1000 "//ui/gfx", | 1002 "//ui/gfx", |
| 1001 "//ui/gfx/geometry", | 1003 "//ui/gfx/geometry", |
| 1002 "//ui/gl", | 1004 "//ui/gl", |
| 1003 "//ui/gl:test_support", | 1005 "//ui/gl:test_support", |
| 1004 ] | 1006 ] |
| 1005 } | 1007 } |
| 1006 # When adding support for isolates, please have a look at run-time dependencies | 1008 # When adding support for isolates, please have a look at run-time dependencies |
| 1007 # in the cc_unittests_run target in cc_tests.gyp. | 1009 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |