| 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 11 matching lines...) Expand all Loading... |
| 22 '../include/xml', | 22 '../include/xml', |
| 23 '../src/core', | 23 '../src/core', |
| 24 '../src/image', | 24 '../src/image', |
| 25 ], | 25 ], |
| 26 'sources': [ | 26 'sources': [ |
| 27 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). | 27 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). |
| 28 ], | 28 ], |
| 29 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], | 29 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], |
| 30 'conditions': [ | 30 'conditions': [ |
| 31 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { | 31 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { |
| 32 'cflags': [ | |
| 33 '-Wno-unused', | |
| 34 '-Wno-unused-function', | |
| 35 ], | |
| 36 'link_settings': { | 32 'link_settings': { |
| 37 'libraries': [ | 33 'libraries': [ |
| 38 '-lpthread', | 34 '-lpthread', |
| 39 ], | 35 ], |
| 40 }, | 36 }, |
| 41 }], | 37 }], |
| 42 [ 'skia_os == "mac"', { | 38 [ 'skia_os == "mac"', { |
| 43 'include_dirs': [ | 39 'include_dirs': [ |
| 44 '../include/utils/mac', | 40 '../include/utils/mac', |
| 45 '../third_party/freetype/include/**', | 41 '../third_party/freetype/include/**', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 ], | 131 ], |
| 136 }, | 132 }, |
| 137 ], | 133 ], |
| 138 } | 134 } |
| 139 | 135 |
| 140 # Local Variables: | 136 # Local Variables: |
| 141 # tab-width:2 | 137 # tab-width:2 |
| 142 # indent-tabs-mode:nil | 138 # indent-tabs-mode:nil |
| 143 # End: | 139 # End: |
| 144 # vim: set expandtab tabstop=2 shiftwidth=2: | 140 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |