| 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 component("cc") { | 5 component("cc") { |
| 6 sources = [ | 6 sources = [ |
| 7 "animation/animation.cc", | 7 "animation/animation.cc", |
| 8 "animation/animation.h", | 8 "animation/animation.h", |
| 9 "animation/animation_curve.cc", | 9 "animation/animation_curve.cc", |
| 10 "animation/animation_curve.h", | 10 "animation/animation_curve.h", |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 "test/fake_output_surface_client.cc", | 537 "test/fake_output_surface_client.cc", |
| 538 "test/fake_output_surface_client.h", | 538 "test/fake_output_surface_client.h", |
| 539 "test/fake_painted_scrollbar_layer.cc", | 539 "test/fake_painted_scrollbar_layer.cc", |
| 540 "test/fake_painted_scrollbar_layer.h", | 540 "test/fake_painted_scrollbar_layer.h", |
| 541 "test/fake_picture_layer.cc", | 541 "test/fake_picture_layer.cc", |
| 542 "test/fake_picture_layer.h", | 542 "test/fake_picture_layer.h", |
| 543 "test/fake_picture_layer_impl.cc", | 543 "test/fake_picture_layer_impl.cc", |
| 544 "test/fake_picture_layer_impl.h", | 544 "test/fake_picture_layer_impl.h", |
| 545 "test/fake_picture_layer_tiling_client.cc", | 545 "test/fake_picture_layer_tiling_client.cc", |
| 546 "test/fake_picture_layer_tiling_client.h", | 546 "test/fake_picture_layer_tiling_client.h", |
| 547 "test/fake_picture_pile.cc", |
| 548 "test/fake_picture_pile.h", |
| 547 "test/fake_picture_pile_impl.cc", | 549 "test/fake_picture_pile_impl.cc", |
| 548 "test/fake_picture_pile_impl.h", | 550 "test/fake_picture_pile_impl.h", |
| 549 "test/fake_proxy.cc", | 551 "test/fake_proxy.cc", |
| 550 "test/fake_proxy.h", | 552 "test/fake_proxy.h", |
| 551 "test/fake_renderer_client.cc", | 553 "test/fake_renderer_client.cc", |
| 552 "test/fake_renderer_client.h", | 554 "test/fake_renderer_client.h", |
| 553 "test/fake_rendering_stats_instrumentation.h", | 555 "test/fake_rendering_stats_instrumentation.h", |
| 554 "test/fake_scoped_ui_resource.cc", | 556 "test/fake_scoped_ui_resource.cc", |
| 555 "test/fake_scoped_ui_resource.h", | 557 "test/fake_scoped_ui_resource.h", |
| 556 "test/fake_scrollbar.cc", | 558 "test/fake_scrollbar.cc", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 "test/test_now_source.h", | 623 "test/test_now_source.h", |
| 622 "test/test_occlusion_tracker.h", | 624 "test/test_occlusion_tracker.h", |
| 623 "test/test_shared_bitmap_manager.cc", | 625 "test/test_shared_bitmap_manager.cc", |
| 624 "test/test_shared_bitmap_manager.h", | 626 "test/test_shared_bitmap_manager.h", |
| 625 "test/test_texture.cc", | 627 "test/test_texture.cc", |
| 626 "test/test_texture.h", | 628 "test/test_texture.h", |
| 627 "test/test_tile_priorities.cc", | 629 "test/test_tile_priorities.cc", |
| 628 "test/test_tile_priorities.h", | 630 "test/test_tile_priorities.h", |
| 629 "test/test_web_graphics_context_3d.cc", | 631 "test/test_web_graphics_context_3d.cc", |
| 630 "test/test_web_graphics_context_3d.h", | 632 "test/test_web_graphics_context_3d.h", |
| 633 "test/thread_blocker.cc", |
| 634 "test/thread_blocker.h", |
| 631 "test/tiled_layer_test_common.cc", | 635 "test/tiled_layer_test_common.cc", |
| 632 "test/tiled_layer_test_common.h", | 636 "test/tiled_layer_test_common.h", |
| 633 ] | 637 ] |
| 634 | 638 |
| 635 include_dirs = [ | 639 include_dirs = [ |
| 636 ".", | 640 ".", |
| 637 "test", | 641 "test", |
| 638 ] | 642 ] |
| 639 | 643 |
| 640 public_deps = [ | 644 public_deps = [ |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 "//gpu/command_buffer/common:gles2_utils", | 839 "//gpu/command_buffer/common:gles2_utils", |
| 836 "//media", | 840 "//media", |
| 837 "//skia", | 841 "//skia", |
| 838 "//testing/gmock", | 842 "//testing/gmock", |
| 839 "//testing/gtest", | 843 "//testing/gtest", |
| 840 "//testing/perf", | 844 "//testing/perf", |
| 841 "//ui/gfx", | 845 "//ui/gfx", |
| 842 "//ui/gfx/geometry", | 846 "//ui/gfx/geometry", |
| 843 ] | 847 ] |
| 844 } | 848 } |
| OLD | NEW |