| 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', | |
| 19 '../include/pathops', | 18 '../include/pathops', |
| 20 '../include/pipe', | 19 '../include/pipe', |
| 21 '../include/ports', | 20 '../include/ports', |
| 22 '../include/utils', | 21 '../include/utils', |
| 23 '../include/xml', | 22 '../include/xml', |
| 24 '../src/core', | 23 '../src/core', |
| 25 '../src/opts', | 24 '../src/opts', |
| 26 '../src/image', | 25 '../src/image', |
| 27 ], | 26 ], |
| 28 'sources': [ | 27 'sources': [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 }], | 89 }], |
| 91 ['skia_gpu == 1', { | 90 ['skia_gpu == 1', { |
| 92 'include_dirs': [ | 91 'include_dirs': [ |
| 93 '../include/gpu', | 92 '../include/gpu', |
| 94 '../src/gpu', | 93 '../src/gpu', |
| 95 ], | 94 ], |
| 96 }], | 95 }], |
| 97 ], | 96 ], |
| 98 'direct_dependent_settings': { | 97 'direct_dependent_settings': { |
| 99 'include_dirs': [ | 98 'include_dirs': [ |
| 100 'config', | |
| 101 '../include/config', | 99 '../include/config', |
| 102 '../include/core', | 100 '../include/core', |
| 103 '../include/lazy', | |
| 104 '../include/pathops', | 101 '../include/pathops', |
| 105 '../include/pipe', | 102 '../include/pipe', |
| 106 'ext', | |
| 107 ], | 103 ], |
| 108 'conditions': [ | 104 'conditions': [ |
| 109 [ 'skia_os == "mac"', { | 105 [ 'skia_os == "mac"', { |
| 110 'include_dirs': [ | 106 'include_dirs': [ |
| 111 '../include/utils/mac', | 107 '../include/utils/mac', |
| 112 ], | 108 ], |
| 113 }], | 109 }], |
| 114 [ 'skia_os == "ios"', { | 110 [ 'skia_os == "ios"', { |
| 115 'include_dirs': [ | 111 'include_dirs': [ |
| 116 '../include/utils/ios', | 112 '../include/utils/ios', |
| 117 ], | 113 ], |
| 118 }], | 114 }], |
| 119 [ 'skia_os == "win"', { | 115 [ 'skia_os == "win"', { |
| 120 'include_dirs': [ | 116 'include_dirs': [ |
| 121 'config/win', | 117 'config/win', |
| 122 ], | 118 ], |
| 123 }], | 119 }], |
| 124 ], | 120 ], |
| 125 }, | 121 }, |
| 126 }, | 122 }, |
| 127 ], | 123 ], |
| 128 } | 124 } |
| OLD | NEW |