| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("cc") { | 7 component("cc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "animation/animation.cc", | 9 "animation/animation.cc", |
| 10 "animation/animation.h", | 10 "animation/animation.h", |
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 "test/test_context_support.cc", | 702 "test/test_context_support.cc", |
| 703 "test/test_context_support.h", | 703 "test/test_context_support.h", |
| 704 "test/test_gles2_interface.cc", | 704 "test/test_gles2_interface.cc", |
| 705 "test/test_gles2_interface.h", | 705 "test/test_gles2_interface.h", |
| 706 "test/test_gpu_memory_buffer_manager.cc", | 706 "test/test_gpu_memory_buffer_manager.cc", |
| 707 "test/test_gpu_memory_buffer_manager.h", | 707 "test/test_gpu_memory_buffer_manager.h", |
| 708 "test/test_image_factory.cc", | 708 "test/test_image_factory.cc", |
| 709 "test/test_image_factory.h", | 709 "test/test_image_factory.h", |
| 710 "test/test_in_process_context_provider.cc", | 710 "test/test_in_process_context_provider.cc", |
| 711 "test/test_in_process_context_provider.h", | 711 "test/test_in_process_context_provider.h", |
| 712 "test/test_now_source.cc", | |
| 713 "test/test_now_source.h", | |
| 714 "test/test_occlusion_tracker.h", | 712 "test/test_occlusion_tracker.h", |
| 715 "test/test_shared_bitmap_manager.cc", | 713 "test/test_shared_bitmap_manager.cc", |
| 716 "test/test_shared_bitmap_manager.h", | 714 "test/test_shared_bitmap_manager.h", |
| 717 "test/test_task_graph_runner.cc", | 715 "test/test_task_graph_runner.cc", |
| 718 "test/test_task_graph_runner.h", | 716 "test/test_task_graph_runner.h", |
| 719 "test/test_texture.cc", | 717 "test/test_texture.cc", |
| 720 "test/test_texture.h", | 718 "test/test_texture.h", |
| 721 "test/test_tile_priorities.cc", | 719 "test/test_tile_priorities.cc", |
| 722 "test/test_tile_priorities.h", | 720 "test/test_tile_priorities.h", |
| 723 "test/test_web_graphics_context_3d.cc", | 721 "test/test_web_graphics_context_3d.cc", |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 "//ui/gfx/geometry", | 961 "//ui/gfx/geometry", |
| 964 "//ui/gl", | 962 "//ui/gl", |
| 965 ] | 963 ] |
| 966 | 964 |
| 967 if (is_android) { | 965 if (is_android) { |
| 968 isolate_file = "cc_perftests.isolate" | 966 isolate_file = "cc_perftests.isolate" |
| 969 } | 967 } |
| 970 } | 968 } |
| 971 # When adding support for isolates, please have a look at run-time dependencies | 969 # When adding support for isolates, please have a look at run-time dependencies |
| 972 # in the cc_unittests_run target in cc_tests.gyp. | 970 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |