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

Side by Side Diff: gyp/core.gyp

Issue 353823005: Focus disabled optimizations on just BGRAConvolve2D, and only 32-bit. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix clang? 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 | « no previous file | src/core/SkConvolver.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Core Skia library code. 1 # Core Skia library code.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'core', 5 'target_name': 'core',
6 'product_name': 'skia_core', 6 'product_name': 'skia_core',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76',
10 10
(...skipping 13 matching lines...) Expand all
24 '../src/sfnt', 24 '../src/sfnt',
25 '../src/image', 25 '../src/image',
26 '../src/opts', 26 '../src/opts',
27 '../src/utils', 27 '../src/utils',
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild). 30 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild).
31 ], 31 ],
32 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], 32 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800],
33 'conditions': [ 33 'conditions': [
34 [ 'skia_arch_type == "x86"', {
35 # GCC autovectorization makes some GMs flaky on 32-bit release builds.
36 # skbug.com/2575. This bug is likely somewhere here in src/core.
37 'cflags': [ '-fno-tree-vectorize' ]
38 }],
39 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 34 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
40 'link_settings': { 35 'link_settings': {
41 'libraries': [ 36 'libraries': [
42 '-lpthread', 37 '-lpthread',
43 ], 38 ],
44 }, 39 },
45 }], 40 }],
46 [ 'skia_os == "mac"', { 41 [ 'skia_os == "mac"', {
47 'include_dirs': [ 42 'include_dirs': [
48 '../include/utils/mac', 43 '../include/utils/mac',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 [ 'skia_os == "win"', { 117 [ 'skia_os == "win"', {
123 'include_dirs': [ 118 'include_dirs': [
124 'config/win', 119 'config/win',
125 ], 120 ],
126 }], 121 }],
127 ], 122 ],
128 }, 123 },
129 }, 124 },
130 ], 125 ],
131 } 126 }
OLDNEW
« no previous file with comments | « no previous file | src/core/SkConvolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698