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