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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 "//gpu/command_buffer/client:gles2_implementation", | 630 "//gpu/command_buffer/client:gles2_implementation", |
631 "//gpu/command_buffer/client:gl_in_process_context", | 631 "//gpu/command_buffer/client:gl_in_process_context", |
632 "//gpu/skia_bindings", | 632 "//gpu/skia_bindings", |
633 "//skia", | 633 "//skia", |
634 "//testing/gmock", | 634 "//testing/gmock", |
635 "//testing/gtest", | 635 "//testing/gtest", |
636 # TODO(GYP) | 636 # TODO(GYP) |
637 #"//third_party/mesa/mesa.gyp:osmesa", | 637 #"//third_party/mesa/mesa.gyp:osmesa", |
638 "//ui/gfx", | 638 "//ui/gfx", |
639 "//ui/gfx/geometry", | 639 "//ui/gfx/geometry", |
640 "//ui/gfx:gfx_test_support", | 640 "//ui/gfx:test_support", |
641 "//ui/gl", | 641 "//ui/gl", |
642 ] | 642 ] |
643 } | 643 } |
644 | 644 |
645 # TODO(GYP) make these tests link when all deps are resolved. | 645 # TODO(GYP) make these tests link when all deps are resolved. |
646 if (false) { | 646 if (false) { |
647 | 647 |
648 test("cc_unittests") { | 648 test("cc_unittests") { |
649 sources = [ | 649 sources = [ |
650 "animation/animation_unittest.cc", | 650 "animation/animation_unittest.cc", |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 "//ui/gfx", | 782 "//ui/gfx", |
783 "//ui/gfx/geometry", | 783 "//ui/gfx/geometry", |
784 ] | 784 ] |
785 } | 785 } |
786 | 786 |
787 test("cc_perftests") { | 787 test("cc_perftests") { |
788 # TODO(GYP) | 788 # TODO(GYP) |
789 } | 789 } |
790 | 790 |
791 } # if false | 791 } # if false |
OLD | NEW |