Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 107 '../src/ports/SkPurgeableMemoryBlock_none.cpp', | 107 '../src/ports/SkPurgeableMemoryBlock_none.cpp', |
| 108 '../src/ports/SkFontHost_tables.cpp', | 108 '../src/ports/SkFontHost_tables.cpp', |
| 109 ], | 109 ], |
| 110 }], | 110 }], |
| 111 [ 'skia_os == "win"', { | 111 [ 'skia_os == "win"', { |
| 112 'include_dirs': [ | 112 'include_dirs': [ |
| 113 'config/win', | 113 'config/win', |
| 114 '../src/utils/win', | 114 '../src/utils/win', |
| 115 ], | 115 ], |
| 116 'conditions': [ | 116 'conditions': [ |
| 117 [ 'skia_directwrite', { | 117 [ 'not skia_directwrite', { |
|
bungeman-skia
2013/08/13 13:51:54
We don't build with pre-Vista headers anyway, I th
| |
| 118 'sources!': [ | |
| 119 '../src/ports/SkFontHost_win.cpp', | |
| 120 ], | |
| 121 }, { # else !skia_directwrite | |
| 122 'sources!': [ | 118 'sources!': [ |
| 123 '../src/ports/SkFontHost_win_dw.cpp', | 119 '../src/ports/SkFontHost_win_dw.cpp', |
| 124 ], | 120 ], |
| 125 }], | 121 }], |
| 126 ], | 122 ], |
| 127 'sources!': [ # these are used everywhere but windows | 123 'sources!': [ # these are used everywhere but windows |
| 128 '../src/ports/SkDebug_stdio.cpp', | 124 '../src/ports/SkDebug_stdio.cpp', |
| 129 '../src/ports/SkOSFile_posix.cpp', | 125 '../src/ports/SkOSFile_posix.cpp', |
| 130 '../src/ports/SkThread_pthread.cpp', | 126 '../src/ports/SkThread_pthread.cpp', |
| 131 '../src/ports/SkTime_Unix.cpp', | 127 '../src/ports/SkTime_Unix.cpp', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 166 }, | 162 }, |
| 167 }, | 163 }, |
| 168 ], | 164 ], |
| 169 } | 165 } |
| 170 | 166 |
| 171 # Local Variables: | 167 # Local Variables: |
| 172 # tab-width:2 | 168 # tab-width:2 |
| 173 # indent-tabs-mode:nil | 169 # indent-tabs-mode:nil |
| 174 # End: | 170 # End: |
| 175 # vim: set expandtab tabstop=2 shiftwidth=2: | 171 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |