OLD | NEW |
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 Loading... |
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 }], |
34 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { | 39 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
35 'link_settings': { | 40 'link_settings': { |
36 'libraries': [ | 41 'libraries': [ |
37 '-lpthread', | 42 '-lpthread', |
38 ], | 43 ], |
39 }, | 44 }, |
40 }], | 45 }], |
41 [ 'skia_os == "mac"', { | 46 [ 'skia_os == "mac"', { |
42 'include_dirs': [ | 47 'include_dirs': [ |
43 '../include/utils/mac', | 48 '../include/utils/mac', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 [ 'skia_os == "win"', { | 122 [ 'skia_os == "win"', { |
118 'include_dirs': [ | 123 'include_dirs': [ |
119 'config/win', | 124 'config/win', |
120 ], | 125 ], |
121 }], | 126 }], |
122 ], | 127 ], |
123 }, | 128 }, |
124 }, | 129 }, |
125 ], | 130 ], |
126 } | 131 } |
OLD | NEW |