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

Side by Side Diff: gyp/ports.gyp

Issue 1359733002: Make mutex semaphore based. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix mutex leak Created 5 years, 3 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 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Port-specific Skia library code. 5 # Port-specific Skia library code.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'ports', 9 'target_name': 'ports',
10 'product_name': 'skia_ports', 10 'product_name': 'skia_ports',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 '../include/ports/SkAtomics_atomic.h', 60 '../include/ports/SkAtomics_atomic.h',
61 '../include/ports/SkAtomics_std.h', 61 '../include/ports/SkAtomics_std.h',
62 '../include/ports/SkAtomics_sync.h', 62 '../include/ports/SkAtomics_sync.h',
63 '../include/ports/SkFontConfigInterface.h', 63 '../include/ports/SkFontConfigInterface.h',
64 '../include/ports/SkFontMgr.h', 64 '../include/ports/SkFontMgr.h',
65 '../include/ports/SkFontMgr_android.h', 65 '../include/ports/SkFontMgr_android.h',
66 '../include/ports/SkFontMgr_custom.h', 66 '../include/ports/SkFontMgr_custom.h',
67 '../include/ports/SkFontMgr_fontconfig.h', 67 '../include/ports/SkFontMgr_fontconfig.h',
68 '../include/ports/SkFontMgr_indirect.h', 68 '../include/ports/SkFontMgr_indirect.h',
69 '../include/ports/SkMutex_pthread.h',
70 '../include/ports/SkMutex_win.h',
71 '../include/ports/SkRemotableFontMgr.h', 69 '../include/ports/SkRemotableFontMgr.h',
72 ], 70 ],
73 'sources/': [ 71 'sources/': [
74 ['exclude', 'SkFontMgr_.+_factory\\.cpp$'], 72 ['exclude', 'SkFontMgr_.+_factory\\.cpp$'],
75 ], 73 ],
76 'conditions': [ 74 'conditions': [
77 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an droid"]', { 75 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an droid"]', {
78 'sources': [ 76 'sources': [
79 '../src/ports/SkFontHost_FreeType.cpp', 77 '../src/ports/SkFontHost_FreeType.cpp',
80 '../src/ports/SkFontHost_FreeType_common.cpp', 78 '../src/ports/SkFontHost_FreeType_common.cpp',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 }], 207 }],
210 ], 208 ],
211 'direct_dependent_settings': { 209 'direct_dependent_settings': {
212 'include_dirs': [ 210 'include_dirs': [
213 '../include/ports', 211 '../include/ports',
214 ], 212 ],
215 }, 213 },
216 }, 214 },
217 ], 215 ],
218 } 216 }
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