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

Side by Side Diff: gyp/zlib.gyp

Issue 153093003: Gyp file changes for the android framework. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 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 | « gyp/pdf.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Target for including zlib.
2 { 1 {
3 'targets': [ 2 'targets': [
4 { 3 {
5 'target_name': 'zlib', 4 'target_name': 'zlib',
6 'type': 'static_library', 5 'type': 'static_library',
7 'dependencies': [ 6 'dependencies': [
8 'skia_lib.gyp:skia_lib', 7 'skia_lib.gyp:skia_lib',
9 ], 8 ],
10 'sources': [ 9 'sources': [
11 '../include/core/SkFlate.h', 10 '../include/core/SkFlate.h',
(...skipping 12 matching lines...) Expand all
24 [ 'skia_os == "ios"', { 23 [ 'skia_os == "ios"', {
25 'link_settings': { 24 'link_settings': {
26 'libraries': [ 25 'libraries': [
27 '$(SDKROOT)/usr/lib/libz.dylib', 26 '$(SDKROOT)/usr/lib/libz.dylib',
28 ], 27 ],
29 }, 28 },
30 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ], 29 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ],
31 }], 30 }],
32 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android", "nac l"]', { 31 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android", "nac l"]', {
33 'link_settings': { 'libraries': [ '-lz', ], }, 32 'link_settings': { 'libraries': [ '-lz', ], },
34 'conditions': [ 33 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ],
35 [ 'skia_android_framework==0', {
36 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ],
37 }],
38 ],
39 }],
40 [ 'skia_android_framework', {
41 'include_dirs': [
42 'external/zlib',
43 ],
44 }], 34 }],
45 ], 35 ],
46 }, 36 },
47 ], 37 ],
48 } 38 }
OLDNEW
« no previous file with comments | « gyp/pdf.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698