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

Side by Side Diff: gyp/utils.gyp

Issue 390453002: Add support for NEON intrinsics to speed up texture compression. We can (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix arm and neon compatibility Created 6 years, 5 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/opts.gyp ('k') | src/opts/SkTextureCompression_opts.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 utils. 1 # Gyp for utils.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'utils', 5 'target_name': 'utils',
6 'product_name': 'skia_utils', 6 'product_name': 'skia_utils',
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 'includes': [ 12 'includes': [
13 'utils.gypi', 13 'utils.gypi',
14 ], 14 ],
15 'include_dirs': [ 15 'include_dirs': [
16 '../include/effects', 16 '../include/effects',
17 '../include/images', 17 '../include/images',
18 '../include/pathops', 18 '../include/pathops',
19 '../include/pipe', 19 '../include/pipe',
20 '../include/utils', 20 '../include/utils',
21 '../include/utils/mac', 21 '../include/utils/mac',
22 '../include/utils/unix', 22 '../include/utils/unix',
23 '../include/utils/win', 23 '../include/utils/win',
24 '../include/xml', 24 '../include/xml',
25 '../src/core', 25 '../src/core',
26 '../src/opts',
26 '../src/utils', 27 '../src/utils',
27 ], 28 ],
28 'sources': [ 29 'sources': [
29 'utils.gypi', # Makes the gypi appear in IDEs (but does not modify the b uild). 30 'utils.gypi', # Makes the gypi appear in IDEs (but does not modify the b uild).
30 ], 31 ],
31 'sources!': [ 32 'sources!': [
32 '../src/utils/SDL/SkOSWindow_SDL.cpp', 33 '../src/utils/SDL/SkOSWindow_SDL.cpp',
33 ], 34 ],
34 'conditions': [ 35 'conditions': [
35 [ 'skia_os == "mac"', { 36 [ 'skia_os == "mac"', {
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ], 119 ],
119 'direct_dependent_settings': { 120 'direct_dependent_settings': {
120 'include_dirs': [ 121 'include_dirs': [
121 '../include/utils', 122 '../include/utils',
122 '../src/utils', 123 '../src/utils',
123 ], 124 ],
124 }, 125 },
125 }, 126 },
126 ], 127 ],
127 } 128 }
OLDNEW
« no previous file with comments | « gyp/opts.gyp ('k') | src/opts/SkTextureCompression_opts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698