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 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 "test/surface_aggregator_test_helpers.cc", | 698 "test/surface_aggregator_test_helpers.cc", |
699 "test/surface_aggregator_test_helpers.h", | 699 "test/surface_aggregator_test_helpers.h", |
700 "test/surface_hittest_test_helpers.cc", | 700 "test/surface_hittest_test_helpers.cc", |
701 "test/surface_hittest_test_helpers.h", | 701 "test/surface_hittest_test_helpers.h", |
702 "test/task_graph_runner_test_template.cc", | 702 "test/task_graph_runner_test_template.cc", |
703 "test/task_graph_runner_test_template.h", | 703 "test/task_graph_runner_test_template.h", |
704 "test/test_context_provider.cc", | 704 "test/test_context_provider.cc", |
705 "test/test_context_provider.h", | 705 "test/test_context_provider.h", |
706 "test/test_context_support.cc", | 706 "test/test_context_support.cc", |
707 "test/test_context_support.h", | 707 "test/test_context_support.h", |
| 708 "test/test_element_id.cc", |
| 709 "test/test_element_id.h", |
708 "test/test_gles2_interface.cc", | 710 "test/test_gles2_interface.cc", |
709 "test/test_gles2_interface.h", | 711 "test/test_gles2_interface.h", |
710 "test/test_gpu_memory_buffer_manager.cc", | 712 "test/test_gpu_memory_buffer_manager.cc", |
711 "test/test_gpu_memory_buffer_manager.h", | 713 "test/test_gpu_memory_buffer_manager.h", |
712 "test/test_hooks.cc", | 714 "test/test_hooks.cc", |
713 "test/test_hooks.h", | 715 "test/test_hooks.h", |
714 "test/test_image_factory.cc", | 716 "test/test_image_factory.cc", |
715 "test/test_image_factory.h", | 717 "test/test_image_factory.h", |
716 "test/test_in_process_context_provider.cc", | 718 "test/test_in_process_context_provider.cc", |
717 "test/test_in_process_context_provider.h", | 719 "test/test_in_process_context_provider.h", |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 "//testing/gtest", | 999 "//testing/gtest", |
998 "//testing/perf", | 1000 "//testing/perf", |
999 "//ui/gfx", | 1001 "//ui/gfx", |
1000 "//ui/gfx/geometry", | 1002 "//ui/gfx/geometry", |
1001 "//ui/gl", | 1003 "//ui/gl", |
1002 "//ui/gl:test_support", | 1004 "//ui/gl:test_support", |
1003 ] | 1005 ] |
1004 } | 1006 } |
1005 # When adding support for isolates, please have a look at run-time dependencies | 1007 # When adding support for isolates, please have a look at run-time dependencies |
1006 # in the cc_unittests_run target in cc_tests.gyp. | 1008 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |