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