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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 | 463 |
464 if (is_win) { | 464 if (is_win) { |
465 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 465 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
466 cflags = [ "/wd4267" ] # size_t -> int | 466 cflags = [ "/wd4267" ] # size_t -> int |
467 } | 467 } |
468 | 468 |
469 deps = [ | 469 deps = [ |
470 "//base", | 470 "//base", |
471 "//base/third_party/dynamic_annotations", | 471 "//base/third_party/dynamic_annotations", |
472 "//gpu", | 472 "//gpu", |
| 473 "//gpu/command_buffer/client:gles2_interface", |
473 "//media", | 474 "//media", |
474 "//skia", | 475 "//skia", |
475 "//ui/events:events_base", | 476 "//ui/events:events_base", |
476 "//ui/gfx", | 477 "//ui/gfx", |
477 "//ui/gfx/geometry", | 478 "//ui/gfx/geometry", |
478 "//ui/gl", | 479 "//ui/gl", |
479 ] | 480 ] |
480 forward_dependent_configs_from = [ | 481 forward_dependent_configs_from = [ |
481 "//skia", | 482 "//skia", |
482 ] | 483 ] |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 "test/cc_test_suite.cc", | 758 "test/cc_test_suite.cc", |
758 ] | 759 ] |
759 | 760 |
760 deps = [ | 761 deps = [ |
761 ":cc", | 762 ":cc", |
762 ":test_support", | 763 ":test_support", |
763 "//base/test:test_support", | 764 "//base/test:test_support", |
764 "//cc/surfaces", | 765 "//cc/surfaces", |
765 "//gpu", | 766 "//gpu", |
766 "//gpu:test_support", | 767 "//gpu:test_support", |
| 768 "//gpu/command_buffer/client:gles2_interface", |
767 "//gpu/command_buffer/common:gles2_utils", | 769 "//gpu/command_buffer/common:gles2_utils", |
768 "//media", | 770 "//media", |
769 "//testing/gmock", | 771 "//testing/gmock", |
770 "//testing/gtest", | 772 "//testing/gtest", |
771 "//ui/events:events_base", | 773 "//ui/events:events_base", |
772 "//ui/gfx", | 774 "//ui/gfx", |
773 "//ui/gfx/geometry", | 775 "//ui/gfx/geometry", |
774 ] | 776 ] |
775 } | 777 } |
776 | 778 |
(...skipping 22 matching lines...) Expand all Loading... |
799 "//gpu/command_buffer/common:gles2_utils", | 801 "//gpu/command_buffer/common:gles2_utils", |
800 "//media", | 802 "//media", |
801 "//skia", | 803 "//skia", |
802 "//testing/gmock", | 804 "//testing/gmock", |
803 "//testing/gtest", | 805 "//testing/gtest", |
804 "//testing/perf", | 806 "//testing/perf", |
805 "//ui/gfx", | 807 "//ui/gfx", |
806 "//ui/gfx/geometry", | 808 "//ui/gfx/geometry", |
807 ] | 809 ] |
808 } | 810 } |
OLD | NEW |