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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 "test/fake_picture_layer_tiling_client.cc", | 642 "test/fake_picture_layer_tiling_client.cc", |
643 "test/fake_picture_layer_tiling_client.h", | 643 "test/fake_picture_layer_tiling_client.h", |
644 "test/fake_proxy.cc", | 644 "test/fake_proxy.cc", |
645 "test/fake_proxy.h", | 645 "test/fake_proxy.h", |
646 "test/fake_raster_buffer_provider.cc", | 646 "test/fake_raster_buffer_provider.cc", |
647 "test/fake_raster_buffer_provider.h", | 647 "test/fake_raster_buffer_provider.h", |
648 "test/fake_raster_source.cc", | 648 "test/fake_raster_source.cc", |
649 "test/fake_raster_source.h", | 649 "test/fake_raster_source.h", |
650 "test/fake_recording_source.cc", | 650 "test/fake_recording_source.cc", |
651 "test/fake_recording_source.h", | 651 "test/fake_recording_source.h", |
652 "test/fake_renderer_client.cc", | |
653 "test/fake_renderer_client.h", | |
654 "test/fake_rendering_stats_instrumentation.h", | 652 "test/fake_rendering_stats_instrumentation.h", |
655 "test/fake_resource_provider.h", | 653 "test/fake_resource_provider.h", |
656 "test/fake_scoped_ui_resource.cc", | 654 "test/fake_scoped_ui_resource.cc", |
657 "test/fake_scoped_ui_resource.h", | 655 "test/fake_scoped_ui_resource.h", |
658 "test/fake_scrollbar.cc", | 656 "test/fake_scrollbar.cc", |
659 "test/fake_scrollbar.h", | 657 "test/fake_scrollbar.h", |
660 "test/fake_tile_manager.cc", | 658 "test/fake_tile_manager.cc", |
661 "test/fake_tile_manager.h", | 659 "test/fake_tile_manager.h", |
662 "test/fake_tile_manager_client.cc", | 660 "test/fake_tile_manager_client.cc", |
663 "test/fake_tile_manager_client.h", | 661 "test/fake_tile_manager_client.h", |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1038 "//ui/gfx/geometry", | 1036 "//ui/gfx/geometry", |
1039 "//ui/gl", | 1037 "//ui/gl", |
1040 "//ui/gl:test_support", | 1038 "//ui/gl:test_support", |
1041 ] | 1039 ] |
1042 | 1040 |
1043 # This target should not require the Chrome executable to run. | 1041 # This target should not require the Chrome executable to run. |
1044 assert_no_deps = [ "//chrome" ] | 1042 assert_no_deps = [ "//chrome" ] |
1045 } | 1043 } |
1046 # When adding support for isolates, please have a look at run-time dependencies | 1044 # When adding support for isolates, please have a look at run-time dependencies |
1047 # in the cc_unittests_run target in cc_tests.gyp. | 1045 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |