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

Side by Side Diff: gyp/ports.gyp

Issue 23137018: Minimal changes to make SampleAnimator do something useful. Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: 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 | « no previous file | resources/news.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Port-specific Skia library code. 1 # Port-specific Skia library code.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'ports', 5 'target_name': 'ports',
6 'product_name': 'skia_ports', 6 'product_name': 'skia_ports',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'core.gyp:*', 10 'core.gyp:*',
(...skipping 26 matching lines...) Expand all
37 '../src/ports/SkOSFile_posix.cpp', 37 '../src/ports/SkOSFile_posix.cpp',
38 '../src/ports/SkOSFile_stdio.cpp', 38 '../src/ports/SkOSFile_stdio.cpp',
39 '../src/ports/SkOSFile_win.cpp', 39 '../src/ports/SkOSFile_win.cpp',
40 '../src/ports/SkDiscardableMemory_none.cpp', 40 '../src/ports/SkDiscardableMemory_none.cpp',
41 '../src/ports/SkPurgeableMemoryBlock_none.cpp', 41 '../src/ports/SkPurgeableMemoryBlock_none.cpp',
42 #'../src/ports/SkThread_none.cpp', 42 #'../src/ports/SkThread_none.cpp',
43 '../src/ports/SkThread_pthread.cpp', 43 '../src/ports/SkThread_pthread.cpp',
44 '../src/ports/SkThread_win.cpp', 44 '../src/ports/SkThread_win.cpp',
45 '../src/ports/SkTime_Unix.cpp', 45 '../src/ports/SkTime_Unix.cpp',
46 '../src/ports/SkTime_win.cpp', 46 '../src/ports/SkTime_win.cpp',
47 '../src/ports/SkXMLParser_expat.cpp',
47 #'../src/ports/SkTLS_none.cpp', 48 #'../src/ports/SkTLS_none.cpp',
48 '../src/ports/SkTLS_pthread.cpp', 49 '../src/ports/SkTLS_pthread.cpp',
49 '../src/ports/SkTLS_win.cpp', 50 '../src/ports/SkTLS_win.cpp',
50 '../src/ports/SkXMLParser_empty.cpp', 51 '../src/ports/SkXMLParser_empty.cpp',
51 ], 52 ],
52 'conditions': [ 53 'conditions': [
53 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "na cl", "android"]', { 54 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "na cl", "android"]', {
54 'sources': [ 55 'sources': [
55 '../src/ports/SkFontHost_FreeType.cpp', 56 '../src/ports/SkFontHost_FreeType.cpp',
56 '../src/ports/SkFontHost_FreeType_common.cpp', 57 '../src/ports/SkFontHost_FreeType_common.cpp',
57 ], 58 ],
58 'dependencies': [ 59 'dependencies': [
59 'freetype.gyp:freetype', 60 'freetype.gyp:freetype',
60 ], 61 ],
61 }], 62 }],
62 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 63 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
63 'link_settings': { 64 'link_settings': {
64 'libraries': [ 65 'libraries': [
65 '-lfontconfig', 66 '-lfontconfig',
66 '-ldl', 67 '-ldl',
68 '-lexpat',
67 ], 69 ],
68 }, 70 },
69 'sources': [ 71 'sources': [
70 '../src/fonts/SkFontMgr_fontconfig.cpp', 72 '../src/fonts/SkFontMgr_fontconfig.cpp',
71 '../src/ports/SkFontHost_fontconfig.cpp', 73 '../src/ports/SkFontHost_fontconfig.cpp',
72 '../src/ports/SkFontConfigInterface_direct.cpp', 74 '../src/ports/SkFontConfigInterface_direct.cpp',
73 ], 75 ],
74 }], 76 }],
75 [ 'skia_os == "nacl"', { 77 [ 'skia_os == "nacl"', {
76 'sources': [ 78 'sources': [
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 }, 176 },
175 }, 177 },
176 ], 178 ],
177 } 179 }
178 180
179 # Local Variables: 181 # Local Variables:
180 # tab-width:2 182 # tab-width:2
181 # indent-tabs-mode:nil 183 # indent-tabs-mode:nil
182 # End: 184 # End:
183 # vim: set expandtab tabstop=2 shiftwidth=2: 185 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | resources/news.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698