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 |
11 'includes': [ | 11 'includes': [ |
12 'core.gypi', | 12 'core.gypi', |
13 ], | 13 ], |
14 | 14 |
15 'include_dirs': [ | 15 'include_dirs': [ |
16 '../include/config', | 16 '../include/config', |
17 '../include/core', | 17 '../include/core', |
18 '../include/pathops', | 18 '../include/pathops', |
19 '../include/pipe', | 19 '../include/pipe', |
20 '../include/ports', | 20 '../include/ports', |
21 '../include/utils', | 21 '../include/utils', |
22 '../include/xml', | 22 '../include/xml', |
23 '../src/core', | 23 '../src/core', |
| 24 '../src/sfnt', |
24 '../src/image', | 25 '../src/image', |
25 '../src/opts', | 26 '../src/opts', |
26 '../src/utils', | 27 '../src/utils', |
27 ], | 28 ], |
28 'sources': [ | 29 'sources': [ |
29 '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). |
30 ], | 31 ], |
31 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], | 32 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], |
32 'conditions': [ | 33 'conditions': [ |
33 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { | 34 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 [ 'skia_os == "win"', { | 117 [ 'skia_os == "win"', { |
117 'include_dirs': [ | 118 'include_dirs': [ |
118 'config/win', | 119 'config/win', |
119 ], | 120 ], |
120 }], | 121 }], |
121 ], | 122 ], |
122 }, | 123 }, |
123 }, | 124 }, |
124 ], | 125 ], |
125 } | 126 } |
OLD | NEW |