| 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 } | 505 } |
| 506 } | 506 } |
| 507 | 507 |
| 508 source_set("test_support") { | 508 source_set("test_support") { |
| 509 testonly = true | 509 testonly = true |
| 510 sources = [ | 510 sources = [ |
| 511 "test/animation_test_common.cc", | 511 "test/animation_test_common.cc", |
| 512 "test/animation_test_common.h", | 512 "test/animation_test_common.h", |
| 513 "test/begin_frame_args_test.cc", | 513 "test/begin_frame_args_test.cc", |
| 514 "test/begin_frame_args_test.h", | 514 "test/begin_frame_args_test.h", |
| 515 "test/delayed_raster_picture_pile_impl.cc", |
| 516 "test/delayed_raster_picture_pile_impl.h", |
| 517 "test/delayed_raster_trigger.cc", |
| 518 "test/delayed_raster_trigger.h", |
| 515 "test/fake_content_layer.cc", | 519 "test/fake_content_layer.cc", |
| 516 "test/fake_content_layer.h", | 520 "test/fake_content_layer.h", |
| 517 "test/fake_content_layer_client.cc", | 521 "test/fake_content_layer_client.cc", |
| 518 "test/fake_content_layer_client.h", | 522 "test/fake_content_layer_client.h", |
| 519 "test/fake_content_layer_impl.cc", | 523 "test/fake_content_layer_impl.cc", |
| 520 "test/fake_content_layer_impl.h", | 524 "test/fake_content_layer_impl.h", |
| 521 "test/fake_delegated_renderer_layer.cc", | 525 "test/fake_delegated_renderer_layer.cc", |
| 522 "test/fake_delegated_renderer_layer.h", | 526 "test/fake_delegated_renderer_layer.h", |
| 523 "test/fake_delegated_renderer_layer_impl.cc", | 527 "test/fake_delegated_renderer_layer_impl.cc", |
| 524 "test/fake_delegated_renderer_layer_impl.h", | 528 "test/fake_delegated_renderer_layer_impl.h", |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 "//gpu/command_buffer/common:gles2_utils", | 838 "//gpu/command_buffer/common:gles2_utils", |
| 835 "//media", | 839 "//media", |
| 836 "//skia", | 840 "//skia", |
| 837 "//testing/gmock", | 841 "//testing/gmock", |
| 838 "//testing/gtest", | 842 "//testing/gtest", |
| 839 "//testing/perf", | 843 "//testing/perf", |
| 840 "//ui/gfx", | 844 "//ui/gfx", |
| 841 "//ui/gfx/geometry", | 845 "//ui/gfx/geometry", |
| 842 ] | 846 ] |
| 843 } | 847 } |
| OLD | NEW |