| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 "//gpu/command_buffer/common:gles2_utils", | 800 "//gpu/command_buffer/common:gles2_utils", |
| 800 "//media", | 801 "//media", |
| 801 "//skia", | 802 "//skia", |
| 802 "//testing/gmock", | 803 "//testing/gmock", |
| 803 "//testing/gtest", | 804 "//testing/gtest", |
| 804 "//testing/perf", | 805 "//testing/perf", |
| 805 "//ui/gfx", | 806 "//ui/gfx", |
| 806 "//ui/gfx/geometry", | 807 "//ui/gfx/geometry", |
| 807 ] | 808 ] |
| 808 } | 809 } |
| OLD | NEW |