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

Side by Side Diff: gyp/ports.gyp

Issue 16099011: GYP changes and scripts for compiling Skia for ChromeOS (Closed) Base URL: http://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 # 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 'include_dirs': [ 9 'include_dirs': [
10 '../include/config', 10 '../include/config',
(...skipping 21 matching lines...) Expand all
32 32
33 '../src/ports/SkMemory_malloc.cpp', 33 '../src/ports/SkMemory_malloc.cpp',
34 '../src/ports/SkOSFile_posix.cpp', 34 '../src/ports/SkOSFile_posix.cpp',
35 '../src/ports/SkOSFile_stdio.cpp', 35 '../src/ports/SkOSFile_stdio.cpp',
36 '../src/ports/SkOSFile_win.cpp', 36 '../src/ports/SkOSFile_win.cpp',
37 '../src/ports/SkTime_Unix.cpp', 37 '../src/ports/SkTime_Unix.cpp',
38 '../src/ports/SkTime_win.cpp', 38 '../src/ports/SkTime_win.cpp',
39 '../src/ports/SkXMLParser_empty.cpp', 39 '../src/ports/SkXMLParser_empty.cpp',
40 ], 40 ],
41 'conditions': [ 41 'conditions': [
42 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 42 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
43 'defines': [ 43 'defines': [
44 #The font host requires at least FreeType 2.3.0 at runtime. 44 #The font host requires at least FreeType 2.3.0 at runtime.
45 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020300',\ 45 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020300',\
46 'SK_CAN_USE_DLOPEN=1', 46 'SK_CAN_USE_DLOPEN=1',
47 ], 47 ],
48 'link_settings': { 48 'link_settings': {
49 'libraries': [ 49 'libraries': [
50 '-lfreetype', 50 '-lfreetype',
51 '-lfontconfig', 51 '-lfontconfig',
52 '-ldl', 52 '-ldl',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 }, 188 },
189 }, 189 },
190 ], 190 ],
191 } 191 }
192 192
193 # Local Variables: 193 # Local Variables:
194 # tab-width:2 194 # tab-width:2
195 # indent-tabs-mode:nil 195 # indent-tabs-mode:nil
196 # End: 196 # End:
197 # vim: set expandtab tabstop=2 shiftwidth=2: 197 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698