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

Side by Side Diff: gyp/pdf.gyp

Issue 16099014: enable shared lib support in linux for lua (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: 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
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'pdf', 4 'target_name': 'pdf',
5 'product_name': 'skia_pdf', 5 'product_name': 'skia_pdf',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'dependencies': [ 8 'dependencies': [
9 'skia_lib.gyp:skia_lib',
djsollen 2013/06/12 17:35:46 why did we need to remove this?
Zach Reizner 2013/06/12 17:42:40 I have it so pdf.gyp:pdf is included in skia_lib.g
bungeman-skia 2013/06/12 19:16:55 But you're only doing so if skia_lua is set? I don
10 'zlib.gyp:zlib', 9 'zlib.gyp:zlib',
11 ], 10 ],
12 'include_dirs': [ 11 'include_dirs': [
13 '../include/config', 12 '../include/config',
14 '../include/core', 13 '../include/core',
15 '../include/images', 14 '../include/images',
16 '../include/pdf', 15 '../include/pdf',
17 '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h 16 '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h
18 '../src/utils', # needed to get SkBitSet.h 17 '../src/utils', # needed to get SkBitSet.h
19 ], 18 ],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 }, 61 },
63 }, 62 },
64 ], 63 ],
65 } 64 }
66 65
67 # Local Variables: 66 # Local Variables:
68 # tab-width:2 67 # tab-width:2
69 # indent-tabs-mode:nil 68 # indent-tabs-mode:nil
70 # End: 69 # End:
71 # vim: set expandtab tabstop=2 shiftwidth=2: 70 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698