OLD | NEW |
---|---|
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//cc/cc.gni") | 5 import("//cc/cc.gni") |
6 | 6 |
7 cc_component("animation") { | 7 cc_component("animation") { |
8 output_name = "cc_animation" | 8 output_name = "cc_animation" |
9 sources = [ | 9 sources = [ |
10 "animation.cc", | 10 "animation.cc", |
(...skipping 28 matching lines...) Expand all Loading... | |
39 "transform_operation.h", | 39 "transform_operation.h", |
40 "transform_operations.cc", | 40 "transform_operations.cc", |
41 "transform_operations.h", | 41 "transform_operations.h", |
42 ] | 42 ] |
43 | 43 |
44 defines = [ "CC_ANIMATION_IMPLEMENTATION=1" ] | 44 defines = [ "CC_ANIMATION_IMPLEMENTATION=1" ] |
45 | 45 |
46 deps = [ | 46 deps = [ |
47 "//base", | 47 "//base", |
48 "//cc", | 48 "//cc", |
49 "//cc/base", | |
danakj
2017/03/16 17:14:06
base is a public dep of //cc so not needed here ri
chrishtr
2017/03/16 17:43:23
Indeed! Removed.
| |
49 "//ui/gfx", | 50 "//ui/gfx", |
50 "//ui/gfx/geometry", | 51 "//ui/gfx/geometry", |
51 ] | 52 ] |
52 } | 53 } |
OLD | NEW |