| 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/c', |
| 16 '../include/config', | 17 '../include/config', |
| 17 '../include/core', | 18 '../include/core', |
| 18 '../include/pathops', | 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 '../include/images', | 24 '../include/images', |
| 24 '../src/core', | 25 '../src/core', |
| 25 '../src/sfnt', | 26 '../src/sfnt', |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 }], | 93 }], |
| 93 ['skia_gpu == 1', { | 94 ['skia_gpu == 1', { |
| 94 'include_dirs': [ | 95 'include_dirs': [ |
| 95 '../include/gpu', | 96 '../include/gpu', |
| 96 '../src/gpu', | 97 '../src/gpu', |
| 97 ], | 98 ], |
| 98 }], | 99 }], |
| 99 ], | 100 ], |
| 100 'direct_dependent_settings': { | 101 'direct_dependent_settings': { |
| 101 'include_dirs': [ | 102 'include_dirs': [ |
| 103 '../include/c', |
| 102 '../include/config', | 104 '../include/config', |
| 103 '../include/core', | 105 '../include/core', |
| 104 '../include/pathops', | 106 '../include/pathops', |
| 105 '../include/pipe', | 107 '../include/pipe', |
| 106 ], | 108 ], |
| 107 'conditions': [ | 109 'conditions': [ |
| 108 [ 'skia_os == "mac"', { | 110 [ 'skia_os == "mac"', { |
| 109 'include_dirs': [ | 111 'include_dirs': [ |
| 110 '../include/utils/mac', | 112 '../include/utils/mac', |
| 111 ], | 113 ], |
| 112 }], | 114 }], |
| 113 [ 'skia_os == "ios"', { | 115 [ 'skia_os == "ios"', { |
| 114 'include_dirs': [ | 116 'include_dirs': [ |
| 115 '../include/utils/ios', | 117 '../include/utils/ios', |
| 116 ], | 118 ], |
| 117 }], | 119 }], |
| 118 [ 'skia_os == "win"', { | 120 [ 'skia_os == "win"', { |
| 119 'include_dirs': [ | 121 'include_dirs': [ |
| 120 'config/win', | 122 'config/win', |
| 121 ], | 123 ], |
| 122 }], | 124 }], |
| 123 ], | 125 ], |
| 124 }, | 126 }, |
| 125 }, | 127 }, |
| 126 ], | 128 ], |
| 127 } | 129 } |
| OLD | NEW |