Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: ui/gfx/animation/BUILD.gn

Issue 2976873003: Added a nested class to gfx::Animation (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/gfx/animation/animation.h » ('j') | ui/gfx/animation/animation.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
11 11
12 component("animation") { 12 component("animation") {
13 sources = [ 13 sources = [
14 "animation.cc", 14 "animation.cc",
15 "animation.h", 15 "animation.h",
16 "animation_container.cc", 16 "animation_container.cc",
17 "animation_container.h", 17 "animation_container.h",
18 "animation_container_element.h", 18 "animation_container_element.h",
19 "animation_container_observer.h", 19 "animation_container_observer.h",
20 "animation_delegate.h", 20 "animation_delegate.h",
21 "animation_export.h", 21 "animation_export.h",
22 "animation_mac.mm", 22 "animation_mac.mm",
23 "animation_test_api.cc",
23 "animation_win.cc", 24 "animation_win.cc",
25 "animations_test_api.h",
sky 2017/07/12 19:16:19 You have a misspelling here. Also, the test files
sky 2017/07/12 22:42:36 Put them in ui/gfx:test_support.
newcomer 2017/07/13 21:19:28 Done.
newcomer 2017/07/13 21:19:28 Acknowledged.
24 "linear_animation.cc", 26 "linear_animation.cc",
25 "linear_animation.h", 27 "linear_animation.h",
26 "multi_animation.cc", 28 "multi_animation.cc",
27 "multi_animation.h", 29 "multi_animation.h",
28 "slide_animation.cc", 30 "slide_animation.cc",
29 "slide_animation.h", 31 "slide_animation.h",
30 "throb_animation.cc", 32 "throb_animation.cc",
31 "throb_animation.h", 33 "throb_animation.h",
32 "tween.cc", 34 "tween.cc",
33 "tween.h", 35 "tween.h",
(...skipping 20 matching lines...) Expand all
54 56
55 deps = [ 57 deps = [
56 "//base", 58 "//base",
57 "//skia", 59 "//skia",
58 "//ui/gfx:geometry_skia", 60 "//ui/gfx:geometry_skia",
59 "//ui/gfx:gfx_export", 61 "//ui/gfx:gfx_export",
60 "//ui/gfx/geometry", 62 "//ui/gfx/geometry",
61 ] 63 ]
62 defines = [ "ANIMATION_IMPLEMENTATION" ] 64 defines = [ "ANIMATION_IMPLEMENTATION" ]
63 } 65 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/animation/animation.h » ('j') | ui/gfx/animation/animation.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698