| 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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 "test/test_context_support.cc", | 720 "test/test_context_support.cc", |
| 721 "test/test_context_support.h", | 721 "test/test_context_support.h", |
| 722 "test/test_gles2_interface.cc", | 722 "test/test_gles2_interface.cc", |
| 723 "test/test_gles2_interface.h", | 723 "test/test_gles2_interface.h", |
| 724 "test/test_gpu_memory_buffer_manager.cc", | 724 "test/test_gpu_memory_buffer_manager.cc", |
| 725 "test/test_gpu_memory_buffer_manager.h", | 725 "test/test_gpu_memory_buffer_manager.h", |
| 726 "test/test_hooks.cc", | 726 "test/test_hooks.cc", |
| 727 "test/test_hooks.h", | 727 "test/test_hooks.h", |
| 728 "test/test_image_factory.cc", | 728 "test/test_image_factory.cc", |
| 729 "test/test_image_factory.h", | 729 "test/test_image_factory.h", |
| 730 "test/test_image_texture_targets_map.cc", |
| 731 "test/test_image_texture_targets_map.h", |
| 730 "test/test_in_process_context_provider.cc", | 732 "test/test_in_process_context_provider.cc", |
| 731 "test/test_in_process_context_provider.h", | 733 "test/test_in_process_context_provider.h", |
| 732 "test/test_layer_tree_host_base.cc", | 734 "test/test_layer_tree_host_base.cc", |
| 733 "test/test_layer_tree_host_base.h", | 735 "test/test_layer_tree_host_base.h", |
| 734 "test/test_occlusion_tracker.h", | 736 "test/test_occlusion_tracker.h", |
| 735 "test/test_shared_bitmap_manager.cc", | 737 "test/test_shared_bitmap_manager.cc", |
| 736 "test/test_shared_bitmap_manager.h", | 738 "test/test_shared_bitmap_manager.h", |
| 737 "test/test_task_graph_runner.cc", | 739 "test/test_task_graph_runner.cc", |
| 738 "test/test_task_graph_runner.h", | 740 "test/test_task_graph_runner.h", |
| 739 "test/test_texture.cc", | 741 "test/test_texture.cc", |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 "//ui/gfx/geometry", | 1032 "//ui/gfx/geometry", |
| 1031 "//ui/gl", | 1033 "//ui/gl", |
| 1032 "//ui/gl:test_support", | 1034 "//ui/gl:test_support", |
| 1033 ] | 1035 ] |
| 1034 | 1036 |
| 1035 # This target should not require the Chrome executable to run. | 1037 # This target should not require the Chrome executable to run. |
| 1036 assert_no_deps = [ "//chrome" ] | 1038 assert_no_deps = [ "//chrome" ] |
| 1037 } | 1039 } |
| 1038 # When adding support for isolates, please have a look at run-time dependencies | 1040 # When adding support for isolates, please have a look at run-time dependencies |
| 1039 # in the cc_unittests_run target in cc_tests.gyp. | 1041 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |