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

Side by Side Diff: gyp/ports.gyp

Issue 862983002: Move sync code to include/, switch from using platform define to a proxy header in core/ (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp Created 5 years, 11 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 | « no previous file | gyp/tools.gyp » ('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:*',
11 ], 11 ],
12 'include_dirs': [ 12 'include_dirs': [
13 '../include/effects', 13 '../include/effects',
14 '../include/images', 14 '../include/images',
15 '../include/ports', 15 '../include/ports',
16 '../include/utils', 16 '../include/utils',
17 '../include/utils/win', 17 '../include/utils/win',
18 '../src/core', 18 '../src/core',
19 '../src/lazy', 19 '../src/lazy',
20 '../src/ports', 20 '../src/ports',
21 '../src/sfnt', 21 '../src/sfnt',
22 '../src/utils', 22 '../src/utils',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 '../src/ports/SkAtomics_sync.h',
26 '../src/ports/SkAtomics_win.h',
27 '../src/ports/SkMutex_pthread.h',
28 '../src/ports/SkMutex_win.h',
29 '../src/ports/SkDebug_nacl.cpp', 25 '../src/ports/SkDebug_nacl.cpp',
30 '../src/ports/SkDebug_stdio.cpp', 26 '../src/ports/SkDebug_stdio.cpp',
31 '../src/ports/SkDebug_win.cpp', 27 '../src/ports/SkDebug_win.cpp',
32 28
33 '../src/fonts/SkFontMgr_indirect.cpp', 29 '../src/fonts/SkFontMgr_indirect.cpp',
34 '../src/fonts/SkRemotableFontMgr.cpp', 30 '../src/fonts/SkRemotableFontMgr.cpp',
35 '../src/ports/SkFontHost_win.cpp', 31 '../src/ports/SkFontHost_win.cpp',
36 '../src/ports/SkFontMgr_default_gdi.cpp', 32 '../src/ports/SkFontMgr_default_gdi.cpp',
37 '../src/ports/SkFontMgr_default_dw.cpp', 33 '../src/ports/SkFontMgr_default_dw.cpp',
38 '../src/ports/SkFontMgr_win_dw.cpp', 34 '../src/ports/SkFontMgr_win_dw.cpp',
39 '../src/ports/SkRemotableFontMgr_win_dw.cpp', 35 '../src/ports/SkRemotableFontMgr_win_dw.cpp',
40 '../src/ports/SkScalerContext_win_dw.cpp', 36 '../src/ports/SkScalerContext_win_dw.cpp',
41 '../src/ports/SkScalerContext_win_dw.h', 37 '../src/ports/SkScalerContext_win_dw.h',
42 '../src/ports/SkTypeface_win_dw.cpp', 38 '../src/ports/SkTypeface_win_dw.cpp',
43 '../src/ports/SkTypeface_win_dw.h', 39 '../src/ports/SkTypeface_win_dw.h',
44 40
45 '../src/ports/SkGlobalInitialization_default.cpp', 41 '../src/ports/SkGlobalInitialization_default.cpp',
46 '../src/ports/SkMemory_malloc.cpp', 42 '../src/ports/SkMemory_malloc.cpp',
47 '../src/ports/SkMutex_pthread.h',
48 '../src/ports/SkMutex_win.h',
49 '../src/ports/SkOSFile_posix.cpp', 43 '../src/ports/SkOSFile_posix.cpp',
50 '../src/ports/SkOSFile_stdio.cpp', 44 '../src/ports/SkOSFile_stdio.cpp',
51 '../src/ports/SkOSFile_win.cpp', 45 '../src/ports/SkOSFile_win.cpp',
52 '../src/ports/SkDiscardableMemory_none.cpp', 46 '../src/ports/SkDiscardableMemory_none.cpp',
53 '../src/ports/SkTime_Unix.cpp', 47 '../src/ports/SkTime_Unix.cpp',
54 '../src/ports/SkTime_win.cpp', 48 '../src/ports/SkTime_win.cpp',
55 '../src/ports/SkTLS_pthread.cpp', 49 '../src/ports/SkTLS_pthread.cpp',
56 '../src/ports/SkTLS_win.cpp', 50 '../src/ports/SkTLS_win.cpp',
57 51
58 '../include/ports/SkFontConfigInterface.h', 52 '../include/ports/SkFontConfigInterface.h',
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 }], 182 }],
189 ], 183 ],
190 'direct_dependent_settings': { 184 'direct_dependent_settings': {
191 'include_dirs': [ 185 'include_dirs': [
192 '../include/ports', 186 '../include/ports',
193 ], 187 ],
194 }, 188 },
195 }, 189 },
196 ], 190 ],
197 } 191 }
OLDNEW
« no previous file with comments | « no previous file | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698