| 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 "test/test_context_support.cc", | 666 "test/test_context_support.cc", |
| 667 "test/test_context_support.h", | 667 "test/test_context_support.h", |
| 668 "test/test_gles2_interface.cc", | 668 "test/test_gles2_interface.cc", |
| 669 "test/test_gles2_interface.h", | 669 "test/test_gles2_interface.h", |
| 670 "test/test_gpu_memory_buffer_manager.cc", | 670 "test/test_gpu_memory_buffer_manager.cc", |
| 671 "test/test_gpu_memory_buffer_manager.h", | 671 "test/test_gpu_memory_buffer_manager.h", |
| 672 "test/test_image_factory.cc", | 672 "test/test_image_factory.cc", |
| 673 "test/test_image_factory.h", | 673 "test/test_image_factory.h", |
| 674 "test/test_in_process_context_provider.cc", | 674 "test/test_in_process_context_provider.cc", |
| 675 "test/test_in_process_context_provider.h", | 675 "test/test_in_process_context_provider.h", |
| 676 "test/test_now_source.cc", | |
| 677 "test/test_now_source.h", | |
| 678 "test/test_occlusion_tracker.h", | 676 "test/test_occlusion_tracker.h", |
| 679 "test/test_shared_bitmap_manager.cc", | 677 "test/test_shared_bitmap_manager.cc", |
| 680 "test/test_shared_bitmap_manager.h", | 678 "test/test_shared_bitmap_manager.h", |
| 681 "test/test_task_graph_runner.cc", | 679 "test/test_task_graph_runner.cc", |
| 682 "test/test_task_graph_runner.h", | 680 "test/test_task_graph_runner.h", |
| 683 "test/test_texture.cc", | 681 "test/test_texture.cc", |
| 684 "test/test_texture.h", | 682 "test/test_texture.h", |
| 685 "test/test_tile_priorities.cc", | 683 "test/test_tile_priorities.cc", |
| 686 "test/test_tile_priorities.h", | 684 "test/test_tile_priorities.h", |
| 687 "test/test_web_graphics_context_3d.cc", | 685 "test/test_web_graphics_context_3d.cc", |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 "//ui/gfx/geometry", | 920 "//ui/gfx/geometry", |
| 923 "//ui/gl", | 921 "//ui/gl", |
| 924 ] | 922 ] |
| 925 | 923 |
| 926 if (is_android) { | 924 if (is_android) { |
| 927 isolate_file = "cc_perftests.isolate" | 925 isolate_file = "cc_perftests.isolate" |
| 928 } | 926 } |
| 929 } | 927 } |
| 930 # When adding support for isolates, please have a look at run-time dependencies | 928 # When adding support for isolates, please have a look at run-time dependencies |
| 931 # in the cc_unittests_run target in cc_tests.gyp. | 929 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |