| 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 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 "test/test_gles2_interface.cc", | 709 "test/test_gles2_interface.cc", |
| 710 "test/test_gles2_interface.h", | 710 "test/test_gles2_interface.h", |
| 711 "test/test_gpu_memory_buffer_manager.cc", | 711 "test/test_gpu_memory_buffer_manager.cc", |
| 712 "test/test_gpu_memory_buffer_manager.h", | 712 "test/test_gpu_memory_buffer_manager.h", |
| 713 "test/test_hooks.cc", | 713 "test/test_hooks.cc", |
| 714 "test/test_hooks.h", | 714 "test/test_hooks.h", |
| 715 "test/test_image_factory.cc", | 715 "test/test_image_factory.cc", |
| 716 "test/test_image_factory.h", | 716 "test/test_image_factory.h", |
| 717 "test/test_in_process_context_provider.cc", | 717 "test/test_in_process_context_provider.cc", |
| 718 "test/test_in_process_context_provider.h", | 718 "test/test_in_process_context_provider.h", |
| 719 "test/test_layer_tree_host_base.cc", | |
| 720 "test/test_layer_tree_host_base.h", | |
| 721 "test/test_occlusion_tracker.h", | 719 "test/test_occlusion_tracker.h", |
| 722 "test/test_shared_bitmap_manager.cc", | 720 "test/test_shared_bitmap_manager.cc", |
| 723 "test/test_shared_bitmap_manager.h", | 721 "test/test_shared_bitmap_manager.h", |
| 724 "test/test_task_graph_runner.cc", | 722 "test/test_task_graph_runner.cc", |
| 725 "test/test_task_graph_runner.h", | 723 "test/test_task_graph_runner.h", |
| 726 "test/test_texture.cc", | 724 "test/test_texture.cc", |
| 727 "test/test_texture.h", | 725 "test/test_texture.h", |
| 728 "test/test_tile_priorities.cc", | 726 "test/test_tile_priorities.cc", |
| 729 "test/test_tile_priorities.h", | 727 "test/test_tile_priorities.h", |
| 730 "test/test_web_graphics_context_3d.cc", | 728 "test/test_web_graphics_context_3d.cc", |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 "//ui/gfx/geometry", | 1001 "//ui/gfx/geometry", |
| 1004 "//ui/gl", | 1002 "//ui/gl", |
| 1005 "//ui/gl:test_support", | 1003 "//ui/gl:test_support", |
| 1006 ] | 1004 ] |
| 1007 | 1005 |
| 1008 # This target should not require the Chrome executable to run. | 1006 # This target should not require the Chrome executable to run. |
| 1009 assert_no_deps = [ "//chrome" ] | 1007 assert_no_deps = [ "//chrome" ] |
| 1010 } | 1008 } |
| 1011 # When adding support for isolates, please have a look at run-time dependencies | 1009 # When adding support for isolates, please have a look at run-time dependencies |
| 1012 # in the cc_unittests_run target in cc_tests.gyp. | 1010 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |