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

Side by Side Diff: gyp/gpu.gyp

Issue 178543007: Add new module for distance field generation. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix warning Created 6 years, 9 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 | « gyp/edtaa.gyp ('k') | src/core/SkDistanceFieldGen.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP for building gpu 1 # GYP for building gpu
2 { 2 {
3 'target_defaults': { 3 'target_defaults': {
4 'conditions': [ 4 'conditions': [
5 ['skia_os != "win"', { 5 ['skia_os != "win"', {
6 'sources/': [ ['exclude', '_win.(h|cpp)$'], 6 'sources/': [ ['exclude', '_win.(h|cpp)$'],
7 ], 7 ],
8 }], 8 }],
9 ['skia_os != "mac"', { 9 ['skia_os != "mac"', {
10 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], 10 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'],
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 }, 76 },
77 }, 77 },
78 'targets': [ 78 'targets': [
79 { 79 {
80 'target_name': 'skgpu', 80 'target_name': 'skgpu',
81 'product_name': 'skia_skgpu', 81 'product_name': 'skia_skgpu',
82 'type': 'static_library', 82 'type': 'static_library',
83 'standalone_static_library': 1, 83 'standalone_static_library': 1,
84 'dependencies': [ 84 'dependencies': [
85 'core.gyp:*', 85 'core.gyp:*',
86 'edtaa.gyp:*',
87 'utils.gyp:*', 86 'utils.gyp:*',
88 ], 87 ],
89 'includes': [ 88 'includes': [
90 'gpu.gypi', 89 'gpu.gypi',
91 ], 90 ],
92 'include_dirs': [ 91 'include_dirs': [
93 '../include/gpu', 92 '../include/gpu',
94 '../src/core', 93 '../src/core',
95 '../src/gpu', 94 '../src/gpu',
96 ], 95 ],
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'libraries': [ 225 'libraries': [
227 '-lGLESv2', 226 '-lGLESv2',
228 '-lEGL', 227 '-lEGL',
229 ], 228 ],
230 }, 229 },
231 }], 230 }],
232 ], 231 ],
233 }, 232 },
234 ], 233 ],
235 } 234 }
OLDNEW
« no previous file with comments | « gyp/edtaa.gyp ('k') | src/core/SkDistanceFieldGen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698