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

Side by Side Diff: gyp/effects.gyp

Issue 17113004: Replace SkPicture(SkStream) constructors with a factory. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Remove dead function declaration. Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Gyp file for effects
1 { 2 {
2 'targets': [ 3 'targets': [
3 { 4 {
4 'target_name': 'effects', 5 'target_name': 'effects',
5 'product_name': 'skia_effects', 6 'product_name': 'skia_effects',
6 'type': 'static_library', 7 'type': 'static_library',
7 'standalone_static_library': 1, 8 'standalone_static_library': 1,
8 'includes': [ 9 'includes': [
9 'effects.gypi', 10 'effects.gypi',
10 ], 11 ],
11 'include_dirs': [ 12 'include_dirs': [
12 '../include/config', 13 '../include/config',
13 '../include/core', 14 '../include/core',
14 '../include/effects', 15 '../include/effects',
16 '../include/lazy',
15 '../include/utils', 17 '../include/utils',
16 '../src/core', 18 '../src/core',
17 ], 19 ],
18 'direct_dependent_settings': { 20 'direct_dependent_settings': {
19 'include_dirs': [ 21 'include_dirs': [
20 '../include/effects', 22 '../include/effects',
21 ], 23 ],
22 }, 24 },
23 'sources': [ 25 'sources': [
24 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build). 26 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
25 ], 27 ],
26 'conditions': [ 28 'conditions': [
27 ['skia_gpu == 1', { 29 ['skia_gpu == 1', {
28 'include_dirs': [ 30 'include_dirs': [
29 '../include/gpu', 31 '../include/gpu',
30 '../src/gpu', 32 '../src/gpu',
31 ], 33 ],
32 }], 34 }],
33 ], 35 ],
34 }, 36 },
35 ], 37 ],
36 } 38 }
37 39
38 # Local Variables: 40 # Local Variables:
39 # tab-width:2 41 # tab-width:2
40 # indent-tabs-mode:nil 42 # indent-tabs-mode:nil
41 # End: 43 # End:
42 # vim: set expandtab tabstop=2 shiftwidth=2: 44 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698