| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # Core Skia library code. | 5 # Core Skia library code. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'core', | 9 'target_name': 'core', |
| 10 'product_name': 'skia_core', | 10 'product_name': 'skia_core', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 '../src/sfnt', | 29 '../src/sfnt', |
| 30 '../src/image', | 30 '../src/image', |
| 31 '../src/opts', | 31 '../src/opts', |
| 32 '../src/utils', | 32 '../src/utils', |
| 33 ], | 33 ], |
| 34 'sources': [ | 34 'sources': [ |
| 35 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). | 35 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). |
| 36 ], | 36 ], |
| 37 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], | 37 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], |
| 38 'conditions': [ | 38 'conditions': [ |
| 39 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { | 39 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { |
| 40 'link_settings': { | 40 'link_settings': { |
| 41 'libraries': [ | 41 'libraries': [ |
| 42 '-lpthread', | 42 '-lpthread', |
| 43 ], | 43 ], |
| 44 }, | 44 }, |
| 45 }], | 45 }], |
| 46 [ 'skia_os == "mac"', { | 46 [ 'skia_os == "mac"', { |
| 47 'include_dirs': [ | 47 'include_dirs': [ |
| 48 '../include/utils/mac', | 48 '../include/utils/mac', |
| 49 ], | 49 ], |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 [ 'skia_os == "win"', { | 115 [ 'skia_os == "win"', { |
| 116 'include_dirs': [ | 116 'include_dirs': [ |
| 117 'config/win', | 117 'config/win', |
| 118 ], | 118 ], |
| 119 }], | 119 }], |
| 120 ], | 120 ], |
| 121 }, | 121 }, |
| 122 }, | 122 }, |
| 123 ], | 123 ], |
| 124 } | 124 } |
| OLD | NEW |