| 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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 "test/test_web_graphics_context_3d.h", | 617 "test/test_web_graphics_context_3d.h", |
| 618 "test/tiled_layer_test_common.cc", | 618 "test/tiled_layer_test_common.cc", |
| 619 "test/tiled_layer_test_common.h", | 619 "test/tiled_layer_test_common.h", |
| 620 ] | 620 ] |
| 621 | 621 |
| 622 include_dirs = [ | 622 include_dirs = [ |
| 623 ".", | 623 ".", |
| 624 "test", | 624 "test", |
| 625 ] | 625 ] |
| 626 | 626 |
| 627 public_deps = [ |
| 628 ":cc", |
| 629 ] |
| 627 deps = [ | 630 deps = [ |
| 628 "//base", | 631 "//base", |
| 629 "//base/third_party/dynamic_annotations", | 632 "//base/third_party/dynamic_annotations", |
| 630 "//gpu:test_support", | 633 "//gpu:test_support", |
| 631 "//gpu/command_buffer/client:gles2_c_lib", | 634 "//gpu/command_buffer/client:gles2_c_lib", |
| 632 "//gpu/command_buffer/client:gles2_implementation", | 635 "//gpu/command_buffer/client:gles2_implementation", |
| 633 "//gpu/command_buffer/client:gl_in_process_context", | 636 "//gpu/command_buffer/client:gl_in_process_context", |
| 634 "//gpu/command_buffer/common:gles2_utils", | 637 "//gpu/command_buffer/common:gles2_utils", |
| 635 "//gpu/skia_bindings", | 638 "//gpu/skia_bindings", |
| 636 "//skia", | 639 "//skia", |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 "//gpu/command_buffer/common:gles2_utils", | 821 "//gpu/command_buffer/common:gles2_utils", |
| 819 "//media", | 822 "//media", |
| 820 "//skia", | 823 "//skia", |
| 821 "//testing/gmock", | 824 "//testing/gmock", |
| 822 "//testing/gtest", | 825 "//testing/gtest", |
| 823 "//testing/perf", | 826 "//testing/perf", |
| 824 "//ui/gfx", | 827 "//ui/gfx", |
| 825 "//ui/gfx/geometry", | 828 "//ui/gfx/geometry", |
| 826 ] | 829 ] |
| 827 } | 830 } |
| OLD | NEW |