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

Side by Side Diff: gyp/animator.gyp

Issue 1289483002: 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',
23 '../src/utils', 24 '../src/utils',
24 ], 25 ],
25 'sources': [ 26 'sources': [
26 '../src/animator/SkADrawable.cpp', 27 '../src/animator/SkADrawable.cpp',
27 '../src/animator/SkADrawable.h', 28 '../src/animator/SkADrawable.h',
28 '../include/animator/SkAnimator.h', 29 '../include/animator/SkAnimator.h',
29 '../include/animator/SkAnimatorView.h', 30 '../include/animator/SkAnimatorView.h',
30 31
31 '../src/animator/SkAnimate.h', 32 '../src/animator/SkAnimate.h',
32 '../src/animator/SkAnimateActive.cpp', 33 '../src/animator/SkAnimateActive.cpp',
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 '../src/animator/SkXMLAnimatorWriter.h', 181 '../src/animator/SkXMLAnimatorWriter.h',
181 ], 182 ],
182 'direct_dependent_settings': { 183 'direct_dependent_settings': {
183 'include_dirs': [ 184 'include_dirs': [
184 '../include/animator', 185 '../include/animator',
185 ], 186 ],
186 }, 187 },
187 }, 188 },
188 ], 189 ],
189 } 190 }
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