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

Side by Side Diff: gyp/effects.gyp

Issue 15855006: prepare skia for shared library build on android (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebasing Created 7 years, 6 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
« no previous file with comments | « gyp/debugger.gyp ('k') | gyp/flags.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'effects', 4 'target_name': 'effects',
5 'product_name': 'skia_effects', 5 'product_name': 'skia_effects',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'includes': [ 8 'includes': [
9 'effects.gypi', 9 'effects.gypi',
10 ], 10 ],
11 'include_dirs': [ 11 'include_dirs': [
12 '../include/config',
13 '../include/core',
12 '../include/effects', 14 '../include/effects',
15 '../include/utils',
13 '../src/core', 16 '../src/core',
14 ], 17 ],
15 'direct_dependent_settings': { 18 'direct_dependent_settings': {
16 'include_dirs': [ 19 'include_dirs': [
17 '../include/effects', 20 '../include/effects',
18 ], 21 ],
19 }, 22 },
20 'dependencies': [
21 'skia_base_libs.gyp:skia_base_libs',
22 ],
23 'sources': [ 23 'sources': [
24 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build). 24 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
25 ], 25 ],
26 'conditions': [ 26 'conditions': [
27 ['skia_gpu == 1', { 27 ['skia_gpu == 1', {
28 'include_dirs': [ 28 'include_dirs': [
29 '../include/gpu',
29 '../src/gpu', 30 '../src/gpu',
30 ], 31 ],
31 }], 32 }],
32 ], 33 ],
33 }, 34 },
34 ], 35 ],
35 } 36 }
36 37
37 # Local Variables: 38 # Local Variables:
38 # tab-width:2 39 # tab-width:2
39 # indent-tabs-mode:nil 40 # indent-tabs-mode:nil
40 # End: 41 # End:
41 # vim: set expandtab tabstop=2 shiftwidth=2: 42 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/debugger.gyp ('k') | gyp/flags.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698