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