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 }], | |
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 Loading... |
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 } |
OLD | NEW |