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

Side by Side Diff: gyp/iconv.gyp

Issue 23301009: Add libpoppler for PDF rendering, take 2 (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fix freetype.gyp file - accidentally nuked the override include Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gyp/gm.gyp ('k') | gyp/poppler.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # GYP for iconv
2 #
3 # NOTE: WINDOWS BUILD ONLY.
4 # iconv should be native to Mac and Linux.
5 #
6 # Based on instructions found on http://www.codeproject.com/Articles/302012/How- to-Build-libiconv-with-Microsoft-Visual-Studio
7 # See the relevant README.chromium file for more information.
8
9 {
10 'variables': {
11 'skia_warnings_as_errors': 0,
12 },
13 'targets': [
14 {
15 'target_name': 'iconv',
16 'type': 'static_library',
17 'include_dirs' : [
18 '../third_party/externals/iconv/lib',
19 '../third_party/iconv/config',
20 ],
21 'sources': [
22 '../third_party/externals/iconv/lib/iconv.c',
23 '../third_party/externals/iconv/libcharset/lib/localcharset.c',
24 ],
25
26 'conditions': [
27 ['skia_os == "win"', {
28 'include_dirs': [
29 '../third_party/iconv/config/windows',
30 ],
31 'direct_dependent_settings': {
32 'include_dirs': [
33 '../third_party/iconv/config/windows',
34 ],
35 },
36 'defines': [
37 'LIBDIR',
38 ],
39 }],
40 ],
41 },
42 ],
43 }
44
OLDNEW
« no previous file with comments | « gyp/gm.gyp ('k') | gyp/poppler.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698