| 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/lazy', | 18 '../include/lazy', |
| 19 '../include/pathops', |
| 19 '../include/pipe', | 20 '../include/pipe', |
| 20 '../include/ports', | 21 '../include/ports', |
| 21 '../include/utils', | 22 '../include/utils', |
| 22 '../include/xml', | 23 '../include/xml', |
| 23 '../src/core', | 24 '../src/core', |
| 24 '../src/image', | 25 '../src/image', |
| 25 ], | 26 ], |
| 26 'sources': [ | 27 'sources': [ |
| 27 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). | 28 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). |
| 28 ], | 29 ], |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 '../src/gpu', | 89 '../src/gpu', |
| 89 ], | 90 ], |
| 90 }], | 91 }], |
| 91 ], | 92 ], |
| 92 'direct_dependent_settings': { | 93 'direct_dependent_settings': { |
| 93 'include_dirs': [ | 94 'include_dirs': [ |
| 94 'config', | 95 'config', |
| 95 '../include/config', | 96 '../include/config', |
| 96 '../include/core', | 97 '../include/core', |
| 97 '../include/lazy', | 98 '../include/lazy', |
| 99 '../include/pathops', |
| 98 '../include/pipe', | 100 '../include/pipe', |
| 99 'ext', | 101 'ext', |
| 100 ], | 102 ], |
| 101 'conditions': [ | 103 'conditions': [ |
| 102 [ 'skia_os == "mac"', { | 104 [ 'skia_os == "mac"', { |
| 103 'include_dirs': [ | 105 'include_dirs': [ |
| 104 '../include/utils/mac', | 106 '../include/utils/mac', |
| 105 '../third_party/freetype/include/**', | 107 '../third_party/freetype/include/**', |
| 106 ], | 108 ], |
| 107 }], | 109 }], |
| (...skipping 14 matching lines...) Expand all Loading... |
| 122 ], | 124 ], |
| 123 }, | 125 }, |
| 124 ], | 126 ], |
| 125 } | 127 } |
| 126 | 128 |
| 127 # Local Variables: | 129 # Local Variables: |
| 128 # tab-width:2 | 130 # tab-width:2 |
| 129 # indent-tabs-mode:nil | 131 # indent-tabs-mode:nil |
| 130 # End: | 132 # End: |
| 131 # vim: set expandtab tabstop=2 shiftwidth=2: | 133 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |