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

Side by Side Diff: gyp/animator.gyp

Issue 1290733002: Revert[3] "move some public headers into private" (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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 | gyp/core.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 #Animator is basically Skia's (much saner) version of Flash. 5 #Animator is basically Skia's (much saner) version of Flash.
6 #On top of Views it provides a declarative UI model which can be updated 6 #On top of Views it provides a declarative UI model which can be updated
7 #based on events which trigger changes or scripts. 7 #based on events which trigger changes or scripts.
8 8
9 { 9 {
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'animator', 12 'target_name': 'animator',
13 'product_name': 'skia_animator', 13 'product_name': 'skia_animator',
14 'type': 'static_library', 14 'type': 'static_library',
15 'standalone_static_library': 1, 15 'standalone_static_library': 1,
16 'dependencies': [ 16 'dependencies': [
17 'skia_lib.gyp:skia_lib', 17 'skia_lib.gyp:skia_lib',
18 'views.gyp:*', 18 'views.gyp:*',
19 'xml.gyp:*', 19 'xml.gyp:*',
20 ], 20 ],
21 'include_dirs': [ 21 'include_dirs': [
22 '../include/animator', 22 '../include/animator',
23 '../include/private',
24 '../src/utils', 23 '../src/utils',
25 ], 24 ],
26 'sources': [ 25 'sources': [
27 '../src/animator/SkADrawable.cpp', 26 '../src/animator/SkADrawable.cpp',
28 '../src/animator/SkADrawable.h', 27 '../src/animator/SkADrawable.h',
29 '../include/animator/SkAnimator.h', 28 '../include/animator/SkAnimator.h',
30 '../include/animator/SkAnimatorView.h', 29 '../include/animator/SkAnimatorView.h',
31 30
32 '../src/animator/SkAnimate.h', 31 '../src/animator/SkAnimate.h',
33 '../src/animator/SkAnimateActive.cpp', 32 '../src/animator/SkAnimateActive.cpp',
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 '../src/animator/SkXMLAnimatorWriter.h', 180 '../src/animator/SkXMLAnimatorWriter.h',
182 ], 181 ],
183 'direct_dependent_settings': { 182 'direct_dependent_settings': {
184 'include_dirs': [ 183 'include_dirs': [
185 '../include/animator', 184 '../include/animator',
186 ], 185 ],
187 }, 186 },
188 }, 187 },
189 ], 188 ],
190 } 189 }
OLDNEW
« no previous file with comments | « no previous file | gyp/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698